@font-face {
    font-family: 'head-font';
    src: url('../fonts/ibrand.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'body-font';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ::selection {
    color: var(--color-white) !important;
    background-color: var(--color-primary, #d6f5d6);
    text-shadow: none;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    /* background-color: #ffffff; */
    color: #ffffff;
    overflow-x: hidden !important;
}

:root {
    --primary-color: #002557;
    --secondary: #0a0a8f;
    --secondary-light: #415de4;
    --color-hover: #ffe400;
    --font-head: 'head-font';
    --font-para: 'body-font';
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f4f4f4;
    --dark-gray: #222222;

}



a {
    text-decoration: none;
}

a,
button,
.nav-link {
    transition: 0.3s ease;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-head);
}

a {
    font-family: var(--font-head);

}

p {
    font-family: var(--font-body);
}



.main-head {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 10px;
}

.sub-main {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.custome-btn a {
    position: relative;
    display: inline-block;
    padding: 7px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #F21010;
    border: 2px solid #F21010;
    border-radius: 8px;
    overflow: hidden;
    transition: color 0.3s ease;
    font-family: var(--font-para) !important;
    z-index: 0;

}

.custome-btn a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s ease;

    z-index: -1;

}

.custome-btn a:hover::before {
    width: 150%;

}

.custome-btn a:hover {
    color: var(--black);
}



#scrollTopBtn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a0a8f, #415de4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999 !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #415de4, #0a0a8f);
}

#scrollTopBtn i {
    font-size: 26px;
    font-weight: bold;
}

#fullLoader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #002557, #003b80, #001a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    animation: logoBounce 1s infinite ease-in-out;
}

.loading-bar {
    margin-top: 25px;
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    animation: slide 0.8s infinite;
}

@keyframes slide {
    0% {
        left: -40%;
    }

    100% {
        left: 110%;
    }
}

@keyframes logoBounce {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}




/* =============================header====================== */
header .container-fluid {
    width: 55%;
}

/* 
.nav-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 15px 0;
}
.nav-area::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    z-index: -1;
} */

header .navbar-toggler-icon {
    filter: invert(1);

}

header .navbar-brand {
    margin: 0px 0px !important;
}


header .navbar-brand img {
    width: 140px;
    height: auto;
}


header .nav-item .active {
    color: var(--color-hover);
}

header .nav-item .nav-link {
    color: var(--white);
    font-size: 22px;
    margin: 0px 15px;
}

header .navbar-toggler:focus {
    box-shadow: none !important;
}

header .navbar-toggler {
    border: none !important;
}


header .nav-link {
    transition: all 0.3s ease;
}

header .nav-link:hover {
    color: var(--color-hover) !important;
}

header .nav-link.active {
    color: var(--color-hover) !important;
    transform: scale(1.2);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--color-hover) !important;
}

/* .nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
} */

.offcanvas .nav-link {
    color: var(--white) !important;
}

.offcanvas {
    width: 420px;
    background-image: url('../images/home/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas-header img {
    width: 100px;
}

.offcanvas-header button {
    color: var(--white) !important;
}

.offcanvas-header {
    position: relative;
    padding-bottom: 20px;
}

.offcanvas-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            #fff,
            transparent);
    border-radius: 10px;
}



.offcanvas-contact .social-round:hover {
    background: var(--color-hover);
    color: #000;
    transform: scale(1.1);
}



.offcanvas-contact a {
    color: var(--white) !important;
}

.offcanvas-contact .social-round i {
    color: var(--black) !important;
}

.offcanvas-contact .social-icons {
    justify-content: center !important;
}

.offcanvas-contact .offcanva-a i {
    color: var(--color-hover) !important;
}

.offcanvas-contact .social-round {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111 !important;
    transition: 0.3s ease;
}

.offcanvas .btn-close {
    color: #fff !important;
}

.offcanvas .nav-link {
    transition: color 0.3s ease;
}

.offcanvas .nav-link i {
    transition: transform 0.4s ease, color 0.3s ease;
}

.offcanvas .nav-link:hover {
    color: var(--color-hover) !important;
}

.offcanvas .nav-link:hover i {
    transform: translateX(8px);
    color: var(--color-hover) !important;
}




.nav-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
    transition: all 0.3s ease;
}



header .nav-item .nav-link {
    color: var(--white);
    font-size: 18px;
    margin: 0 15px;
    transition: font-size 0.3s ease, padding 0.3s ease;
}

.event-page-carousel {
    z-index: 0;
}

.event-carousel {
    z-index: 0;
}

header {
    position: relative;
    z-index: 999 !important;

}

.nav-area.nav-sticky {
    background: var(--primary-color);
}

.nav-area.nav-sticky .navbar-brand img {
    width: 80px;
}

.nav-area.nav-sticky header .nav-item .nav-link {
    font-size: 18px;
}




/* =================================footer========================= */
footer {
    width: 100%;
    background: var(--primary-color);
    padding: 40px 20px 10px 20px;
    text-align: center;
    color: #fff;
}

footer .footer-container {
    max-width: 1200px;
    margin: auto;
}

footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 18px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;
    transition: 0.3s ease;
    margin: 0px 30px;
}

footer .footer-links a:hover {
    color: #ffcc00;
}

footer .logo-section img {
    width: 150px;
    height: auto;
}



footer .line {

    width: 90%;
    height: 1px;
    background: var(--white);
    margin: 20px auto;
}

footer .credit {
    font-size: 16px;
    opacity: 0.9;
}

footer .credit a {
    color: #ffcc00;
    text-decoration: none;
}



/* =============================banner section====================== */
.inner-banner {
    width: 100%;
    /* height: 790px; */
    /* background-image: url('../images/home/banner-bg-1.png'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.banner-wrap {
    padding: 200px 0px 50px 0px;
    position: relative;
}

.banner-wrap .banner-left p {
    font-size: 16px;
    font-family: var(--font-head) !important;
}

.banner-wrap .banner-left h2 {
    font-size: 44px;
    margin-bottom: 10px;
}

.banner-wrap .container-fluid {
    width: 70%;
}

.banner-img-overlay {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.banner-img-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-right img {
    animation: floatUpDown1 4s ease-in-out infinite;
}

@keyframes floatUpDown1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}


.banner-vector-1,
.banner-vector-2,
.banner-vector-3,
.banner-vector-4,
.banner-vector-5,
.banner-vector-6,
.banner-vector-7,
.banner-vector-8 {
    position: absolute;
    opacity: 0.85;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
    animation: twinkle 3.5s ease-in-out infinite,
        starFloat 6s ease-in-out infinite,
        starRotate 8s linear infinite;
}

.banner-vector-1 {
    top: 10%;
    left: 10%;
    animation: twinkle 3s infinite,
        starFloat 6s infinite,
        starRotate 8s linear infinite,
        path1 4.5s ease-out infinite;
}

.banner-vector-2 {
    top: 22%;
    left: 20%;
    animation: twinkle 3.6s infinite,
        starFloat 7s infinite,
        starRotate 9s linear infinite,
        path2 5s ease-out infinite 0.5s;
}

.banner-vector-3 {
    top: 68%;
    left: 38%;
    animation: twinkle 3.2s infinite,
        starFloat 6s infinite,
        starRotate 7s linear infinite,
        path3 5.3s ease-out infinite 0.9s;
}

.banner-vector-4 {
    top: 70%;
    left: 42%;
    animation: twinkle 3.8s infinite,
        starFloat 7.6s infinite,
        starRotate 10s linear infinite,
        path4 6s ease-out infinite 0.3s;
}

.banner-vector-5 {
    top: 18%;
    left: 95%;
    animation: twinkle 3.4s infinite,
        starFloat 6.4s infinite,
        starRotate 8s linear infinite,
        path5 6.5s ease-out infinite 1s;
}

.banner-vector-6 {
    top: 15%;
    left: 42%;
    animation: twinkle 3.7s infinite,
        starFloat 7.4s infinite,
        starRotate 9.5s linear infinite,
        path6 5.8s ease-out infinite 0.7s;
}

.banner-vector-7 {
    top: 48%;
    left: 87%;
    animation: twinkle 3s infinite,
        starFloat 5.8s infinite,
        starRotate 8.2s linear infinite,
        path7 6.8s ease-out infinite 1.4s;
}

.banner-vector-8 {
    top: 80%;
    left: 95%;
    animation: twinkle 4s infinite,
        starFloat 8s infinite,
        starRotate 11s linear infinite,
        path8 7.2s ease-out infinite 1s;
}

.sticky-image {
    position: sticky;
    top: 100px;
    z-index: 5;
}

@keyframes path1 {
    0% {
        transform: translateX(200px) translateY(0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(-300px) translateY(0) scale(1.1);
        opacity: 0;
    }
}

@keyframes path2 {
    0% {
        transform: translateX(220px) translateY(-20px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(-320px) translateY(25px);
        opacity: 0;
    }
}

@keyframes path3 {
    0% {
        transform: translateX(240px) translateY(20px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(-340px) translateY(-20px);
        opacity: 0;
    }
}

@keyframes path4 {
    0% {
        transform: translateX(260px) translateY(-40px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        transform: translateX(-200px) translateY(50px);
    }

    100% {
        transform: translateX(-360px) translateY(80px);
        opacity: 0;
    }
}

@keyframes path5 {
    0% {
        transform: translateX(260px) translateY(40px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        transform: translateX(-220px) translateY(-60px);
    }

    100% {
        transform: translateX(-360px) translateY(-90px);
        opacity: 0;
    }
}

@keyframes path6 {
    0% {
        transform: translateX(280px) translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateX(-100px) translateY(40px);
    }

    80% {
        transform: translateX(-250px) translateY(-20px);
    }

    100% {
        transform: translateX(-380px) translateY(10px);
        opacity: 0;
    }
}

@keyframes path7 {
    0% {
        transform: translateX(250px) translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    40% {
        transform: translateX(50px) translateY(-20px);
    }

    70% {
        transform: translateX(-100px) translateY(20px);
    }

    100% {
        transform: translateX(-350px) translateY(-10px);
        opacity: 0;
    }
}

@keyframes path8 {
    0% {
        transform: translateX(320px) translateY(-10px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        transform: translateX(-120px) translateY(40px);
    }

    100% {
        transform: translateX(-400px) translateY(60px);
        opacity: 0;
    }
}


banner-right img {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}



/* ===============================services us section ========================*/
.services-inner {
    width: 100%;
    /* background-image: url('../images/home/aboutus-bg.png'); */
    background-color: #002557;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px 0px 0px;

}

.services-left p {
    font-size: 20px;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px 25px !important;
}

.services-item a {
    color: var(--white);
}

.services-item h3 {
    font-size: 28px;
}

.services-item {
    width: 100%;
    height: 330px;
    padding: 25px;
    background-color: #053F8D;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    color: #fff;
    transition: 0.3s ease;
    position: relative;
}

.services-item-overlay {
    position: absolute;
    top: 5%;
    right: 5%;
}

.item-2 {
    margin-top: 50px;
}

.item-4 {
    margin-top: 40px;
}

.services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.services-item-overlay img {
    transition: transform 0.3s ease-out;
}

.services-item:hover .services-item-overlay img {
    animation: pureBounce 0.45s ease-out forwards;
}

@keyframes pureBounce {
    0% {
        transform: translateY(0);
    }

    35% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(-14px);
    }
}



/* =======================about us section ===================*/
.inner-about {
    padding: 280px 0px 50px 0px;
    position: relative;
}

.inner-about .container-fluid {
    width: 70%;
}

.inner-about .about-top-ovelray {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    z-index: -1;
}

.about-right p {
    font-size: 20px;
    color: var(--black);
    text-align: justify;
}

.about-right .main-head {
    color: var(--primary-color) !important;
}

.vission-right p {
    font-size: 30px;
    color: var(--primary-color);
    text-align: justify;
}

.mission-right p {
    font-size: 30px;
    color: var(--primary-color);
    text-align: right;

}

.mission-vission-wrap {
    padding: 50px 0px 20px 0px;
}

.vission-left {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
}


/*========================= Home cta section==================== */
.inner-home-cta {
    width: 100%;
    padding: 90px 0px;
    background-image: url('../images/home/home-cta.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.inner-home-cta .container-fluid {
    width: 80%;
}

.inner-home-cta h2 {
    text-transform: uppercase;
}

.home-cta-left p {
    font-size: 20px;
}

.home-cta-left a {
    color: var(--white) !important;
    margin-top: 20px;
}

.home-cta-overlay {
    position: absolute;
    right: 0%;
    bottom: 0%;
}

.home-cta-overlay img {
    width: 800px;
}


/* ================client section ===========================*/
.inner-client {
    padding: 50px 0px 0px 0px;
}

.inner-client .client-header h2 {
    color: var(--primary-color);

}

.inner-client .client-header h4 {
    color: var(--primary-color);
}

.client-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* adjust height as needed */
}

.client-carousel .item img {
    max-height: 100px;
    object-fit: contain;
}

.client-carousel-wrap {
    padding: 40px 0px 0px 0px;
    border-bottom: 2px solid var(--primary-color);
}

.client-carousel-wrap .owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.client-carousel-wrap .owl-carousel .item img {
    max-height: 80px;
    object-fit: contain;
}

.client-display-1 {
    display: block;
}

.client-display-2 {
    display: none;
}


.client-display-1 .item {
    margin: 0px 40px;
}

.client-display-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-display-2 .item .owl-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.client-display-2 .item img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-item {
    text-align: center;
    font-family: sans-serif;
}

.counter {
    display: inline-block;
    font-size: 58px;
    font-weight: bold;
}

.counter+span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 2px;
}

.client-counter p {
    font-size: 32px;
    font-weight: 700;
}

.client-counter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    padding: 20px 0px 5px 20px;
    background: #fff;
    display: flex;
    gap: 30px;
}

.counter-item {
    flex: 1 1 200px;
    margin: 20px;
}

.counter {
    font-size: 68px;
    font-weight: bold;
    color: #002147;
}

.counter-item p {
    font-size: 18px;
    color: #002147;
}

.counter-item span {
    color: var(--primary-color) !important;
}

/* =================================testimonial ======================*/
.inner-testimonial {
    width: 100%;
    padding: 200px 0px 220px 0px;
    background-image: url('../images/home/testimonial-bg.png');
    background-position: center;
    background-size: cover;
    position: relative;
}

.testimonial-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.inner-testimonial .sub-head {
    margin-bottom: 15px !important;
}

.testimonial-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.testimonial-top-overlay img {
    width: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
}


.testimonial-bottom-overlay img {
    width: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
}


.testimonial-card {
    background: #0d3c7a;
    padding: 35px;
    border-radius: 15px;
    color: #fff;
    width: 95%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    margin: 15px;
    min-height: 380px;
}

.inner-testimonial .testimonial-slider {
    padding: 10px 0px !important;
}

.inner-testimonial .stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.inner-testimonial .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.inner-testimonial .profile-section {
    display: flex;
    justify-content: end;
    gap: 25px;
    align-items: center;
}

.inner-testimonial .name {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.inner-testimonial .role {
    font-size: 14px;
    opacity: 0.8;
}

.inner-testimonial .textimonial-name {
    text-align: right;
}

.inner-testimonial .profile-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
}

.inner-testimonial .owl-dots .owl-dot span {
    background: #fff !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.inner-testimonial .container {
    padding: 0px 0px !important;
}

.inner-testimonial .owl-dots .owl-dot.active span {
    background: #ffd700 !important;
    opacity: 1;
}

.inner-testimonial .owl-nav button {
    background: none;
    border: none;
    font-size: 40px !important;
    color: #fff !important;
}

.inner-testimonial .owl-nav button:hover {
    color: #ffd700 !important;
}

.testimonial-wrapper {
    position: relative;
}

/* ========================founder======================= */
.inner-founder .container-fluid {
    width: 70%;
}

.inner-founder {
    padding: 0px 0px 20px 0px;
}



.inner-founer {
    padding: 0px 0px 60px 0px;
}

.founder-right h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-right h2 {
    color: var(--primary-color);
}

.founder-right p {
    font-size: 20px;
    color: var(--primary-color);
}

.inner-founer p {
    text-align: justify;
}

/* =======================home fprm section================= */
.inner-home-contact {
    width: 100%;
    padding: 60px 0px;
    background-color: var(--primary-color);
}



.inner-home-contact .container-fluid {
    width: 70%;
}

.home-form-right .form-group {
    margin: 10px 0px;
}

.home-form-right {
    width: 100%;
    background-color: #053F8D;
    padding: 70px 40px;
    border-radius: 15px;
}

.home-form-left p {
    font-size: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-info a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.contact-info a i {
    font-size: 22px;
    color: var(--white);
    transition: 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);

    transform: translateX(5px);
}

.contact-info a:hover i {
    color: #ffffff;
}

.inner-home-contact .form-group input,
.inner-home-contact .form-group select,
.inner-home-contact .form-group textarea {
    width: 100%;
    height: 55px;
    padding: 12px 18px;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.inner-home-contact label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.inner-home-contact .form-group textarea {
    height: auto;
    min-height: 120px;
    resize: none;
}

.inner-home-contact .form-group input:focus,
.inner-home-contact .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.inner-home-contact .main-head {
    font-size: 46px;
}

.inner-home-contact .form-group input::placeholder,
.inner-home-contact .form-group textarea::placeholder {
    color: #999;
}

.inner-home-contact .social-icons .social-round {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.inner-home-contact .social-icons .social-round:hover {
    background: #F21010;
    color: #000;
    transform: translateY(-4px);
}

.inner-home-contact .social-icons .social-round i {
    transition: 0.3s ease;
}

.inner-home-contact .social-icons .social-round:hover i {
    transform: scale(1.15);
}


/* ===========================about us page=================== */
.sub-banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    background: url('../images/home/banner-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-sub-banner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.sub-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    margin-top: 100px;

}

.inner-sub-banner {
    position: relative;
    z-index: 1;
}

.inner-sub-banner::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 2px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0));

    border-radius: 4px;
    z-index: -1;

    opacity: 0;
    animation: softFade 1.2s ease-out forwards;
}

@keyframes softFade {
    0% {
        opacity: 0;
        width: 20%;
    }

    100% {
        opacity: 1;
        width: 80%;
    }
}


.inner-sub-banner .page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.inner-sub-banner .breadcrumb {
    display: inline-flex;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.inner-sub-banner .breadcrumb-item a {
    color: #ffffffcc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.inner-sub-banner .breadcrumb-item a:hover {
    color: #fff;
}

.inner-sub-banner .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 32px;
    }
}

.sub-banner-wrap {
    width: 100%;
    position: relative;
}

.sub-banner-ovelray {
    position: absolute;
    bottom: 0%;
    left: 50%;
    z-index: 11;
    transform: translate(-50%, -50%);
}


/* ========================about page==================== */
.about-wrap {
    padding: 80px 0px 30px 0px;
}

.right-about h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.right-about p {
    text-align: justify;
    color: var(--black);
}

.left-about img {
    animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes smoothFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

.right-about .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
    margin: 1.25rem 0;
    padding: 10px 0px;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.right-about .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: transparent;
    padding: 0.25rem 0;
}

.right-about .feature-icon {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--primary-color);
    min-width: 1.35rem;
    margin-top: 2px;
}

.right-about .feature-content strong {
    display: block;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 0.1rem;
}

.right-about .feature-content span {
    display: block;
    font-size: 0.88rem;
    color: #666;
}

.about-wrap .container-fluid {
    width: 70%;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(90deg, #0055a5, #002557, #0055a5);

    position: relative;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeLR 22s linear infinite;
    transition: animation-play-state 0.2s ease;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--white) !important;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.35s ease;
}


.marquee-item {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--primary-color);
    padding: 8px 14px;
}

.marquee-item::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 50px;
}


.marquee-item i {
    font-size: 20px;
    color: var(--white);
    transition: 0.35s ease;
}


.marquee-item:hover {
    transform: scale(1.03);
}

.marquee-item:hover i {
    transform: translateY(-3px) scale(1.2) rotate(8deg);
}

@keyframes marqueeLR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


/* =====================why choose us =================*/
.inner-choose {
    padding: 50px 0px 0px 0px;
}

.inner-choose .container-fluid {
    width: 70%;
}

.choose-head-left h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.choose-head-left h2 {
    font-size: 34px;
    color: var(--primary-color);
}

.inner-choose .container-fluid {
    width: 70%;
}

.choose-head-wrap {
    position: relative;
}

.choose-head-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5%;
    transform: translateX(-50%);
    width: 100%;

    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #002557, #0055a5, #00aaff);
}

.choose-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.choose-content h5 {
    font-size: 24px;
    color: var(--primary-color);
}

.choose-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.choose-item:hover .choose-icon {
    transform: scale(1.2);
    color: #0055a5;
}

.choose-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.choose-item p {
    font-size: 15px;
    color: #555;
}

.choose-content {
    padding: 40px 0px;
}

.choose-content {
    position: relative;
    padding: 40px 0;
}

.choose-content::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: linear-gradient(90deg, #002557, #0055a5, #00aaff);
    border-radius: 2px;
    z-index: -1;
}

.choose-content::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: linear-gradient(90deg, #002557, #0055a5, #00aaff);
    border-radius: 2px;
    z-index: -1;
}

.choose-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px 25px 30px;
    /* extra left padding for the line */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.choose-item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 4px;
    height: 55px;
    background: linear-gradient(180deg, #002557, #0055a5, #00aaff);
    border-radius: 2px;
}

.contact-page .inner-home-contact {
    background-color: #fff !important;
}

.contact-page .social-round {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 50%;
}

.contact-page .inner-home-contact .home-form-left,
.contact-page .inner-home-contact .home-form-left h2,
.contact-page .inner-home-contact .home-form-left i,
.contact-page .inner-home-contact .home-form-left a {
    color: var(--primary-color);
}

.inner-visionary {
    padding-bottom: 40px;
}

.visisonary-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.visisonary-header h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
}

.visionary-left p {
    color: var(--black);
    text-align: justify;
}

.visionary-left h2 {
    color: var(--primary-color);
}

.inner-visionary .container-fluid {
    width: 70%;
}

.services-wrap {
    padding: 60px 0px;
}

.services-wrap h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.services-wrap .container-fluid {
    width: 80%;
}

.services-head {
    margin-bottom: 40px;
}

.services-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sevice-img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 74%;
    top: 4%;
    /* z-index: 1; */
    margin-bottom: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.services-card:hover .sevice-img {
    transform: scale(1.2) rotate(10deg);
}

.services-content {
    padding-top: 40px;
}

.services-content h4 {
    max-width: 75%;
    font-size: 20px;
    font-weight: 700;
    color: #002557;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    text-align: left !important;
}

.services-card:hover h4 {
    color: #0055a5;
}

.services-content p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    text-align: left;
    text-align: justify;
}

.note {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #f0f4ff;
    padding: 12px 20px;
    border-radius: 6px;
    margin: 15px 0;
    transition: all 0.3s ease;
    text-align: center;
}

.note strong {
    color: #002557;
    font-weight: 700;
}

.note:hover {
    background: #e2ebff;
    box-shadow: 0 6px 15px rgba(0, 85, 255, 0.1);
}

.services-card a {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0055a5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-card a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #002557, #0055a5, #00aaff);
    border-radius: 2px;
}

.services-card a i {
    margin-left: 5px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.services-card a:hover i {
    transform: translateX(5px);
}

.services-card {
    position: relative;
}

.services-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/home/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* ====================even section ================*/
.inner-events {
    padding: 60px 0;
}

.event-head h2 {
    color: var(--primary-color);
}


.even-inner {
    position: relative;
}

.inner-events .event-page-carousel .event-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(122, 122, 122, 0.08);
    margin: 10px;

    min-height: 550px !important;
}

.inner-events .event-carousel .event-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(122, 122, 122, 0.08);
    margin: 10px;

    min-height: 550px !important;
}

.inner-events .event-icon img {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(122, 122, 122, 0.08);
    border-radius: 50% !important;
    padding: 5px;
    border: 1px solid var(--primary-color);
}

.inner-events .event-icon {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.inner-events .event-img {
    position: relative;
}

.inner-events .event-img .even-images {
    width: 100%;
    height: 330px;
    border-end-start-radius: 140px;
}

.inner-events .event-content {
    padding: 15px;
}

.inner-events .event-content h4 {
    font-size: 20px;
    margin-top: 12px;
    color: #01285c;
    font-weight: 600;
}

.inner-events .event-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-top: 8px;
    text-align: justify;
}

.inner-events .custom-nav {
    margin-top: 20px;
    text-align: right;
}

.inner-events .nav-btn {
    width: 35px;
    height: 35px;
    border: none;
    font-weight: bolder;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 8px;
    transition: 0.3s;
}

.inner-events .nav-btn:hover {
    background: linear-gradient(135deg, #0250A3 0%, #02A3F4 100%);

    color: var(--white);
    transform: scale(1.05);
}

.inner-events {
    position: relative;
    overflow: hidden;
}

.inner-events::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -110px;
    width: 360px;
    height: 360px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.event-sec::before {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -110px;
    width: 320px;
    height: 320px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}


.event-content a {
    font-size: 20px;
    text-decoration: underline;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.inner-about::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -110px;
    width: 380px;
    height: 380px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -10;
    transition: all 0.5s ease;
}

.inner-about::before {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -10;
    transition: all 0.5s ease;
}

.inner-offer::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -10;
    transition: all 0.5s ease;
}

.inner-offer::after {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 320px;
    height: 320px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -10;
    transition: all 0.5s ease;
}


.about-wrap {
    position: relative;
}

.about-wrap::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -110px;
    width: 350px;
    height: 350px;
    background: #05638C;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -10;
    transition: all 0.5s ease;
}


/* ==================event modal ================*/
.event-modal-wrap .modal-content {
    border-radius: 20px;
    border: none;
    padding: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    animation: modalPop 0.35s ease;
}

@keyframes modalPop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.event-modal-wrap .modal-header {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 24px;
    border-bottom: none;
}

.event-modal-wrap .modal-title {
    font-size: 22px;
    font-weight: 700;
}

.event-modal-wrap .btn-close {
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 6px;
    transition: 0.3s ease;
}

.event-modal-wrap .accordion-button:focus {
    box-shadow: none !important;

}

.event-modal-wrap .btn-close:hover {
    transform: rotate(90deg);
    background: #f1f1f1;
}

.event-modal-wrap .modal-img img {
    /* ultra-soft + lifted shadow */
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(0, 0, 0, 0.04),
        inset 0 0 25px rgba(255, 255, 255, 0.35);
}

.event-modal-wrap .modal-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px;
    gap: 10px;
}

.event-modal-wrap .modal-block {
    position: relative;
    padding: 32px;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);

    background-image:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 80%);
    overflow: hidden;
    z-index: 1;
}

.event-modal-wrap .modal-block::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -70px;
    right: -70px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.18;
    border-radius: 50%;
    z-index: 0;
    animation: softPulse 6s infinite ease-in-out;
}

.event-modal-wrap .modal-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 0L160 80 80 160 0 80z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.event-modal-wrap .modal-block h4 {
    font-size: 24px;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-modal-wrap .modal-block p,
.event-modal-wrap .modal-block ul li {
    position: relative;
    z-index: 2;
    font-size: 17px;
    color: var(--black);
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        opacity: 0.16;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.25;
    }

    100% {
        transform: scale(1);
        opacity: 0.16;
    }
}


.event-modal-wrap .modal-block * {
    position: relative;
    z-index: 2;
}

.event-modal-wrap .modal-block h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.event-modal-wrap .modal-block p {
    font-size: 17px;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.event-modal-wrap .modal-block p i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: var(--primary-color);
}

.event-modal-wrap .modal-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.event-modal-wrap .modal-block ul li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 32px;
    line-height: 1.6;
    position: relative;
    color: var(--primary-color);
}

.event-modal-wrap .modal-block ul li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), #000);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* Bold text inside list */
.event-modal-wrap .modal-block ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}







/* Overlay background blur */
.event-modal-wrap .modal-backdrop.show {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.45);
}















/* Container basics */
.idea-challenge-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #05204a;
}

.idea-challenge-section .container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid */
.idea-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: center;
}

/* Content */
.idea-content h2 {
    font-size: 28px;
    margin: 0 0 12px;
    color: #01285c;
    letter-spacing: 0.2px;
}

.idea-content .lead {
    font-size: 16px;
    margin: 0 0 18px;
    color: #264a6f;
}

/* Prizes list */
.prizes {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.prizes li {
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 6px 18px rgba(3, 41, 78, 0.06);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.prizes .rank {
    font-weight: 700;
    font-size: 14px;
    color: #01285c;
}

.prizes .amount {
    font-weight: 800;
    font-size: 16px;
    color: #0088ff;
}

/* Summary text */
.summary {
    color: #2b4f73;
    font-size: 15px;
    margin: 12px 0 20px;
    line-height: 1.5;
}

.cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .16s ease, box-shadow .16s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 198, 255, 0.14);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 198, 255, 0.18);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(1, 40, 92, 0.08);
    color: #01285c;
}

.idea-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.idea-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(3, 41, 78, 0.08);
    object-fit: cover;
}


@media (max-width: 880px) {
    .idea-grid {
        grid-template-columns: 1fr;
    }

    .idea-image {
        order: -1;
        margin-bottom: 18px;
    }

    .idea-content h2 {
        font-size: 24px;
    }
}


/* ==========event page ============*/
.event-inner {
    padding: 80px 0px 30px 0px;
}

.event-inner .container-fluid {
    width: 80%;
}

.right-event h2,
.right-event p {
    color: var(--primary-color);
}

.right-event.style-1 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.right-event.style-1 ul li {
    position: relative;
    /* display: flex; */
    gap: 14px;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
    transition: 0.35s ease;
    color: var(--black);
    border: 1px solid rgba(30, 90, 180, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 16px;
}

.right-event.style-1 ul li:nth-child(odd) {
    background: rgba(255, 255, 255, 0.75);
}

.right-event.style-1 ul li:nth-child(even) {
    background: rgba(230, 240, 255, 0.75);
}

.right-event.style-1 ul li:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(30, 90, 180, 0.25);
}

.right-event.style-1 ul li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
    transition: 0.35s ease;
}

.right-event.style-1 ul li:hover i {
    transform: scale(1.3) rotate(8deg);
    filter: drop-shadow(0 2px 4px rgba(30, 90, 180, 0.5));
}

.right-event.style-1 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 4px 0 0 4px;
    transition: 0.35s ease;
}


@keyframes floatY {
    0% {
        transform: translateY(-50%) rotate(-90deg);
    }

    50% {
        transform: translateY(-58%) rotate(-90deg);
    }

    100% {
        transform: translateY(-50%) rotate(-90deg);
    }
}

.left-event img {
    border-radius: 10px 120px 10px 120px;
}

.left-event {
    position: relative;
    display: inline-block;
}

.left-event h4 {
    position: absolute;
    left: -3%;
    top: 55%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-head);
    font-size: 75px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;

    color: transparent;
    -webkit-text-stroke: 1.5px rgba(120, 120, 120, 0.65);
    text-shadow: none;
    background: transparent;

    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateX(-50%) rotate(-90deg) translateX(0);
    }

    50% {
        transform: translateX(-50%) rotate(-90deg) translateX(-12px);
        /* up */
    }

    100% {
        transform: translateX(-50%) rotate(-90deg) translateX(0);
    }
}


/* 
@keyframes blackPulse {
    0% {
        -webkit-text-stroke: 2px #000;
        opacity: 0.95;
    }

    50% {
        -webkit-text-stroke: 2px #333;
        opacity: 1;
    }

    100% {
        -webkit-text-stroke: 2px #000;
        opacity: 0.95;
    }
}

@keyframes floatSoft {
    0% {
        transform: translateY(-50%) rotate(-90deg) translateY(0);
    }

    50% {
        transform: translateY(-50%) rotate(-90deg) translateY(-10px);
    }

    100% {
        transform: translateY(-50%) rotate(-90deg) translateY(0);
    }
}

@keyframes shinePass {
    0% {
        text-shadow:
            0 4px 8px rgba(0, 0, 0, 0.35),
            0 2px 4px rgba(0, 0, 0, 0.25);
    }

    50% {
        text-shadow:
            0 4px 18px rgba(0, 0, 0, 0.5),
            0 3px 6px rgba(0, 0, 0, 0.35);
    }

    100% {
        text-shadow:
            0 4px 8px rgba(0, 0, 0, 0.35),
            0 2px 4px rgba(0, 0, 0, 0.25);
    }
} */


.video-cta-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
    pointer-events: none;
    z-index: 11;
}

.play-overlay::before,
.play-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 120%;
    height: 120%;
    background: rgba(30, 144, 255, 0.2);
    z-index: 1;
    animation: rippleGlow 1.8s ease-in-out infinite;
}

.play-overlay::after {
    width: 140%;
    height: 140%;
    background: rgba(30, 144, 255, 0.15);
    animation-delay: 0.9s;
}

@keyframes rippleGlow {
    0% {
        transform: scale(0.7);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
}


/* ================gallery section ==================*/
.inner-gallery {
    padding: 70px 0px;
}

.inner-gallery h2,
.inner-gallery h4 {
    color: var(--white);
}

.inner-gallery {
    width: 100%;
    background-image: url('../images/home/home-cta.png');
    /* background-color: var(--primary-color); */
}

.gallery-marquee {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    margin: 30px 0px;
}

.marquee-track {
    display: flex;
    gap: 15px;
    animation: marqueeScroll 20s linear infinite;
}

.gallery-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.inner-visionary {
    padding: 70px 0px;
}
.visionary-right h2{
    font-size: 32px;
}
.visionary-right p {
    color: var(--black);
    text-align: justify;
}

.visionary-right h4,
.visionary-right h2 {
    color: var(--primary-color);

}


/* Dropdown Menu Container */
.navbar .dropdown-menu {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 0;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: dropdownFade 0.25s ease forwards;
    transform-origin: top;
}

/* Dropdown Items */
.navbar .dropdown-menu .dropdown-item {
    padding: 10px 18px;
    font-size: 15px;
    color: #333;
    transition: all 0.25s ease;
    border-radius: 6px;
}

/* Hover effect */
.navbar .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, #f4faff, #e7f5ff);
    color: #006699;
    padding-left: 22px;
    /* subtle movement */
}

/* Active item */
.navbar .dropdown-menu .dropdown-item.active {
    background: #e7f5ff;
    color: #006699;
    font-weight: 600;
}

/* Dropdown Animation */
@keyframes dropdownFade {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-top: 10px;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 15px;
    font-size: 15px;
}

.dropdown-item:hover {
    background-color: #f3f3f3;
    color: #000;
}

.home-awards {
    padding: 0px 0px 50px 0px;
}

.home-awards .main-head {
    color: var(--primary-color);
}

.home-awards .container-fluid {
    width: 80%;
}

.home-awards-wrap .item {
    width: 200px;
    height: 100px;
}

.home-awards-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0px auto;
}

.home-awards .client-carousel-wrap {
    border-bottom: none !important;
}


.home-awards h2 {
    font-size: 32px;
    margin-bottom: 40px;
}


.event-section .container-fluid {
    width: 70%;
}

.event-section {
    padding: 50px 0px;
}

.event-section-left p {
    text-align: justify;
}

.event-section-left p,
li {
    color: var(--black);
}

.event-section-left h2 {
    color: var(--primary-color);
}

.event-section-left .event-info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.event-section-left h5 {
    color: var(--primary-color);
}

.event-section-left .event-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.event-section-left .event-info-list li i {
    color: #006699;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.event-section-left .event-highlights-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.event-section-left .event-highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.event-section-left .event-highlights-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.event-section-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-section-right img:hover {
    transform: scale(1.03);
}


.event-form {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px 0px 0px;
}

.event-form-header {
    margin-bottom: 30px;
}

.event-form h2 {
    color: var(--primary-color);
}

.event-form-wrap input,
.event-form-wrap textarea {
    margin: 10px 0px;
}

.event-form-wrap .card {
    border: none !important;
}

.event-form-wrap .form-floating label {
    top: -30%;
    left: 5%;
    background-color: var(--white);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 0;
    height: 10px;
}

.form-description label {
    top: -13% !important;
    left: 3% !important;
}

.event-form-wrap .form-control:focus {
    border-color: #002557;
    box-shadow: 0 0 10px rgba(0, 37, 87, 0.2);
}

.event-form-wrap .btn-primary {
    background-color: #002557;
    border-color: #002557;
}

.event-form-wrap .btn-primary:hover {
    background-color: #001d40;
    border-color: #001d40;
}

.event-form-wrap .card {
    background-color: transparent !important;
    padding: 50px 20px !important;
    background-image: url('../images/events/form-bg.png');
}

.form-upload {
    position: relative;
}

.upload-label {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #fff;
    padding: 0 6px;
    font-size: 14px;
    color: #002557;
    font-weight: 500;
    z-index: 2;
}

.upload-input {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-input:hover {
    /* background: #e9ecef; */
    border-color: #001d40;
}

.upload-input:focus {
    outline: none;
    border-color: #001d40;
    box-shadow: 0 0 0 0.2rem rgba(0, 37, 87, 0.25);
}


.event-form-wrap button {
    position: relative;
    z-index: 0 !important;
    display: inline-block;
    padding: 7px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #F21010;
    border: 2px solid #F21010;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-para) !important;
    cursor: pointer;
    z-index: 1;
}

/* Liquid fill effect */
.event-form-wrap button::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s ease;
    z-index: -1;
}

.event-form-wrap button:hover::before {
    width: 160%;
}

.event-form-wrap button:hover {
    color: #000;
    /* text color after fill */
    border-color: #F21010;
}

.what-learn {
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.8), #fafafa 50%, rgba(250, 250, 250, 0.8));
}

.learn-row {
    margin-top: 20px;
}

.learn-box {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7ff 100%);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.learn-icon {
    font-size: 42px;
    color: #F21010;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.learn-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.learn-box p {
    color: #555;
    font-size: 15px;
}

.learn-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.learn-box:hover .learn-icon {
    transform: scale(1.15) rotate(3deg);
}

.learn-box::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #F21010;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.learn-box:hover::after {
    width: 80%;
}

.learn-header h2 {
    color: var(--primary-color);
}

.learn-header {
    text-align: center;
}

.terms {
    padding: 50px 0px 0px 0px;
}

.terms-head {
    margin-bottom: 40px;
}

.terms-left .terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-left .terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.terms-head h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.terms-left .terms-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.terms-left .terms-list li i {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.terms-right img {
    width: 100%;
    border-radius: 14px;
    transition: 0.3s ease;
}

.terms-right img:hover {
    transform: scale(1.02);
}


/* ===============service detail page ===============*/

.inner-services-sec .container-fluid {
    width: 70%;
}

.services-sec-left p {
    text-align: justify;
    color: var(--black);
}

.services-sec-left h2 {
    color: var(--primary-color);
    font-size: 32px;
}

.services-sec-left h4 {
    color: var(--primary-color);
}

.inner-services-sec {
    padding: 70px 0px;
}

.inner-serve .container-fluid {
    width: 70%;
}



.inner-serve h2 {
    font-size: 32px;
}

.inner-serve h4 {
    color: var(--white);
}

.inner-serve {
    width: 100%;
    background-image: url('../images/home/home-cta.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0px;
    text-align: center;
}

.inner-serve .row {
    margin: 30px 0px 0px 0px;
}

.serve-card h4 {
    color: var(--primary-color);
}

.serve-card {
    background: #fff;
    border-radius: 15px;
    padding: 45px 15px 35px 15px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    flex: 1;
    background-image: url('../images/services/service-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.serve-card::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    background: rgba(0, 0, 0, 0.1);
    top: 25%;
    right: 0;
}

.serve-card .serve-icon img {
    transition: transform 0.5s ease;
}

.serve-card:hover .serve-icon img {
    transform: translateY(-15px);
}



.serve-icon {
    position: absolute;
    right: 10%;
    top: 5%;
}

.serve-icon img {
    width: 70px;
    height: auto;
}

.serve-card h4 {
    font-size: 20px;
    max-width: 85%;
    font-weight: 700;
    margin-bottom: 10px;
}

.serve-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}





.inner-offer h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.inner-offer h4 {
    color: var(--primary-color);
}

.inner-offer {
    padding: 50px 0px;
}

.inner-offer .owl-stage {
    margin: 30px 0px;
}

.offer-carousel {
    z-index: 0;
}
.offer-carousel .offer-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.07);
    min-height: 250px;
    z-index: 0;
}

.offer-carousel .offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.offer-carousel .offer-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    transform: rotate(25deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.offer-carousel .offer-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--primary-color);
    filter: blur(65px);
    opacity: 0.25;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.offer-carousel .offer-card:hover::after {
    opacity: 0.45;
    transform: scale(1.15);
}

.offer-carousel .offer-card:hover::before {
    top: -20%;
    left: -20%;
    opacity: 1;
}

.offer-carousel .offer-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.offer-carousel .offer-card h5::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 8px;
    border-radius: 10px;
}

.offer-carousel .offer-card ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.offer-carousel .offer-card ul li {
    font-size: 15px;
    color: #555;
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
}

.offer-carousel .offer-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

.offer-carousel .offer-card:hover ul li::before {
    transform: scale(1.2);
    transition: 0.3s ease;
}

.inner-offer .owl-stage {
    z-index: 0 !important;
}

.inner-offer .owl-stage-outer {
    z-index: 0 !important;
}

.inner-offer {
    position: relative;
}

.inner-offer .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -70px;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -70px;
}

.inner-offer .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
}



.inner-offer .owl-nav button {
    pointer-events: all;
    background-color: rgba(0, 37, 87, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inner-offer .owl-nav button:hover {
    background-color: #002557;
    transform: scale(1.1);
}

.inner-faq {
    padding: 10px 20px 40px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.inner-faq h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.inner-faq .container-fluid {
    width: 70%;
}

/* Accordion container */
.inner-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Accordion header button */
.inner-faq .accordion-button {
    background: linear-gradient(90deg, #002557 0%, #004080 100%);
    /* Left to right blue gradient */
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    transition: all 0.4s ease;
    position: relative;
}

.inner-faq .accordion-button::after {
    filter: invert(1);
    /* Invert arrow color */
    transition: transform 0.4s ease;
}

.inner-faq .accordion-button:hover,
.inner-faq .accordion-button:focus {
    background: linear-gradient(90deg, #003366 0%, #0055a5 100%);
    color: #ffffff;
}

/* Rotate arrow on collapse open */
.inner-faq .accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.inner-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Accordion body */
.inner-faq .accordion-body {
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    padding: 20px;
    transition: all 0.4s ease;
}
.inner-faq{
    width: 100%;
    background-image: url('../images/services/faq-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}