@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Momo+Signature&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Tangerine:wght@400;700&display=swap');

/* ======== THEME VARIABLES ======== */
:root {
    --primary: #0a0f1f;
    /* Deep blue-black */
    --text-light: #020617;
    /* Almost black */
    --accent: #1051e3;
    /* Blue */
    --accent-warm: #ff5fd4;
    /* Pink accent */
    --dark: rgba(2, 6, 23, 0.92);
    --text-light: #ffffff;
    --text-dark: rgb(35, 34, 34);
    --text-muted: #d1d5db;
    --gradient: linear-gradient(135deg, var(--accent), var(--accent-warm));
    --svg-width: 1440px;
    --svg-height: 120px;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

section {
    overflow: hidden;
}

/* ======== NAVBAR ======== */
.navbar {
    background: transparent !important;
    padding: 1rem 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

/* Navbar menu bubble style */
.navbar-nav {
    background-color: rgba(255, 255, 255, 0.349);
    border-radius: 50px;
    padding: 8px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-light) !important;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    /*font-size: .8rem;*/
}

.nav-link:hover {
    color: var(--text-light) !important;
}

.nav-link.active {
    background: var(--text-light);
    color: var(--primary) !important;
    border-radius: 50px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Buttons */
.btn-download,
.btn-outline-demo,
.custom-btn-dark,
.custom-btn-light {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-download,
.custom-btn-dark {
    background: var(--primary);
    color: var(--text-light);
    border: none;
}

.btn-download:hover,
.custom-btn-dark:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-demo,
.custom-btn-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-demo:hover,
.custom-btn-light:hover {
    background: var(--text-light);
    color: var(--primary);
}

.collapse {
    visibility: visible !important;
}

/* ======== MOBILE MENU ======== */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(2, 6, 23, 0.95);
        border-radius: 20px;
        padding: 1rem;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }

    .navbar {
        background: rgba(2, 6, 23, 0.95) !important;
    }

    .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .cta-content{
        padding:10px !important; 
    }
    
}


/* ======== DROPDOWN (MULTI-LEVEL) ======== */
.dropdown-menu {
    background-color: rgba(2, 6, 23, 0.867);
    border: none;
    border-radius: 12px;
    padding: 0;
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    padding:15px 130px 15px 15px;;
    
    transition: background 0.3s;
}

.dropdown-item:hover {
    /* background: var(--accent); */
    background: var(--gradient) !important;
    color: #fff;
    /* border-radius: 8px; */
}

/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.2rem !important;
    margin-top: -0.5rem;
    display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}



/* On hover */
.dropdown-submenu:hover>.dropdown-item::after {
    color: var(--accent-warm);
}

@media (max-width: 991.98px) {
    .dropdown-submenu>.dropdown-menu {
        position: static !important;
        float: none;
        margin: 0.25rem 0;
        transform: none !important;
        display: none;
    }


    .dropdown-submenu {
        position: relative;
        border: 1px solid #104fe367 !important;
    }


    .dropdown-submenu>.dropdown-menu.show {
        display: block;

    }

    .dropdown-submenu>.dropdown-menu.show li a {
        white-space: nowrap;
        /* keep text on one line */
        overflow: hidden;
        /* hide overflowing text */
        text-overflow: ellipsis;
    }
    
    
    .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 15px 4px !important;
    transition: background 0.3s;
}

.about-content {
    padding: 43px 10px !important;
}


.about-content h2{
    margin: 22px 0px !important;
}

.mallSwiper img {
    aspect-ratio:1 !important;
}

.exhibitionn{
    border: 1px solid #104fe367 !important;
}
    




    /* optional: caret rotation to indicate open state */
    .dropdown-submenu>a[aria-expanded="true"]::after {
        content: " ▴";
        float: right;
    }

    .dropdown-submenu>a[aria-expanded="false"]::after {
        content: " ▾";
        float: right;
    }

    .process-card {
        width: 100% !important;
    }
}




/* ======== HERO SECTION ======== */

/* ========== VIDEO SLIDER ========== */
.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-video.active {
    opacity: 1;
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient);
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* filter: blur(1px); */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(1, 1, 1, 0.700); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.574) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-content h5 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light) !important;
    margin-bottom: 20px;
    text-shadow: 0px 4px 20px rgba(255, 255, 255, 0.5);
}

.color-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Momo Signature", cursive;
    padding: 3px 3px 5px 3px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content h5 {
        font-size: 0.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ======== ABOUT SECTION ======== */
.about-section {
    background: #ffffff;
    color: var(--text-dark);
}

.about-section .text-accent {
    color: var(--primary);
}

.about-section .about-img-main {
    position: relative;
    z-index: 2;
    height:450px;
}

.about-section .about-img-main img{
    width:100%;
    height:100% !important;
    object-fit:cover;
}

.about-section .about-img-small {
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 55%;
    border: 5px solid var(--text-light);
    z-index: 3;
}

.about-img-small {
    height: 230px;
}

.about-img-small img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-section .btn-about {
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.about-section .btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 95, 212, 0.4);
}

.about-section .icon-circle {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
}

section img {
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

section img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-section .about-img-small {
        position: absolute;
        bottom: -40px;
        left: 10px;
        width: 60%;
    }
}

/* ======== WHAT WE OFFER SECTION ======== */
.offer-section {
    padding-bottom: 150px;
}

.offer-section,
.dark-back-section {
    background: var(--dark);
    color: #fff;
}

.offer-section .text-accent {
    color: var(--text-light);
}

.offer-section h2 {
    color: var(--text-light);
}

.offer-section p {
    color: var(--text-light) !important;
}

.btn-accent {
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 95, 212, 0.4);
}

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.offer-card:hover {
    border: 2px solid var(--text-light);
}

.offer-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover img {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    transition: background 0.3s ease;
}

.offer-card:hover .offer-overlay {
    background: rgba(16, 81, 227, 0.8);
}

.offer-content .icon {
    font-size: 2rem;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    padding: 8px 14px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.offer-content h5 {
    font-weight: 600;
    margin: 10px 0;
}

.offer-content .read-more {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
}

.offer-content .read-more:hover {
    text-decoration: underline;
}

/* ======== SERVICES SECTION ======== */
.services-section {
    background: #f8f9fa;
    color: var(--text-dark);
}

.services-section .text-accent {
    color: var(--primary);
}

.service-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
    padding-top: 22px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 95, 212, 0.3);
    border: 2px solid var(--text-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #fff;
}



/* ======== WHY CHOOSE US SECTION ======== */
.why-choose-section {
    background: var(--dark);
    color: #fff;
}

.why-choose-section .text-accent {
    color: var(--text-light);
}

.why-choose-section h2 {
    color: var(--text-light);
}

.why-item {
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    padding: 30px 0px 5px 10px;
    border-radius: 20px;
    background: rgba(16, 81, 227, 0.05);
    height: -webkit-fill-available;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: var(--text-light);
    background: rgba(255, 95, 212, 0.1);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-item h5 {
    /* color: var(--text-light); */
    color: var(--accent) !important;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light) !important;
}

/* ======== TESTIMONIALS SECTION ======== */
.testimonials-section {
    background: #f8f9fa;
    color: var(--text-dark);
}

.testimonials-section .text-accent {
    color: var(--primary);
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(16, 81, 227, 0.3);
    border: 2px solid var(--primary);
}

.stars {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gradient);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======== CTA SECTION ======== */
.cta-section {
    background: var(--gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 95, 212, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 90px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-cta {
    background: var(--text-light);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ======== FOOTER ======== */
.footer {
    background: var(--dark);
    color: var(--text-muted);
    border-top: 2px solid var(--primary);
}

.footer h5,
.footer h6 {
    color: var(--text-light);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 95, 212, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-divider {
    border-color: var(--primary);
    margin: 2rem 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======== GALLERY SWIPER ======== */
.gallery-section {
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.gallery-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0), transparent);
    opacity: 1;
    z-index: 5;
}

.gallery-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgb(0, 0, 0), transparent);
    opacity: 1;
    z-index: 5;
}

.gallery-section h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.gallery-section p {
    color: var(--text-light) !important;
}

/* .gallery-section .color-text {
    color: var(--accent);
} */

.gallerySwiper {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
}

.gallerySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gallerySwiper .swiper-slide:hover {
    transform: translateY(-8px);
}

.gallerySwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallerySwiper .swiper-slide {
        width: 80%;
        height: 320px;
    }

    .gallery-section h2 {
        font-size: 1.6rem;
    }
}

/* ===== BREADCRUMB SECTION ===== */
.breadcrumb-section {
    height: 50vh;
    background: url("../images/bredcrumb.jpg") bottom/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 50px;
}

.breadcrumb-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.781), rgba(2, 6, 23, 0.752)),
        radial-gradient(circle at center, rgba(255, 95, 212, 0.15), transparent 70%);
    z-index: 1;
}

.breadcrumb-section .content {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--accent-warm);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ff5fd4;
}



.about-content {
    padding: 150px 10px ;
}

.about-content h2 {
    font-size: 3rem;
}

.about-content p {
    text-align: justify;
}

.about-story {
    background-color: #0a0f1f;
    color: #fff;
}

.about-story h2 {
    line-height: 1.3;
}

.about-story .text-danger {
    color: #ff3d3d !important;
}

.mini-card img {
    object-fit: cover;
    height: 150px;
    width: 100%;
}

.mini-card .badge {
    font-size: 0.7rem;
    border-radius: 50rem;
    padding: 0.4em 0.8em;
}

.stats h3 {
    color: #fff;
}


.stats small {
    color: #aaa;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #0a0f1f;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.btn-outline-danger {
    border-color: #ff3d3d;
    color: #ff3d3d;
}

.btn-outline-danger:hover {
    background-color: #ff3d3d;
    color: #fff;
}





/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #10172a, #1e293b);
    padding: 4rem 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-warm);
}

.stat-item p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== MISSION / VISION / AIM ===== */
.mva-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mva-card {
    background: rgba(0, 0, 0, 0.075);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: left;
}

.mva-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.mva-card h4 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* limit to 1 line */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}


.mva-card p {
    color: black;
    font-size: 1rem;
    line-height: 1.6;
    display: -webkit-box;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}


/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 5rem 0;
    background: var(--dark);
}

.why-item,
.about-story .stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.why-item:hover,
.about-story .stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.why-item h5,
.about-story .stat h5 {
    color: var(--accent-warm);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-item p,
.about-story .stat p {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 4rem 0;
    text-align: center;
}

.logo{
    width:200px;
    /*box-shadow:0px 0px 10px 1px white;*/
    padding:16px 20px;
    border-radius:50px;
     filter: brightness(2);
}


.trust-logos img {
    height: 50px;
    margin: 15px 25px;
    opacity: 0.8
    transition: opacity 0.3s;
}

.trust-logos img:hover {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .breadcrumb-section {
        height: 35vh;
        padding-top: 90px;
    }

    .breadcrumb-section h1 {
        font-size: 1.75rem;
    }

    .mva-card {
        margin-bottom: 1.5rem;
    }
    
    .logo{
        width:180px;
    }
}

.swiper-wrapper {
    background-color: #ffffff;
}

.mallSwiper {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    background-color: transparent;
}

.mallSwiper img {
    width: 100%;
    border-radius: 1rem !important;
    object-fit: cover;
    height: 100%;
    box-shadow: none !important;
    aspect-ratio: 16/12;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent);
}

.process-section {
    position: relative;
    overflow: hidden;
    text-align: left;
}

.process-section ul{
    padding-left:0 !important;
}

.process-section .row {
    padding-right: 0 !important;
}

.process-section .row .col-lg-6 {
    padding-right: 24px !important;
}

.process-section .arrow-graphic {
    max-width: 120px;
    position: absolute;
    right: 50%;
    top: 60%;
    display:none !important;
}

.process-cards {
    position: relative;
    z-index: 2;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 80%;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    min-width: 50px;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-card p {
    margin-bottom: 0;
    color: #555;
}

.process-image {
    position: absolute;
    left: 65%;
    top: 0;
    height: 95%;
    padding: 20px;
    width: 70%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.process-image img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    opacity: 0.9;
}

.success-stories-section {
    background: var(--primary);
    color: var(--text-light);
}

.success-stories-section .story-card {
    transition: all 0.3s ease;
    background: #222634;
    color: var(--text-light);
    border: 1px solid transparent;
}



.success-stories-section .story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--text-light);
}

.modern-card {
    background: #222634;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: left !important;
    padding: 50px !important;
    height: -webkit-fill-available;
    cursor: pointer;
    /* overflow: hidden; */
}

.modern-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #1051e3, #ff5fd4);
    transition: width 0.4s ease;
}

.modern-card:hover::before {
    box-shadow: 0 0 10px #1051e3, 0 0 20px #ff5fd4;
    width: 100%;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 81, 227, 0.15);
    border-radius: 0px;
}

.modern-card p {
    padding-top: 20px;
    color: #b6b5b5;
}

.modern-card .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1051e3, #ff5fd4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 15px;
    box-shadow: 0 6px 15px rgba(16, 81, 227, 0.25);
    position: absolute;
    top: -30px;
    left: -30px;
}



.modern-card2 {
    background: #222634;
    border-radius: 18px;
    padding: 45px 35px;
    color: #fff;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
    text-align: left !important;
    cursor: pointer;
}

.modern-card2:hover {
    box-shadow: 0 0 25px rgba(255, 95, 212, 0.25), 0 0 40px rgba(16, 81, 227, 0.2);
    transform: translateY(-5px);
}

.icon-circle2 {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1051e3, #ff5fd4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px !important;
    transition: 0.3s;
}

.modern-card2:hover .icon-circle2 {
    transform: scale(1.1);
}


/* ======= SERVICES SECTION ======= */
.services-section {
    padding: 80px 0;
}


.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .content {
    padding: 25px;
    text-align: left;
}

.service-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 20px;
}

.read-more:hover {
    background-color: var(--primary);
    color: white;
}

.phone-icon {
    width: 20px;
}

/* .gallery-img img {
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    height: 320px;
}

.gallery .gallery-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
} */

.whatsapp {
    display: flex;
    gap: 5px;
    /*background-color: green;*/
    width: fit-content;
    padding: 5px 10px;
    border-radius: 40%;
    /*position: fixed;*/
    /*right: 20px;*/
    /*top: 500px;*/
    color: white;
    cursor: pointer;
    transition: .5s all ease;
}

.whatsapp a {
    display: flex;
    color: white;
    text-decoration: none;
    gap: 10px
}

.whatsapp:hover {
   transform:scale(1.2)
}

.whatsapp img {
    width: 50px;
    height: 50px;
}

.curved-text {
    transform: translateY(50px) !important;
}

.stat {
    padding: 1rem 1rem 0 1rem !important;
    background-color: var(--dark) !important;
}

/* Section background and spacing */
.trust-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Marquee container */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

/* Inner content */
.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    padding: 50px 0;
}

/* Logo images */
.marquee-content img {
    width:220px;
    height: 80px;
    margin: 0 20px;
    padding:10px;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-shadow:0px 0px 10px 1px #00000030;
    border-radius:5px;
    aspect-ratio:2;
}

/* Hover zoom effect */
.marquee-content img:hover {
    transform: scale(1);
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
