* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary-gradient: linear-gradient(90deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%);;
    --primary-orange: #ED8E39;
    --primary-blue: #138DC5;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    /* background-color: white !important; */
    background: linear-gradient(45deg, transparent, rgba(237, 142, 57, 0.1), transparent, rgba(19, 141, 197, 0.1), transparent) !important;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    background: linear-gradient(90deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%);

}

.navbar.scrolled {
    /* background: rgba(10, 10, 10, 0.95); */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    height:45px;    
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
  background: #E98632;
    /* background: linear-gradient(90deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%); */
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background:linear-gradient(
    180deg,
    #E98632 0%,
    #C2945A 35%,
    #6C8C87 70%,
    #228DBE 100%
);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.842);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(237, 142, 57, 0.1);
    border-left: 3px solid var(--primary-orange);
    padding-left: calc(1.5rem - 3px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    transform-origin: center;
}

/* Infinite Scrolling Carousel */
.infinite-carousel {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.05) 0%, rgba(19, 141, 197, 0.05) 100%);
    margin-top: 80px; /* Account for fixed navbar */
    position: relative;
    margin-bottom:-20px;
}

.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: white;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #ffffff;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    /* background:#d8d8d8; */
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 57, 57, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(90deg, #E98632 0%, #228DBE 100%);
    border-color: white;
    width: 30px;
    border-radius: 6px;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(4 4 4 / 30%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.6;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .infinite-carousel {
        margin-top: 70px;
    }

    .carousel-container {
        height: 100vh;
        min-height: 400px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Smaller navigation buttons on mobile */
    .carousel-nav {
        width: 38px;
        height: 38px;
        opacity: 0.5;
    }

    .carousel-nav-prev {
        left: 10px;
    }

    .carousel-nav-next {
        right: 10px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .indicator.active {
        width: 20px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 90%;
    padding: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid #E98632;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), transparent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    padding: 1rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(237, 142, 57, 0.4);
}

.btn-secondary {
    background: transparent;
    color: rgb(9, 9, 9);
    border: 1px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* About Section */
.about {
    padding: 50px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.about .particles {
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666666;
}

.about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 2rem;
    margin-bottom: 5rem;
}

.about-card {
    padding: 20px;
    background: #ffffff;
    border-radius: 30px;
    border: 2px solid #E98632;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width:300px;
    box-shadow: 0 4px 15px rgba(233, 134, 50, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.7s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: #00d4ff;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), var(--card-bg));
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.about-card:hover .card-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.3) rotate(15deg);
    }
    50% {
        transform: scale(1.4) rotate(15deg);
    }
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.about-card:hover h3 {
    transform: translateX(10px);
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    transition: all 0.4s ease;
}

.about-card:hover p {
    color: rgba(24, 23, 23, 0.95);
    transform: translateY(5px);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.impact-item:hover::before {
    left: 100%;
}

.impact-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), transparent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.impact-item h3 {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.impact-item:hover h3 {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    letter-spacing: 2px;
}

.impact-item p {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.impact-item:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(3px);
}

/* Clients Section */
.clients {
    padding: 5px 0px;
    background: linear-gradient(180deg, transparent, rgba(237, 142, 57, 0.05), transparent);
}

.clients-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem; */
  display:flex;
}

.client-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(237, 142, 57, 0.3);
}

.client-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.client-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Projects Section */
.projects {
    padding: 4rem 0;
}

.projects-page {
    padding: 10rem 0 5rem 0;
    min-height: 100vh;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #E98632;
    background: white;
    color: #333333;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine effect overlay */
.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    left: 100%;
}

/* Background gradient overlay */
.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.filter-btn:hover::after {
    opacity: 1;
}

.filter-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(237, 142, 57, 0.35),
                0 0 20px rgba(19, 141, 197, 0.2);
    color: white;
    border-color: transparent;
}

.filter-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(237, 142, 57, 0.3);
}

.filter-btn.active:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(237, 142, 57, 0.4),
                0 0 25px rgba(19, 141, 197, 0.25);
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); */
    gap: 2rem;
}

.project-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #138DC5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width:414px;
    box-shadow: 0 4px 15px rgba(19, 141, 197, 0.1);
    position: relative;
}

/* Shine effect overlay */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.project-card:hover::before {
    left: 100%;
}

/* Gradient overlay on hover */
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.03), rgba(19, 141, 197, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(19, 141, 197, 0.25),
                0 0 40px rgba(237, 142, 57, 0.15);
    border-color: var(--primary-orange);
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.2), rgba(19, 141, 197, 0.2));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.project-card:hover .project-content {
    transform: translateY(-5px);
}

.project-category {
    display: inline-block;
    padding: 8px;
    background: var(--primary-gradient);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color:white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover .project-category {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(237, 142, 57, 0.3);
}

.project-card h3 {
    font-size: 19px;
    margin-bottom: 7px;
    color: #666666;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: #138DC5;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.project-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top:10px;
}

.metric-badge {
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--primary-orange);
    border: 1px solid rgba(237, 142, 57, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover .metric-badge {
    background: rgba(237, 142, 57, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Methodology Section */
.methodology {
    background: linear-gradient(180deg, transparent, rgba(19, 141, 197, 0.05), transparent);
}

/* .methodology .section-subtitle {
    color: #000000 !important;
    font-weight: 600 !important;
    position: relative;
    z-index: 10;
} */

.methodology-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 468px) {
    .methodology-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary-gradient);
        transform: translateX(-50%);
    }
}



.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(237, 142, 57, 0.5);
}

.timeline-content {
    flex: 1;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Awards Section */
.awards {
    padding: 1rem 0;
}

.garbha-award-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 1.4rem;
    border-radius: 20px;
    border: 2px solid #E98632;
}
.garbha-award-section:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(237, 142, 57, 0.4);
    border-color: var(--primary-orange);
}

/* .garbha-award-image {
    flex: 1;
} */

.garbha-award-image img {
    height:380px;
    border-radius: 15px;
    object-fit: cover;
    transition: var(--transition);
}

.garbha-award-section:hover .garbha-award-image img {
    transform: scale(1.1);
}

/* .garbha-award-content {
    flex: 1;
} */

.garbha-award-content h3 {
    font-size: 40px;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 20px;
}

.award-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid #C2945A;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(194, 148, 90, 0.1);
}

.award-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(237, 142, 57, 0.4);
    border-color: var(--primary-orange);
}

.award-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.award-card:hover img {
    transform: scale(1.1);
}

.award-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.1), rgba(19, 141, 197, 0.1));
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    gap: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}


.contact-flex-card > * {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Address Styles */
.address {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(19, 141, 197, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    flex: 3;
    min-width: 70%;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.address .footer-locations {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.address .footer-locations h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.address .map-container {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(19, 141, 197, 0.2);
    transition: all 0.3s ease;
}

.address .map-container:hover {
    border-color: rgba(19, 141, 197, 0.5);
    box-shadow: 0 12px 30px rgba(19, 141, 197, 0.3);
    transform: translateY(-5px);
}

.address .location-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.address .locations-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex: 1;
    align-items: stretch;
}

.address .map-image-container {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address .map-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.address .locations-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-evenly;
}

.contact-icon-new {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ED8E39;
}

.address .location-item-new {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #ED8E39;
    transition: all 0.3s ease;
}

.address .location-item-new:hover {
    background: #e8f4f8;
    border-left-color: #228DBE;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.address .location-pin {
    width: 10px;
    height: 10px;
    background: #ED8E39;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.address .location-content h4 {
    font-size: 1.1rem;
    color: #ED8E39;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.address .location-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(237, 142, 57, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    order: 0;
    flex: 0.6;
    max-width: 450px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color:  #666666;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(237, 142, 57, 0.2);
    border-radius: 8px;
    /* color: var(--text-primary); */
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(237, 142, 57, 0.2),
                0 4px 12px rgba(237, 142, 57, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 0.6;
}

.contact-form button[type="submit"] {
    margin-top: 1rem;
    width: 100%;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(237, 142, 57, 0.4);
}

.contact-form button[type="submit"]:active {
    transform: translateY(-1px);
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 0, 0, 0.5);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: rgba(0, 255, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3b8ec4 0%, #b88a5c 100%);
    /* padding: 20px 0 0; */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(237, 142, 57, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(19, 141, 197, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
   display:flex;
    gap: 40px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 40px;
    position: relative;
    z-index: 1;
    background: rgb(243 243 242);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Section */
.footer-thank-you {
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.3), rgba(19, 141, 197, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-logo-section img {
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.footer-thank-you h2 {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-thank-you p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
}

/* Connect Section */
.footer-connect h3 {
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.connect-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 142, 57, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.connect-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(237, 142, 57, 0.5);
    box-shadow: 0 15px 40px rgba(237, 142, 57, 0.3);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.connect-item:hover .social-icon {
    transform: rotate(10deg) scale(1.1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Get in Touch Section */
.footer-touch h3 {
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.touch-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.touch-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.touch-icon {
    color: #ED8E39;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.touch-item a {
    color:  #ED8E39;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.touch-item a:hover {
    color: #ED8E39;
}

.brand-partner-inline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 15px;
            background: rgba(237, 142, 57, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(237, 142, 57, 0.2);
        }
.brand-label {
    color: rgba(248, 242, 242, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logo {
    height: 35px;
}

/* Our Locations Section */
.footer-locations {
    /* grid-column: 1 / -1; */
    /* padding-top: 2rem; */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* width: 700px; */
}

.footer-locations h3 {
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.location {
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
    align-items: center;
    max-width: 450px;
    padding-top: 40px;
}

.location .map-image-container {
    width: 100%;
    max-width: 450px;
    max-height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.location .map-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.location-item-new {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #138DC5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.location-item-new1 {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 3px solid #ED8E39;
    transition: all 0.3s ease;
    display: flex;
    width: 100%;
}
.location-content1 h4{
    font-size: 1.4rem;
    color: #ED8E39;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.location-item-new:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: #ED8E39;
    box-shadow: 0 10px 30px rgba(237, 142, 57, 0.2);
}

.location-pin {
    width: 12px;
    height: 12px;
    background: #ED8E39;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(237, 142, 57, 0.2);
    transition: all 0.3s ease;
}

.location-pin1 {
    width: 12px;
    height: 12px;
    background: #ED8E39;
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(237, 142, 57, 0.2);
    transition: all 0.3s ease;
}
.location-item-new:hover .location-pin {
    box-shadow: 0 0 0 6px rgba(237, 142, 57, 0.3);
    transform: scale(1.2);
}

.location-content h4 {
    color: #138DC5;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.location-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer Social Media and Brand Partners Combined Section */
.footer-social-brand-combined {
    background: linear-gradient(135deg, rgba(19, 141, 197, 0.08) 0%, rgba(237, 142, 57, 0.08) 100%);
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-brand-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-social-content {
    display: flex;
    align-items: center;
}

.footer-social-content .connect-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.footer-social-content .connect-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-content .connect-item:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(237, 142, 57, 0.3);
}

.footer-social-content .social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social-content .connect-item:hover .social-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(237, 142, 57, 0.3), rgba(19, 141, 197, 0.3));
    border-radius: 2px;
    flex-shrink: 0;
}

/* Brand Partners Content */
.brand-partners-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.brand-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.partner-logo-inline {
    max-width: 130px;
    height: auto;
    background: white;
    padding: 12px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo-inline:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(237, 142, 57, 0.3);
}

/* Accreditation Section */
.footer-accreditation {
    background: linear-gradient(135deg, #3b8ec4 0%, #b88a5c 100%);
    /* padding: 20px 5px; */
    border-top: 1px solid rgba(255, 255, 255, 0.2);

}

.accreditation-content h4 {
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accreditation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.accreditation-logos img {
    height: 50px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.accreditation-logos img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-container {
        grid-template-columns: 1fr;
    }

    .locations-list {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 768px) {
    .footer-main {
        padding: 0 1.5rem 2rem;
        flex-direction: column;
    }

    .footer-thank-you h2 {
        font-size: 32px;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-logos {
        gap: 1rem;
    }

    .accreditation-logos img {
        height: 40px;
    }

    .locations-list {
        grid-template-columns: 1fr;
    }

    /* Responsive styles for combined footer section */
    .footer-social-brand-combined {
        padding: 25px 15px;
    }

    .social-brand-container {
        flex-direction: column;
        gap: 2rem;
    }

    .vertical-divider {
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, rgba(237, 142, 57, 0.3), rgba(19, 141, 197, 0.3));
    }

    .footer-social-content .connect-grid {
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .footer-social-content .social-icon {
        width: 32px;
        height: 32px;
    }

    .footer-social-content .connect-item {
        padding: 10px;
    }

    .brand-partners-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .partner-logo-inline {
        max-width: 145px;
        padding: 10px 20px;
    }

    .brand-label {
        font-size: 0.85rem;
    }
    
}


.mobile{
  display: none;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 80vw;
    margin: 2rem auto;
    background: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 3rem;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-video {
    width: 100%;
    border-radius: 20px;
    margin: 2rem 0;
}

.modal-details {
    display: grid;
    gap: 2rem;
}

.modal-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-section p,
.modal-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-section ul {
    list-style-position: inside;
    margin-left: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methodology-timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-content {
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 100px 2rem 2rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #1a1a1a;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1.2rem 0;
        border-bottom: 1px solid #eee;
        display: block;
        text-align: center;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        color: #ed8e39;
        padding-left: 10px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span {
        background: #1a1a1a;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: #f5f5f5;
        border: none;
        border-radius: 8px;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }

    .nav-dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.9rem 1.5rem;
        border-left: none;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        display: block;
    }

    .dropdown-content a:hover {
        background: rgba(237, 142, 57, 0.15);
        color: #ed8e39;
        padding-left: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .garbha-award-section {
        flex-direction: column;
    }

    .garbha-award-image {
        width: 100%;
    }

    .garbha-award-image img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .modal-body {
        padding: 2rem 1rem;
    }

    .garbha-award-content h3 {
        font-size: 1.5rem;
    }

    /* Contact form responsive */
    .contact-content {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
        order:1;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }
}
.contact-flex-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
    padding-bottom: 20px;
}


@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    .contact-flex-card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 3rem; */
    align-items: stretch;
    flex-wrap: wrap;
    padding-bottom:20px;
}

   


    /* Contact form mobile */
    .contact-content {
        padding: 2rem 1.5rem;
    }

    .contact-flex-card {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-flex-card > * {
        min-width: 100%;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        order: 0;
    }

    .address {
        padding: 1.5rem;
    }

    .address .footer-locations h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .address .map-container {
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }

    /* Location section mobile */
    .location {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .location .map-image-container {
        max-width: 100%;
    }

    .location-item-new1 {
        max-width: 100%;
    }

    .location-content1 h4 {
        font-size: 1.rem;
    }

    .address .locations-grid {
        flex-direction: column;
    }

    .address .map-image-container {
        max-width: 100%;
        min-width: auto;
    }

    .address .location-item-new {
        flex-direction: row;
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }

    .address .location-content h4 {
        font-size: 0.85rem;
    }

    .address .location-content p {
        font-size: 0.75rem;
    }

    .address .location-pin {
        width: 8px;
        height: 8px;
        margin-top: 5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .contact-form button[type="submit"] {
        padding: 1rem;
        font-size: 1rem;
    }

}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}
/* Journey Container Styles */
        .journey-container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px 40px;
            position: relative;
        }

        .journey-title {
            font-size: 45px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .road-container {
            position: relative;
            height: 400px;
            margin: 60px 50px;
        }

        .road {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 80px;
            transform: translateY(-50%);
            background: linear-gradient(90deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%);
            border-radius: 60px;
            box-shadow: 
                0 10px 40px rgba(237, 142, 57, 0.3),
                0 20px 60px rgba(19, 141, 197, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .road::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 6px;
            background: repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.8) 0px,
                rgba(255, 255, 255, 0.8) 30px,
                transparent 30px,
                transparent 60px
            );
            transform: translateY(-50%);
            animation: roadMove 3s linear infinite;
        }

        @keyframes roadMove {
            0% { transform: translateY(-50%) translateX(0); }
            100% { transform: translateY(-50%) translateX(60px); }
        }

        .milestone {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .milestone:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .milestone-marker {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border: 4px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .milestone-marker::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .milestone-icon {
            font-size: 32px;
            color: white;
        }

        .milestone-content {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 20, 30, 0.95);
            border: 1px solid rgba(237, 142, 57, 0.5);
            border-radius: 12px;
            padding: 15px 20px;
            min-width: 180px;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .milestone-year {
            font-size: 14px;
            color: var(--primary-orange);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .milestone-title {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .milestone-desc {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        /* Milestone positioning */
        .milestone:nth-child(1) { left: 5%; }
        .milestone:nth-child(2) { left: 21%; }
        .milestone:nth-child(3) { left: 37%; }
        .milestone:nth-child(4) { left: 53%; }
        .milestone:nth-child(5) { left: 69%; }
        .milestone:nth-child(6) { left: 85%; }

        .milestone:nth-child(even) .milestone-content {
            bottom: auto;
            top: 120px;
        }

        .tech-stack-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            padding: 25px;
            background: rgba(30, 30, 40, 0.5);
            border-radius: 15px;
            border: 1px solid rgba(237, 142, 57, 0.3);
            flex-wrap: wrap;
            gap: 15px;
        }

        .tech-badge {
            background: linear-gradient(135deg, rgba(237, 142, 57, 0.2), rgba(19, 141, 197, 0.2));
            border: 1px solid rgba(237, 142, 57, 0.5);
            border-radius: 25px;
            padding: 8px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(237, 142, 57, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .road-container {
                height: auto;
                min-height: 1200px;
                margin: 60px 20px;
                display: flex;
                justify-content: center;
            }

            .road {
                position: absolute;
                top: 0;
                left: 50%;
                right: auto;
                bottom: 0;
                width: 80px;
                height: 100%;
                transform: translateX(-50%);
                background: linear-gradient(180deg,
                    var(--primary-orange) 0%,
                    var(--secondary-blue) 50%,
                    var(--primary-blue) 100%);
                border-radius: 60px;
            }

            .road::before {
                top: 0;
                left: 50%;
                right: auto;
                bottom: 0;
                width: 6px;
                height: 100%;
                background: repeating-linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.8) 0px,
                    rgba(255, 255, 255, 0.8) 30px,
                    transparent 30px,
                    transparent 60px
                );
                transform: translateX(-50%);
                animation: roadMoveVertical 3s linear infinite;
            }

            @keyframes roadMoveVertical {
                0% { transform: translateX(-50%) translateY(0); }
                100% { transform: translateX(-50%) translateY(60px); }
            }

            .milestone {
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                width: 100%;
                max-width: 500px;
            }

            .milestone:nth-child(2) { top: 50px; }
            .milestone:nth-child(3) { top: 230px; }
            .milestone:nth-child(4) { top: 410px; }
            .milestone:nth-child(5) { top: 590px; }
            .milestone:nth-child(6) { top: 770px; }
            .milestone:nth-child(7) { top: 950px; }

            .milestone-marker {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                z-index: 5;
            }

            .milestone-content {
                position: relative !important;
                bottom: auto !important;
                top: auto !important;
                left: auto !important;
                transform: none !important;
                margin-left: calc(50% + 60px);
                width: calc(50% - 80px);
                min-width: 180px;
            }

            .milestone:nth-child(even) .milestone-content {
                margin-left: 0;
                margin-right: calc(50% + 60px);
                bottom: auto !important;
                top: auto !important;
            }

            .journey-title {
                font-size: 2rem;
            }

            .tech-stack-row {
                flex-direction: column;
                align-items: center;
            }
            .desktop{
              display: none;
            }
            .mobile{
              display: inline;
            }
        }

        @media (max-width: 480px) {
            .journey-container {
                padding: 20px;
            }

            .journey-title {
                font-size: 1.5rem;
            }

            .road-container {
                margin: 40px 10px;
                min-height: 1400px;
            }

            .road {
                width: 60px;
            }

            .milestone-marker {
                width: 60px;
                height: 60px;
            }

            .milestone-icon {
                font-size: 24px;
            }

            .milestone-content {
                min-width: 140px;
                padding: 10px 15px;
                font-size: 0.85rem;
                margin-left: calc(50% + 45px);
                width: calc(50% - 55px);
            }

            .milestone:nth-child(even) .milestone-content {
                margin-left: 0;
                margin-right: calc(50% + 45px);
            }

            .milestone-year {
                font-size: 12px;
            }

            .milestone-title {
                font-size: 11px;
            }

            .milestone-desc {
                font-size: 10px;
            }
        }


        .aispry-journey-container {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            padding: 40px;
            position: relative;
        }
        .aispry-journey-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .aispry-road-container {
            position: relative;
            width: 120px;
            height: 600px;
            margin: 60px auto;
        }
        .aispry-road {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 60px;
            height: 770px;
            transform: translateX(-50%);
            background: linear-gradient(180deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%);
            border-radius: 60px;
            box-shadow: 
                0 10px 40px rgba(237, 142, 57, 0.3),
                0 20px 60px rgba(19, 141, 197, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        .aispry-road::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 6px;
            height: 100%;
            top: 0;
            transform: translateX(-50%);
            background: repeating-linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.8) 0px,
                rgba(255, 255, 255, 0.8) 30px,
                transparent 30px,
                transparent 60px
            );
            animation: aispry-roadMoveVertical 3s linear infinite;
        }
        @keyframes aispry-roadMoveVertical {
            0% { transform: translateX(-50%) translateY(0); }
            100% { transform: translateX(-50%) translateY(60px); }
        }
        .aispry-milestone {
            left: 50%;
            position: absolute;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .aispry-milestone:hover {
            transform: translateX(-50%) scale(1.1);
        }
        /* Milestone positioning - vertically */
        .aispry-milestone:nth-child(2) { top: 0%; }
        .aispry-milestone:nth-child(3) { top: 15%; }
        .aispry-milestone:nth-child(4) { top: 30%; }
        .aispry-milestone:nth-child(5) { top: 45%; }
        .aispry-milestone:nth-child(6) { top: 60%; }
        .aispry-milestone:nth-child(7) { top: 75%; }
        .aispry-milestone-marker {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border: 4px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        .aispry-milestone-marker::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: aispry-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        @keyframes aispry-ping {
            75%, 100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        .aispry-milestone-icon {
            font-size: 32px;
            color: white;
        }
        .aispry-milestone-content {
            position: absolute;
            left: 130px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(20, 20, 30, 0.95);
            border: 1px solid rgba(237, 142, 57, 0.5);
            border-radius: 12px;
            padding: 15px 20px;
            min-width: 180px;
            text-align: left;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .aispry-milestone:nth-child(even) .aispry-milestone-content {
            left: auto;
            right: 130px;
            text-align: right;
        }
        .aispry-milestone-year {
            font-size: 14px;
            color: var(--primary-orange);
            font-weight: 700;
            margin-bottom: 5px;
        }
        .aispry-milestone-title {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }
        .aispry-milestone-desc {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }
        /* Responsive Design */
        @media (max-width: 968px) {
            .aispry-road-container {
                height: 800px;
            }
            .aispry-milestone {
                margin: 40px 0;
            }
            .aispry-journey-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .aispry-journey-container {
                padding: 20px;
            }
            .aispry-journey-title {
                font-size: 1.5rem;
            }
            .aispry-milestone-marker {
                width: 60px;
                height: 60px;
            }
            .aispry-milestone-icon {
                font-size: 24px;
            }
            .aispry-milestone-content {
                min-width: 120px;
                padding: 10px 12px;
                left: 90px;
            }
            .aispry-milestone:nth-child(even) .aispry-milestone-content {
                right: 90px;
            }
        }
        .video-set{
            width:100%;
            border-radius:4px;
        }
        .project-details-page {
            min-height: 100vh;
            /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); */
            background-color: #f3f3f2;
            padding-top: 100px;
        }

        .project-details-container {
            margin: 40px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 3px solid rgba(237, 142, 57, 0.2);
            border-radius: 20px;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #ED8E39;
            text-decoration: none;
            font-size: 16px;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .back-button:hover {
            transform: translateX(-5px);
        }

        .project-header {
            margin:5px;
        }
 /* Styles moved to .project-left-column .project-header */
        .project-category-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ED8E39, #f4a261);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 20px;
            font-weight: 800;
            color: rgb(6, 6, 6);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .project-description {
            font-size: 13px;
            color: #666666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .project-metrics-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .metric-badge {
            background: rgba(19, 141, 197, 0.2);
            border: 1px solid #138DC5;
            color: #138DC5;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .project-video-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(237, 142, 57, 0.2);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .project-video-section h2 {
            font-size: 20px;
            color: #248dbc;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .video-container {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .video-container video,
        .video-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Two-column layout wrapper */
        .project-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 0;
        }

        .project-left-column {
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .project-left-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .project-left-column .project-header {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(237, 142, 57, 0.2);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(10px);
            margin-bottom: 0;
        }

        .project-left-column #videoSection {
            width: 100%;
        }

        .project-left-column .video-container {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .project-left-column video,
        .project-left-column img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 15px;
            display: block;
        }

        .project-right-column {
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            max-height: calc(100vh - 200px);
            padding-right: 10px;
        }

        .project-right-column::-webkit-scrollbar {
            width: 8px;
        }

        .project-right-column::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .project-right-column::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #ED8E39, #138DC5);
            border-radius: 10px;
        }

        .project-details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .detail-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(237, 142, 57, 0.2);
            border-radius: 12px;
            padding: 15px;
            backdrop-filter: blur(10px);
        }

        /* Mobile responsive - stack vertically */
        @media (max-width: 1024px) {
            .project-content-wrapper {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-left-column {
                position: relative;
            }

            .project-left-content {
                gap: 15px;
            }

            .project-right-column {
                max-height: none;
                overflow-y: visible;
                padding-right: 0;
            }

            .project-details-container {
                margin: 20px;
                padding: 15px;
            }
        }

        .detail-section h2 {
            font-size: 18px;
            color: #ED8E39;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .detail-section p {
            font-size: 13px;
            color: #666666;
            line-height: 1.5;
        }

        .technologies-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }

        .tech-badge {
            background: linear-gradient(135deg, #138DC5, #0d6b94);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .project-title {
                font-size: 28px;
            }

            .project-header,
            .project-video-section,
            .detail-section {
                padding: 20px;
            }

            .detail-section h2 {
                font-size: 20px;
            }

            .detail-section p {
                font-size: 13px;
            }
        }

/* Research Papers Section - Slide Content */
.slide-content {
    /* background: rgb(0 0 0 / 15%); */
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(237, 142, 57, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(19, 141, 197, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.slide-content > * {
    position: relative;
    z-index: 1;
}

/* Research Papers Grid */
.research-papers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 25px;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Research Paper Card */
.research-paper-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.research-paper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgb(42 40 40 / 80%), rgba(19, 141, 197, 0.05)); */
    background: rgb(0 0 0 / 15%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.research-paper-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.research-paper-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(237, 142, 57, 0.3),
        0 0 40px rgba(19, 141, 197, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(237, 142, 57, 0.5);
}

.research-paper-card:hover::before {
    opacity: 1;
}

.research-paper-card:hover::after {
    left: 100%;
}

/* Paper Icon */
.paper-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.2), rgba(19, 141, 197, 0.2));
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.research-paper-card:hover .paper-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.4), rgba(19, 141, 197, 0.4));
    box-shadow: 0 10px 30px rgba(237, 142, 57, 0.3);
}

/* Paper Title */
.research-paper-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.research-paper-card:hover h3 {
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Paper Badge */
.paper-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 20px;
    align-self: flex-start;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(237, 142, 57, 0.3);
}

.research-paper-card:hover .paper-badge {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(237, 142, 57, 0.5);
    background: linear-gradient(135deg, #138DC5, #ED8E39);
}

/* Staggered Animation for Cards */
.research-paper-card:nth-child(1) { animation-delay: 0.1s; }
.research-paper-card:nth-child(2) { animation-delay: 0.2s; }
.research-paper-card:nth-child(3) { animation-delay: 0.3s; }
.research-paper-card:nth-child(4) { animation-delay: 0.4s; }
.research-paper-card:nth-child(5) { animation-delay: 0.5s; }
.research-paper-card:nth-child(6) { animation-delay: 0.6s; }
.research-paper-card:nth-child(7) { animation-delay: 0.1s; }
.research-paper-card:nth-child(8) { animation-delay: 0.2s; }
.research-paper-card:nth-child(9) { animation-delay: 0.3s; }
.research-paper-card:nth-child(10) { animation-delay: 0.4s; }
.research-paper-card:nth-child(11) { animation-delay: 0.5s; }
.research-paper-card:nth-child(12) { animation-delay: 0.6s; }

.research-paper-card {
    animation: fadeInUp 0.6s ease-out both;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .research-papers-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 60px 0;
        margin: 20px;
        border-radius: 20px;
    }

    .research-papers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .research-paper-card {
        padding: 18px;
    }

    .paper-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .research-paper-card h3 {
        font-size: 0.95rem;
    }

    .slide-content h2 {
        font-size: 2rem !important;
        padding: 0 20px;
    }

    .slide-content p {
        font-size: 1rem !important;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .research-paper-card {
        padding: 16px;
    }

    .paper-icon {
        font-size: 1.6rem;
        width: 42px;
        height: 42px;
    }

    .research-paper-card h3 {
        font-size: 0.9rem;
    }

    .paper-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}


/* London Business School Section - Updated to match website theme */
.lbs-wrap {
    width: 100%;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.1), rgba(19, 141, 197, 0.1));
    padding: 20px 20px;
    box-sizing: border-box;
}

/* Header */
.lbs-head {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

.lbs-title {
    margin: 0 0 20px;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lbs-lead {
    margin: 0;
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Case studies image grid - Centered */
.cases {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
    padding: 0 20px;
}

/* Cards */
.case {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 142, 57, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
}

.case:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 142, 57, 0.6);
    box-shadow: 0 20px 60px rgba(237, 142, 57, 0.3),
                0 0 40px rgba(19, 141, 197, 0.2);
}

.case img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    background: rgba(10, 10, 10, 0.5);
    transition: transform 0.4s ease;
}

.case:hover img {
    transform: scale(1.05);
}

/* Captions */
.case figcaption {
    color: #666666;;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 14px 16px;
    border-top: 1px solid rgba(237, 142, 57, 0.2);
    text-align: center;
}

/* Responsive Design for LBS Section */
@media (max-width: 768px) {
    .lbs-wrap {
        padding: 60px 15px;
    }

    .lbs-title {
        font-size: 2rem;
    }

    .lbs-lead {
        font-size: 1rem;
    }

    .cases {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .case {
        max-width: 100%;
    }

    .case img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .lbs-title {
        font-size: 1.75rem;
    }

    .case img {
        height: 180px;
    }

    .case figcaption {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Clients & Partners Section - Updated to match website theme */
.cp-wrap {
    width: 100%;
    background: linear-gradient(135deg, rgba(237, 142, 57, 0.1), rgba(19, 141, 197, 0.1));
    padding: 20px 20px;
    box-sizing: border-box;
}

/* Header */
.cp-head {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

.cp-title {
    margin: 0 0 20px;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #E98632 0%, #C2945A 35%, #6C8C87 70%, #228DBE 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-lead {
    margin: 0;
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Logo Grid */
.logos {
    max-width: 1400px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.logo-card {
    background: rgb(0 0 0 / 15%);
    border: 1px solid rgba(237, 142, 57, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 142, 57, 0.6);
    box-shadow: 0 20px 60px rgba(237, 142, 57, 0.3),
                0 0 40px rgba(19, 141, 197, 0.2);
}

.logo-box {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-type {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design for Clients Section */
@media (max-width: 1200px) {
    .logos {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .cp-wrap {
        padding: 60px 15px;
    }

    .cp-title {
        font-size: 2rem;
    }

    .cp-lead {
        font-size: 1rem;
    }

    .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .logo-card {
        padding: 16px;
        min-height: 120px;
    }

    .logo-box {
        height: 70px;
    }

    .project-type {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cp-title {
        font-size: 1.75rem;
    }

    .logos {
        grid-template-columns: 1fr;
    }

    .logo-card {
        padding: 14px;
    }

    .logo-box {
        height: 65px;
    }
}

/* remove from here  */

:root{
            --royal:#021945;
            --brand-blue:#127dc2;
            --brand-orange:#f48220;
        }

        /* Full-viewport wrapper (no "slide" look) */
        .crisp-viewport{
            min-height: calc(100vh - var(--header-h) - var(--footer-h));
            display: grid;
            align-items: center;
            padding: 0;
        }
        .crisp-wrap{
            width: 100%;
            background: #eeece7;
            color: #fff; /* force white by default */
            /* padding: clamp(16px,3vw,40px); */
            box-sizing: border-box;
        }

        /* Header */
        .crisp-head{
            width: min(92vw, var(--maxw));
            margin-inline:auto;
            text-align:center;
            margin-bottom: 16px;
        }
        .crisp-title{
            margin: 0 0 12px;
            font-size: 28px;                 /* +2pt as requested */
            font-weight: 800;
            letter-spacing: .2px;
            /* Brand gradient on title only */
            background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-blue) 100%);
            -webkit-background-clip: text; background-clip: text;
            color: transparent; -webkit-text-fill-color: transparent;
        }
        .crisp-lead{
            margin: 0;
            font-size: 17px;
            line-height: 1.6;
            color: #fff;                      /* keep white */
            opacity: .95;
        }

        /* ====== CRISP-ML(Q) — Enhanced Interactive Flow Design ====== */
        .methodology-container{
            width: min(92vw, var(--maxw));
            margin: 20px auto 0;
            position: relative;
            /* background: linear-gradient(135deg,
                rgba(237, 142, 57, 0.03) 0%,
                rgba(19, 141, 197, 0.03) 50%,
                rgba(237, 142, 57, 0.03) 100%); */
                background: linear-gradient(135deg, rgba(237, 142, 57, 0.1), rgba(19, 141, 197, 0.1));
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        .methodology-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.98) 100%);
                background: linear-gradient(135deg, rgba(237, 142, 57, 0.1), rgba(19, 141, 197, 0.1));
            border-radius: 20px;
            z-index: 0;
        }
        .methodology-container > * {
            position: relative;
            z-index: 1;
        }
        .methodology-header{
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease;
        }
        @keyframes fadeInDown{
            from{ opacity: 0; transform: translateY(-30px); }
            to  { opacity: 1; transform: translateY(0); }
        }
        .methodology-title{
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #ED8E39, #138DC5);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }
        .methodology-subtitle{
            color: #666666;
            font-size: 1.2rem;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }
        .methodology-subtitle::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ED8E39, #138DC5);
            border-radius: 2px;
        }

        /* Progress Bar Styles */
        .methodology-progress-bar{
            margin-top: 25px;
            width: 100%;
            max-width: 500px;
            height: 8px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }

        .methodology-progress-fill{
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ED8E39, #138DC5);
            border-radius: 10px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .methodology-progress-fill::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer{
            0%{ transform: translateX(-100%); }
            100%{ transform: translateX(100%); }
        }

        .methodology-progress-text{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.7rem;
            font-weight: 600;
            color: #666;
            white-space: nowrap;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        /* Scrolling area for steps (matches "extra-field" behaviour) */
        .extra-field{
            overflow: visible;
            padding: 0 4px;
        }

        /* Grid of steps */
        .methodology-steps{
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .methodology-step{
            position: relative;
            padding: 20px 15px 20px 15px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInStep 0.6s ease forwards;
            opacity: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(19, 141, 197, 0.2);
        }

        .methodology-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            padding: 2px;
            background: linear-gradient(135deg, #138DC5, #ED8E39);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .methodology-step:hover::before {
            opacity: 1;
        }
        .methodology-step:nth-child(1){ animation-delay: .1s; }
        .methodology-step:nth-child(2){ animation-delay: .15s; }
        .methodology-step:nth-child(3){ animation-delay: .2s; }
        .methodology-step:nth-child(4){ animation-delay: .25s; }
        .methodology-step:nth-child(5){ animation-delay: .3s; }
        .methodology-step:nth-child(6){ animation-delay: .35s; }
        .methodology-step:nth-child(7){ animation-delay: .4s; }
        .methodology-step:nth-child(8){ animation-delay: .45s; }
        .methodology-step:nth-child(9){ animation-delay: .5s; }
        .methodology-step:nth-child(10){ animation-delay: .55s; }

        @keyframes fadeInStep{
            from{ opacity: 0; transform: translateY(30px) scale(0.95); }
            to  { opacity: 1; transform: translateY(0) scale(1); }
        }
        .methodology-step:hover{
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
            z-index: 10;
        }

        /* Active step state for click interactions */
        .methodology-step.active-step{
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .methodology-step.active-step .step-number{
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .methodology-step.active-step .step-title{
            color: #fff;
        }

        .methodology-step.active-step .step-description{
            color: #fff;
        }

        /* In-view pulse effect */
        .methodology-step.in-view{
            animation: none;
        }

        @keyframes pulseGlow{
            0%, 100%{
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            }
            50%{
                box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            }
        }

        /* Accessibility: Focus styles */
        .methodology-step:focus{
            outline: 3px solid rgba(237,142,57,0.5);
            outline-offset: 3px;
        }

        .methodology-step:focus:not(:focus-visible){
            outline: none;
        }

        .step-number{
            position: absolute;
            top: -12px;
            left: 15px;
            transform: none;
            background: linear-gradient(135deg, #138DC5, #ED8E39);
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            z-index: 5;
        }

        .methodology-step:hover .step-number{
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .step-title{
            color: #ED8E39;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
            margin-top: 5px;
            line-height: 1.3;
        }

        .methodology-step:hover .step-title{
            color: #138DC5;
        }

        .step-description{
            color: #666;
            font-size: .8rem;
            line-height: 1.5;
            margin: 0;
        }

        .methodology-step:hover .step-description{
            color: #444;
        }

        /* Final "10" block (Monitoring & Maintenance) */
        .size{
            margin: 10px 0 0;
            background: rgba(255, 255, 255);
            border: 1px solid rgba(19,141,197,0.3);
            border-radius: 12px;
            padding: 20px;
            position: relative;
            transition: all .3s ease;
        }
        .size:hover{
            background: rgba(255,255,255,0.95);
            transform: translateY(-3px);
            border-color: rgba(19,141,197,0.8);
            box-shadow: 0 10px 30px rgba(237,142,57,0.4);
        }
        .size .step-number{
            top: -12px; left: 15px; width: 25px; height: 25px; font-size: .85rem;
        }
        .size .step-title{
            color: #ED8E39; font-weight: 700; margin-bottom: 8px; font-size: .95rem;
        }
        .size .step-description{
            color: #666666; font-size: .85rem; line-height: 1.4;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce){
            .methodology-step, .methodology-step *{ transition: none !important; }
            .methodology-step{ animation: none !important; }
        }

        /* Enforce “white except title” in both standalone & onepage contexts */
        .onepage-deck .deck-content .crisp-wrap,
        .crisp-wrap { color:#fff !important; }
        .onepage-deck .deck-content .crisp-title,
        .crisp-wrap .crisp-title{
            background: linear-gradient(135deg, #F48220 0%, #127DC2 100%) !important;
            -webkit-background-clip: text !important; background-clip: text !important;
            color: transparent !important; -webkit-text-fill-color: transparent !important;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px){
            .methodology-steps{
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px){
            .methodology-container{
                padding: 40px 20px;
            }
            .methodology-title{
                font-size: 36px;
            }
            .methodology-subtitle{
                font-size: 1rem;
            }
            .methodology-steps{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .methodology-step{
                min-height: 100px;
            }
            .step-title {
                font-size: 0.9rem;
            }
            .step-description {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 600px){
            .methodology-container{
                padding: 30px 15px;
            }
            .methodology-header{
                margin-bottom: 35px;
            }
            .methodology-title{
                font-size: 28px;
            }
            .methodology-subtitle{
                font-size: 0.9rem;
            }
            .methodology-steps{
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .methodology-step{
                min-height: 90px;
            }
            .step-title{
                font-size: 0.85rem;
            }
            .step-description{
                font-size: 0.7rem;
            }
        }
        /* ===== PATCH: CRISP-ML(Q) ===== */

        /* Step titles are now WHITE on colored backgrounds - no override needed */


 .locations-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .location-item-new {
            display: flex;
            gap: 12px;
            padding: 12px;
            background: rgba(19, 141, 197, 0.05);
            border-radius: 12px;
            border-left: 4px solid #138DC5;
            transition: all 0.3s ease;
        }

        .location-item-new:hover {
            background: rgba(19, 141, 197, 0.1);
            transform: translateX(5px);
        }

        .location-pin {
            width: 10px;
            height: 10px;
            background: #ED8E39;
            border-radius: 50%;
            margin-top: 5px;
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(237, 142, 57, 0.2);
        }

        .location-content h4 {
            color: #138DC5;
            font-size: 0.75rem;
            font-weight: 700;
            margin: 0 0 4px 0;
        }

        .location-content p {
            color: #333;
            font-size: 0.6rem;
            line-height: 1.2;
            margin: 0;
        }

.brand-partner-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgb(243 243 242);
    border-radius: 12px;
    border: 1px solid rgba(237, 142, 57, 0.2);
}
        
.partner-logo {
    height: 35px;
}
.brand-label {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-carousel{
    /* padding: 30px; */
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}


/* Responsive adjustments for carousel SVG images on desktop */
@media (min-width: 769px) and (max-width: 1280px) {
    .image-carousel {
        /* padding: 20px 40px; */
        object-fit: contain !important;
    }

    /* .carousel-item:has(.image-carousel) {
        display: flex;
        align-items: center;
        justify-content: center;
    } */
}

@media (min-width: 1281px) {
    .image-carousel {
        /* padding: 40px 80px;
        max-width: 1400px; */
        margin: 0 auto;
    }

    /* .carousel-item:has(.image-carousel) {
        display: flex;
        align-items: center;
        justify-content: center;
    } */
}
.text-style{
text-decoration: none;
color: #f1585e;
}

.container-footer-card{
    display:flex;
    justify-content: center;
    padding:9px 20px;
}
.form-style{
    font-size: 1.8rem;
    margin-bottom: 4px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.garbha-link{
   font-size: 20px;
   margin-top:20px;
    margin-bottom: 4px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}
.below-heading{
    font-size:20px;
}
.locations-map{
    width: 100%;
    height: 400px;;
}
.header-section {
    margin: 15px;
}
.brand-partner-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(237, 142, 57, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(237, 142, 57, 0.2);
}
/* Form success/error messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.form-message-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.form-message-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ED8E39, #138DC5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(237, 142, 57, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(237, 142, 57, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Responsive adjustments for scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
