:root {
  --primary: #00AEEF;
  --primary-transparent-l1: rgba(0, 175, 239, 0.25);
  --primary-transparent-l2: rgba(0, 175, 239, 0.20);
  --primary-transparent-l3: rgba(0, 175, 239, 0.15);
  --primary-transparent-l4: rgba(0, 175, 239, 0.10);
  --primary-transparent-l5: rgba(0, 175, 239, 0.05);
  --secondary: #F7931E;
  --accent: #263238;
  --background: var(--white);
  --white: #FFFFFF;
  --text: #212121;
  --border-radius: 16px;
  --carousel-height: 100vh;
}

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: var(--text);
    background: var(--background);
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    font-weight: 400;
}

body.ltr p:not(.copyright *,.section-header *,.footer-social a),
body.ltr a:not(.section-header *,.footer-social a),
body.ltr div:not(.page-header,.section-header *,.footer-social a) {
  text-align: left;
  direction: ltr;
}

body.rtl p:not(.copyright *,.section-header *,.footer-social a),
body.rtl a:not(.section-header *,.footer-social a),
body.rtl div:not(.section-header *,.footer-social a) {
  text-align: right;
  direction: rtl;
}

body.ltr .carousel .carousel-caption{
    text-align: left;
    direction: ltr;
}

body.rtl .carousel .carousel-caption{
    text-align: right;
    direction: rtl;  
}

body.ltr .page-header a, 
body.rtl .page-header a,
body.ltr .page-header p, 
body.rtl .page-header p,
body.ltr .page-header div, 
body.rtl .page-header div,
body.ltr .blog .blog-meta,
body.rtl .blog .blog-meta{
    text-align: center !important;
}

body.ltr .carousel .carousel-indicators,
body.rtl .carousel .carousel-indicators{
    text-align: center !important;
    direction: ltr;
}

body.ltr .footer h2::after {
    left: 0;
    right: auto;
}

body.rtl .footer h2::after {
    right: 0;
    left: auto;
}

body.ltr .scroll-box p {
    text-align: left;
    direction: ltr;
  }
  
body.rtl .scroll-box p {
    text-align: right;
    direction: rtl;
}

body.ltr .back-to-top i {
    right: -20%;
  }
  
body.rtl .back-to-top i {
    left: -20%;
}
  

a:focus,
button:focus,
div:focus{
    outline: none;
}

.lb-image {
    width: 75vw !important;
    height: 75vh !important;
    object-fit: contain !important;
    background: #fff;
    box-sizing: content-box;
    border-radius: var(--border-radius) !important;
}

.lb-outerContainer {
    width: 75vw !important;
    height: 75vh !important;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .lb-image {
        width: 95vw !important;
        height: 60vh !important;
    }
    
    .lb-outerContainer {
        width: 95vw !important;
        height: 60vh !important;
    }
}


.lang-toggle-wrapper {
  position: relative;
  top: 50%;
  width: 100%;
  align-self: center;
}

.lang-toggle {
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 8px 20px;
  margin: 0 10px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.lang-toggle:hover {
  background-color: #0077a6;
  color: var(--secondary);
  transform: scale(1.025);
}

.lang-toggle .lang-text {
  display: inline-block;
  transition: transform 0.4s ease;
}

::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius);
    transition: background-color 0.5s ease-in-out, transform 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--accent);
}

a {
    color: var(--primary);
    transition: .3s;
}

.footer a,
.contact-text a{
    color: #fff;
}

a:hover,
a:active,
a:focus {
    color: var(--secondary);
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
}


.arrows-container {
    position: absolute;
    bottom: 10vh;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.arrows {
    width: 50px;
    height: auto;
    overflow: visible;
}

.arrows path {
    stroke: var(--primary);
    fill: transparent;
    stroke-width: 5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: arrow 2s infinite;
    opacity: 0;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.arrows path.a1 {
    animation-delay: -1s;
}
.arrows path.a2 {
    animation-delay: -0.5s;
}
.arrows path.a3 {
    animation-delay: 0s;
}

@media (max-width: 991.98px) {
    .arrows {
        width: 30px;
    }
    .arrows path {
        stroke-width: 3px;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary);
    color: var(--accent);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 30px;
    align-content: center;
    right: 2.5%;
    bottom: 2.5vw;
    z-index: 9;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    overflow: visible;
}

@media (max-width: 991.98px) {
    .back-to-top {
        bottom: 4.5vw;
        right: 4.5%;
    }
}

.back-to-top svg.progress-ring {
    position: absolute;
    top: -4.75px;
    left: -4.75px;
    padding: auto;
    margin: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.5s;
    stroke-linecap: round;
}

.back-to-top i {
    position: relative;
    z-index: 1;
    transition: ease-in-out 0.5s;
}
.back-to-top i:hover {
    color: white;
}


.btn {
    transition: ease-in-out all 0.5s;
}

.button, .btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    transition: all 0.5s ease-in-out;
}
.button:hover, .btn:hover {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.025);
    font-size: 1rem;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 120px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.top-bar .logo {
    display: flex;
    padding: 15px 0;
    justify-content: flex-start;
}

.top-bar .logo img {
    scale: 1.25;
    max-height: 90px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: var(--border-radius);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar .top-bar-item:hover {
    transform: translateY(-2.5px);
}

.top-bar .top-bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,174,239,0.2);
}

.top-bar .top-bar-item:hover .top-bar-icon {
    transform: scale(1.025) rotate(7.5deg);
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: var(--white);
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar .top-bar-text {
    padding-left: 5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar .top-bar-text p {
    margin: 0;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar .top-bar-item:hover .top-bar-text h3 {
    color: var(--primary);
    transform: translateX(5px);
}

.top-bar .top-bar-item:hover .top-bar-text p {
    color: var(--secondary);
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 70px;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        height: auto;
        padding: 15px 0;
    }
    
    .top-bar .logo {
        justify-content: center;
        text-align: center;
        margin: 0px;
        padding: 0px;
    }
    
    .top-bar .logo img {
        scale: 1.5;
    }
    
    .top-bar .top-bar-item {
        justify-content: center;
    }
    
    .top-bar .top-bar-text {
        text-align: center;
    }
    
    .top-bar .top-bar-item:hover .top-bar-text h3,
    .top-bar .top-bar-item:hover .top-bar-text p {
        transform: translateX(0);
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

.nav-bar .container-fluid {
    padding: 8px;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: var(--border-radius);
    z-index: 999;
}
.nav-bar .navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand{
    width: 40%;
    height: 65px;
    padding: 0;
    margin: 0;
}

.navbar-brand .logo{
    width: 100%;
    height: 100%;
    max-height: 65px;
    padding: 0;
    margin: 0;
}

.navbar-brand img{
    height: 100%;
    scale: 1.5;
}

.nav-bar .navbar {
    height: 100%;
    margin: 10px 1%;
    border-radius: var(--border-radius);
    background: var(--primary) !important;
}

.nav-bar.nav-sticky .navbar {
    box-shadow: 0 2px 8px rgba(247, 147, 30, 0.5);
}

.navbar-toggler {
    background: none;
    border: none;
    outline: none;
    width: 30px;
    height: 24px;
    margin: 0 15px 0 15px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: transform 0.5s ease-in-out, top 0.5s ease-in-out, bottom 0.5s ease-in-out;
    border-radius: 3px;
}

.bar1 {
    top: 5.5px;
    transition: ease-in-out 0.3s;
}

.bar2 {
    bottom: 5.5px;
    transition: ease-in-out 0.3s;
}

.navbar-toggler.active .bar1 {
    transform: rotate(45deg);
    top: 10px;
    background-color: var(--accent);
}

.navbar-toggler.active .bar2 {
    transform: rotate(-45deg);
    bottom: 10px;
    background-color: var(--accent);
}

.nav-bar .navbar-nav .nav-link {
    position: relative;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 8px 14px;
    transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: none;
    overflow: visible;
}

.nav-bar .navbar-nav .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.75;
    box-shadow: 0 2px 8px 0 rgba(0,174,239,0.12);
}

.nav-bar .navbar-nav .nav-link:hover::after,
.nav-bar .navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-bar .navbar-nav .nav-link:hover,
.nav-bar .navbar-nav .nav-link.active {
    color: var(--accent);
    text-shadow: 0 2px 8px rgba(0,174,239,0.15);
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: var(--border-radius);
}

.nav-bar .btn:hover {
    color: var(--accent);
    background: var(--primary);
    border: 2px solid #ffffff;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .lang-toggle{
        margin-top: 15px;
    }

    .top-bar{
        display: none;
    }
    
    .nav-bar .container-fluid{
        padding: 8px 8px 2px 8px;
    }

    .nav-bar .navbar {
        justify-content: space-between;
        padding: 7.5px 15px;
        margin: 0;
        box-shadow: none !important;
        background: linear-gradient(to top, var(--primary-transparent-l1) ,var(--primary-transparent-l2), var(--primary-transparent-l3), var(--primary-transparent-l4), var(--primary-transparent-l5), var(--white)) !important;
    }
    
    .nav-bar .container-fluid-sticky{
        padding: 0;
        margin: 10px 1%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        border-radius: var(--border-radius);
        background-color: var(--white);
    }

    .bar {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: var(--accent);
        transition: transform 0.5s ease-in-out, top 0.5s ease-in-out, bottom 0.5s ease-in-out;
        border-radius: 3px;
    }

    .navbar-toggler.active .bar1 {
        transform: rotate(45deg);
        top: 10px;
        background-color: var(--secondary);
    }
    
    .navbar-toggler.active .bar2 {
        transform: rotate(-45deg);
        bottom: 10px;
        background-color: var(--secondary);
    }

    .nav-bar a.nav-link {
        padding: 8px 8px;
        font-size: 1rem;
        color: var(--accent) !important;
    }
    
    .nav-bar .navbar-nav .nav-link::after {
        width: 40%;
        height: 3px;
        bottom: 2px;
        left: unset;
        right: unset;
        transform: scaleX(0);
        transform-origin: left;
    }

    body.rtl .nav-bar .navbar-nav .nav-link::after {
        left: unset;
        right: 0;
        transform-origin: right;
    }

    body.ltr .nav-bar .navbar-nav .nav-link::after {
        left: 0;
        right: unset;
        transform-origin: left;
    }

    .nav-bar .navbar-nav .nav-link:hover::after,
    .nav-bar .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }

    .nav-bar .navbar-nav a.nav-link:hover,
    .nav-bar .navbar-nav a.nav-link.active{
        color: var(--secondary) !important;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******* Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 97.5%;
    border-radius: var(--border-radius);
    height: var(--carousel-height);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease-in-out;
}

.carousel .carousel-item.active img {
    transform: scale(1);
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: var(--carousel-height);
    min-height: 400px;
    z-index: 2;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.carousel .carousel-item.active .carousel-caption p {
    opacity: 1;
    transform: translateY(0);
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.carousel .carousel-item.active .carousel-caption h1 {
    opacity: 1;
    transform: translateY(0);
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
}

.carousel .carousel-caption .btn:hover {
    color: var(--accent);
    background: var(--primary);
    border: 2px solid #ffffff;
    scale: 1.025;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
    background: var(--primary);
    scale: 1.025;
}

.carousel .carousel-indicators {
    bottom: 15px;
}

.carousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.5s ease-in-out;
}

.carousel .carousel-indicators li.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .carousel {
        width: 92.5%;
        height: var(--carousel-height);
        margin-bottom: 10px;
    }
    .carousel .carousel-caption{
        height: var(--carousel-height);
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    border-radius: var(--border-radius);
    width: 97.5%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

.page-header h2 {
    position: relative;
    color: var(--accent);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: all 0.5s ease-in-out;
}

.page-header h2:hover {
    transform: translateY(-3px);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 75px);
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        transparent
    );
    animation: lineWidth 2s ease-in-out infinite;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: var(--accent);
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.page-header a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.page-header a::after {
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: var(--accent);
    transition: all 0.5s ease-in-out;
}

.page-header a:hover::after {
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-header:hover::after {
    opacity: 1;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes lineWidth {
    0% {
        width: 100px;
        opacity: 0.5;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
    100% {
        width: 100px;
        opacity: 0.5;
    }
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }

    .page-header h2::after {
        width: 80px;
        left: calc(50% - 40px);
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 20px 0;
    overflow: hidden;
}

.section-header p {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: var(--background);
    z-index: 2;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    z-index: 1;
    overflow: visible;
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary-transparent-l3) 50%, 
        var(--primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.section-header h2:hover:not(.about .section-header h2) {
    font-weight: bold;
    transform: scale(1.025);
}

.section-header::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent
    );
    opacity: 0.5;
}

.about .section-header::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent
    );
    opacity: 0.5;
}

@media (max-width: 767.98px) {
    .section-header {
        margin-bottom: 30px;
        padding: 15px 0;
    }

    .section-header h2 {
        font-size: 27px;
        -webkit-text-stroke: 0.5px var(--secondary);
    }

    .section-header p {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: headerReveal 0.8s ease-out forwards;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
    padding: 15px;
}


.feature .container-fluid .row{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    gap: 1%;
}

@media(max-width: 991.98px){
    .feature .container-fluid .row{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-between;
        gap: 2%;
        width: auto;
    }
    
}

.feature .col-md-12 {
    background: linear-gradient(135deg, var(--accent) 0%, #1a2529 100%);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    height: max-content;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.feature .col-md-12::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.feature .col-md-12:hover::before {
    opacity: 1;
}

.feature .col-md-12:nth-child(1n) {
    background: linear-gradient(135deg, var(--primary) 0%, #0077a6 100%);
}

.feature .col-md-12:nth-child(2n) {
    background: linear-gradient(135deg, var(--accent) 0%, #1a2529 100%);
}

.feature .col-md-12:nth-child(3n) {
    background: linear-gradient(135deg, var(--secondary) 0%, #c57618 100%);
}

.feature .feature-item {
    min-height: 250px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--border-radius);
    background: inherit;
    width: 100%;
    gap: 32px;
}

.feature .feature-icon {
    position: relative;
    width: 70px;
    padding-left: 0.5%;
    display: flex;
    align-items: center;
    justify-content: start;
    transition: all 0.4s ease-in-out;
}

.feature .col-md-12:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    top: -15px;
    left: -17.5px;
    border: 2px dotted rgba(255,255,255,0.5);
    border-radius: calc(var(--border-radius) * 3.75);
    z-index: 1;
    animation: rotate 15s linear infinite;
    transition: all 0.4s ease-in-out;
}

.feature .col-md-12:hover .feature-icon::before {
    border-color: rgba(255,255,255,0.8);
    animation-duration: 4s;
    transform: scale(1.05);
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 90px;
    top: -12.5px;
    left: -15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: calc(var(--border-radius) * 3.75);
    z-index: 2;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.1);
}

.feature .col-md-12:hover .feature-icon::after {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.15);
}

.feature .feature-icon [class^="flaticon-"]::before,
.feature .feature-icon [class^="fas fa-"]::before {
    position: relative;
    margin: 0;
    color: var(--white);
    font-size: 55px;
    line-height: 70px;
    z-index: 3;
    transition: all 0.4s ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature .col-md-12:hover .feature-icon [class^="flaticon-"]::before,
.feature .col-md-12:hover .feature-icon [class^="fas fa-"]::before {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.feature .feature-text {
    padding: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature .feature-text p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.feature .feature-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.4s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature .col-md-12:hover .feature-text h3::after {
    width: 100%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about h2 {
    font-size: 40px;
}

@media (max-width: 767.98px) {
    .about h2 {
        font-size: 25px;
    }
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent);
     border-radius: var(--border-radius);
    background: var(--primary);
    transition: all 0.5s ease-in-out;
}

.about .about-text a.btn:hover {
    color: var(--primary);
    background: var(--accent);
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about-img .custom-slider {
    position: relative;
    width: 75%;
    max-width: 450px;
    margin: auto;
    overflow: hidden;
     border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
  
.about-img .slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
  
.about-img .slide {
    min-width: 100%;
}

.about-img .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
  
.about-img .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(217, 217, 217, 0.25);
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: calc(var(--border-radius) * 3);
    z-index: 1;
    transition: ease-in-out 0.5s;
}

.about-img .nav:hover{
    background: rgba(217, 217, 217, 0.75);
    color: var(--primary);
}

.about-img .prev {
    left: 10px;
}
  
.about-img .next {
    right: 10px;
}
  
  
body.rtl .about-img .slides-wrapper {
    flex-direction: row-reverse;
}
  
body.rtl .about-img .prev {
    left: 10px;
    right: auto;
}
  
body.rtl .about-img .next {
    right: 10px;
    left: auto;
}
  

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}



/*******************************/
/******* PARTNERS CSS *******/
/*******************************/
.partner .slider-container {
    overflow: hidden;
    width: 90%;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
    cursor: grab;
    user-select: none;
    direction: ltr;
}

.partner .slider-track {
    display: flex;
    gap: 0;
    padding: 20px;
    min-width: max-content;
    width: fit-content;
}

.partner .slide {
    flex: 0 0 auto;
    width: 150px;
    height: 100px;
}

.partner .slide img {
    width: 100%;
    height: 100%;
    min-width: 100px;
    max-width: 100px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}



/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 95%;
    margin: 0 auto;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before,
.fact .fact-icon [class^="fas fa-"]::before {
    margin: 0;
    font-size: 50px;
    line-height: 50px;
    background-image: linear-gradient(var(--white), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(var(--white), var(--accent));
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-left{
    border-radius: 16px 0 0 16px;
}

.fact .fact-right{
    border-radius: 0 16px 16px 0;
}

body.rtl .fact .fact-left{
    border-radius: 0 16px 16px 0;
}

body.rtl .fact .fact-right{
    border-radius: 16px 0 0 16px;
}

.fact .fact-text h2 {
    font-size: 30px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: var(--primary);
    background: var(--accent);
}

.fact .fact-right {
    color: var(--accent);
    background: var(--primary);
}

.fact .fact-left h2 {
    color: var(--primary);
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    border-radius: 25px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service .service-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.service .service-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.service .service-overlay p {
    margin: 0;
    color: var(--white);
    text-align: start;
    line-height: 1.6;
    font-size: 15px;
}

.scroll-box {
    max-height: 100%;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 10px;
}

.scroll-box::-webkit-scrollbar {
    width: 7px;
}

.scroll-box::-webkit-scrollbar-track {
    background: rgba(185, 185, 185, 1);
    border-radius: var(--border-radius);
}

.scroll-box::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--border-radius);
    transition: 0.5s ease-in-out;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 70px;
    background: var(--accent);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 0 0 25px 25px;
    padding: 0 15px;
    position: relative;
}

.service .service-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.3) 100% 
    );
    animation: shine 3s infinite;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 5px 0 5px;
    width: calc(100% - 100px);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.5s ease-in-out;
}

.service .service-item a.btn {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
    line-height: 20px;
    font-weight: 250;
    color: var(--accent);
    background: var(--primary);
    border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service .service-item a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.service .service-item a.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service .service-item a.btn:hover::before {
    transform: translateX(100%);
}

.service .service-item a.btn.toggle-overlay i {
    transition: transform 0.5s ease-in-out;
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 767.98px) {
    .service .service-text {
        height: 60px;
    }
    
    .service .service-text h3 {
        font-size: 14px;
    }
    
    .service .service-item a.btn {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 16px;
    }
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px auto;
    height: 100%;
    min-height: 500px;
    width: 97.5%;
    border-radius: var(--border-radius);
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/video/cover.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.embed-responsive{
    height: 500px;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(var(--primary), 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--accent);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@media (max-width: 767.98px) {
    .video {
        min-height: 350px;
        background-attachment: scroll;
    }
    .embed-responsive{
        height: 350px;
    }
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: var(--primary);
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
     border-radius: var(--border-radius);
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #fff;
}

.faqs .card-header a {
    display: inline-block;
    padding: 15px;
    width: 100%;
    color: var(--accent);
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: all 0.5s ease-in-out;
     border-radius: var(--border-radius);
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: var(--primary);
    border-radius: 16px 16px 0 0;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    transition: all 0.5s ease-in-out;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    transition: all 0.5s ease-in-out;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
    border-radius: 0 0 25px 25px;
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.5s ease-in-out;
}

.blog .blog-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.75);
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    transition: all 0.5s ease-in-out;
}

.blog .blog-img img {
    width: 100%;
    border-radius: 16px 16px 0 0;
    transition: all 0.5s ease-in-out;
}

.blog .blog-item:hover .blog-img img {
    border-radius: 16px 16px 0 0;
    transform: scale(1.1);
}


.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--accent);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
    line-height: 20px;
    font-weight: 250;
    color: var(--accent);
    background: var(--primary);
    border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog .blog-title a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.blog .blog-item a.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog .blog-item a.btn:hover::before {
    transform: translateX(100%);
}

.blog .blog-item a.btn.toggle-overlay i {
    transition: transform 0.5s ease-in-out;
}

.blog .blog-item a.btn.toggle-overlay:hover i {
    transform: rotate(180deg);
}

@media (max-width: 767.98px) {
    .blog .blog-title a.btn {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 16px;
    }
}

.blog .blog-meta {
    position: relative;
    padding: 25px 15px 10px 15px;
    background-color: var(--accent);
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: var(--primary);
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 0 0 25px 25px;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;       
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog .pagination {
    display: flex;
    gap: 2.5%;
}

.blog .pagination .page-link {
    color: var(--accent);
     border-radius: var(--border-radius);
    min-height: 30px;
    min-width: 40px;
    text-align: center;
    border: 2px solid var(--white);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: var(--primary);
    background: var(--accent);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 60%;
     border-radius: var(--border-radius);
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: var(--background);
    display: flex;
     border-radius: var(--border-radius);
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
     border-radius: var(--border-radius);
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
     border-radius: var(--border-radius);
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--primary);
    font-size: 16px;
    transition: all 0.5s ease-in-out;
     border-radius: var(--border-radius);
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--accent);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    background: var(--primary);
    border: none;
    transition: all 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.portfolio #portfolio-flters li::before,
.portfolio .load-more .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.portfolio #portfolio-flters li:hover::before,
.portfolio .load-more .btn:hover::before {
    transform: translateX(100%);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
}

.portfolio .load-more .btn:hover {
    color: var(--primary);
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 25px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.5s ease-in-out;    
}

.portfolio .portfolio-warp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.75);
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.portfolio .portfolio-img img {
    width: 100%;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease-in-out;
}

.portfolio .portfolio-warp:hover .portfolio-img img {    
    border-radius: 16px 16px 0 0;
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.portfolio .portfolio-warp .portfolio-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: var(--white);
    line-height: 1.6;
    font-size: 15px;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 70px;
    background: var(--accent);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 0 0 25px 25px;
    padding: 0 15px;
    position: relative;
}

.portfolio .portfolio-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.3) 100% 
    );
    animation: shine 3s infinite;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 5px 0 5px;
    width: calc(100% - 100px);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.5s ease-in-out;
}

.portfolio .portfolio-warp a.btn {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
    line-height: 20px;
    font-weight: 250;
    color: var(--accent);
    background: var(--primary);
    border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-warp a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.portfolio .portfolio-warp a.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.portfolio .portfolio-warp a.btn:hover::before {
    transform: translateX(100%);
}

.portfolio .portfolio-warp a.btn.toggle-overlay i {
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 767.98px) {
    .portfolio .portfolio-text {
        height: 60px;
    }
    
    .portfolio .portfolio-text h3 {
        font-size: 14px;
    }
    
    .portfolio .portfolio-warp a.btn {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 16px;
    }
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact:dir(ltr) .col-md-6:first-child {
    background: var(--accent);
    border-radius: 25px 0 0 25px;
}

.contact:dir(ltr) .col-md-6:last-child {
    background: var(--primary);
    border-radius: 0 25px 25px 0;
}

.contact:dir(rtl) .col-md-6:first-child {
    background: var(--accent);
    border-radius: 0 25px 25px 0;
}

.contact:dir(rtl) .col-md-6:last-child {
    background: var(--primary);
    border-radius: 25px 0 0 25px;
}


@media (max-width: 768px) {
    .col-md-6:first-child,
    .col-md-6:last-child
     {
        border-radius: 25px !important;
        margin: 0 1vw 1vh 1vw !important;
    }
}

.contact .contact-info {
    position: relative;
    width: 100%;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
     border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 2.5px;
    color: var(--primary);
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    text-align: start;
    color: var(--primary);
    font-size: 20px;
    margin: 2.5px;
    font-weight: 600;
}

.contact .contact-text p {
    text-align: start;
    margin: 2.5px;
    color: var(--white);
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: var(--white);
    height: 40px;
     border-radius: var(--border-radius);
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: var(--white);
    height: 185px;
     border-radius: var(--border-radius);
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: var(--white);
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: var(--white);
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: var(--white);
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: var(--accent);
    border: none;
     border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
}

.contact .contact-form .btn:hover {
    color: var(--accent);
    background: var(--white);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: linear-gradient(135deg, var(--accent), #1a2529);
    color: var(--white);
    padding-bottom: 7.5vh;
}

.footer .row {
    justify-content: center;
    align-items: center;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-contact:hover,
.footer .footer-link:hover,
.footer .newsletter:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-contact:hover h2::after,
.footer .footer-link:hover h2::after,
.footer .newsletter:hover h2::after {
    width: 100px;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 25px;
}

.footer .footer-link a::before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-link a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.footer .footer-link a:hover::before {
    color: var(--secondary);
    transform: translateY(-50%) translateX(5px);
}

.footer .footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer .footer-contact p i {
    width: 25px;
    color: var(--primary);
    margin-right: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-contact:hover p i {
    color: var(--secondary);
    transform: scale(1.1);
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.05);
}

.footer .footer-social a i {
    font-size: 16px;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px) rotate(8deg);
}

.footer .footer-social a:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.footer .footer-menu {
    position: relative;
    padding: 15px 0;
    background: rgba(0,0,0,0.2);
    margin-top: 10px;
    border-radius: var(--border-radius);
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .footer-menu .f-menu a {
    color: var(--white);
    font-size: 16px;
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-menu .f-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-menu .f-menu a:hover {
    color: var(--primary);
}

.footer .footer-menu .f-menu a:hover::after {
    width: 100%;
}

.footer .copyright {
    padding: 15px 15px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.footer .copyright p {
    margin: 0;
    color: var(--white);
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .copyright p a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
    
    .footer .footer-menu .f-menu a {
        margin: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-menu{
        margin: 0 15px 0px 15px;
        width: calc(100% - 30px);
    }
    .footer .copyright {
        width: calc(100% - 30px);
        margin: 15px;
    }
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Preloader Styles (update for ring animation) */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.preloader-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  z-index: 1;
}
.preloader-logo-wrapper {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.preloader-ring {
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.preloader-ring svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.preloader-ring-circle {
  fill: none;
  stroke: var(--primary, #00AEEF);
  stroke-width: 7px;
  stroke-linecap: round;
  stroke-dasharray: 220 60;
  stroke-dashoffset: 0;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px #00AEEF88);
  transform-origin: 50% 50%;
  animation: preloader-spin 1.2s linear infinite;
}
@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Lazy Loading Styles */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Add a subtle loading animation */
@keyframes lazyLoading {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

img[loading="lazy"] {
    animation: lazyLoading 0.5s ease-in-out forwards;
}
