/*
Theme Name: Swanhans New
Description: Dark-themed consulting website template
Version: 1.1
*/

/* Montserrat Font Faces */
@font-face {
    font-family: 'montserratBook';
    src: url("fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'montserratMedium';
    src: url("fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: 'montserratHeavy';
    src: url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
}

/* CSS Variables for Brand Colors & Fonts */
:root {
    /* Color Variables */
    --black: #000000;
    --green: #139980;
    --yellow: rgb(245, 182, 12);
    --red: rgb(255, 0, 0);
    --white: #ffffff;
    
    /* Original colors kept for compatibility */
    --gold: #F0B603;
    --gold-light: #F8D568;
    --gold-dark: #D49C00;
    --teal: #20876F;
    --pink: #E93E5F;
    --dark-bg: #0A0A0A;
    --dark-card: #151515;
    --dark-text: #E0E0E0;
    --light-text: #FFFFFF;
    --accent-glow: rgba(240, 182, 3, 0.15);
    
    /* Font Variables */
    --fontRegular: 'montserratBook', sans-serif;
    --fontMedium: 'montserratMedium', sans-serif;
    --fontHeavy: 'montserratHeavy', sans-serif;

    /* Missing variables needed for case studies */
    --accent: var(--green);
    --accent-hover: #0d7a65;
    --text-primary: var(--white);
    --text-secondary: #E0E0E0;
    --text-muted: #94a3b8;
    --border: #334155;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --card-bg: var(--dark-card);
    --card-hover: #1a1a1a;
    
    /* Additional semantic variables for consistency */
    --primary: var(--dark-bg);
    --secondary: #151515;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fontRegular);
}

body {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 40px;
    width: 60px;
    height: 4px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
    font-family: var(--fontMedium);
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(240, 182, 3, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 182, 3, 0.6);
}

.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.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(240, 182, 3, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    width: 95%;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.custom-logo {
    display: flex;
    align-items: center;
    height: auto;
    width: 90px;
    padding: 5px 5px;

    position: relative;
    /*padding: 10px 16px;*/
    border-radius: 10px;
    /*background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.14),
    rgba(255,255,255,0)
);*/
}

.logo-container {
    background: rgba(0, 0, 0, 0.6);
    /*padding: 8px 14px;*/
    border-radius: 8px;
    display: inline-flex;
    align-items: center;

}
.logo-container::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F0B603, #20876F);
    /*background: linear-gradient(
        to right,
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0)
    );*/
    border-radius: 2px;
}
.custom-logo img {
    height: 32px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.custom-logo:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    font-family: var(--fontHeavy);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--fontMedium);
    font-size: 0.95rem;
}

.nav-menu a:hover, .current-menu-item a {
    color: var(--gold);
}

.nav-menu a::after, .current-menu-item a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .current-menu-item a:after {
    width: 100%;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-card);
    width: 200px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 182, 3, 0.1);
}

.nav-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.submenu li:hover {
    background-color: rgba(240, 182, 3, 0.1);
}

.mobile-toggle {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gold);
    background: none;
    border: none;
    padding: 5px;
    font-family: var(--fontMedium);
}

/* Hero Section - Reduced spacing */
/*.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 80px; 
    box-sizing: border-box; 
}*/

.hero {
  position: relative;
  height: auto;              /* KEY */
  min-height: unset;         /* KEY */
  overflow: visible;         /* KEY */
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  box-sizing: border-box;
}

.hero-slider {
    position: relative;
    width: 100%;
    flex: none;
    height: auto;
}

.hero-slider {
  align-self: stretch;      /* match left column height */
  display: flex;
  align-items: center;      /* vertically center slide content */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 100%;*/
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px; /* Content padding from top of slider */
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    margin-top: 0;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 3rem; /* Slightly reduced to prevent cutting */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #4361ee;
    color: white;
}

.btn-primary:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.slider-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px 0;
    flex-shrink: 0;
    background: transparent;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container::after{width: 93%;}
    .hero {
        min-height: 250px;
        height: 400px;
        padding-top: 70px; /* Adjust for mobile header */
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Distribute space evenly */
    }
    
    .slide {
        padding-top: 30px; /* Reduced padding for mobile */
         flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically */
    }
    
    .slide-content {
        transform: none;
        margin: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .slider-nav {
        flex-shrink: 0;
        padding: 15px 0;
        margin-top: auto;
    }

    .slide-title {
        font-size: 2.2rem; /* Further reduced for mobile */
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .slider-nav {
        padding: 15px 0;
    }
    
    .slider-dots {
        gap: 12px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding-top: 60px; /* Further adjust for small mobile */
    }
    
    .slide {
        padding-top: 20px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slider-nav {
        padding: 12px 0;
    }
    
    .slider-dots {
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero {
        padding-top: 50px;
    }
    
    .slide {
        padding-top: 15px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slider-nav {
        padding: 10px 0;
    }
}

/* Case Studies - Reduced spacing */
.case-studies {
    padding: 80px 0;
    background-color: var(--dark-card);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--accent-glow) 50%, transparent 100%);
    opacity: 0.1;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-card {
    background-color: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 182, 3, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover::before {
    opacity: 1;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 182, 3, 0.2);
}

.case-img {
    height: 180px;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    position: relative;
    overflow: hidden;
}

.case-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(240, 182, 3, 0.3), rgba(32, 135, 111, 0.3));
}

.case-content {
    padding: 20px;
    position: relative;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.case-tag {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--fontMedium);
}

/* Mission Vision - Reduced spacing */
.mission-vision {
    padding: 80px 0;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    padding: 35px;
    background: linear-gradient(135deg, var(--dark-card), #1a1a1a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 182, 3, 0.1);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(240, 182, 3, 0.1);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.mv-card p {
    font-family: var(--fontRegular);
}

/* Founders Note - Reduced spacing */
.founders-note {
    padding: 80px 0;
    background-color: var(--dark-card);
    position: relative;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    /*align-items: center;*/
}

.founder-img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    position: relative;
}


.founder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    background: linear-gradient(135deg, rgba(240, 182, 3, 0.1), transparent);
    z-index: 1;
}

.founder-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    object-fit: cover;
    object-position: top;
}

.founder-img:hover img {
    transform: scale(1.05);
}

.founder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.founder-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: var(--fontMedium);
}

.founder-content p {
    font-family: var(--fontRegular);
}

/* Testimonials - Reduced spacing */
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 35px;
    background: linear-gradient(135deg, var(--dark-card), #1a1a1a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 182, 3, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 18px;
    position: relative;
    font-family: var(--fontRegular);
}

.testimonial-text::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--gold);
    position: absolute;
    top: -18px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: var(--light-text);
    margin-bottom: 4px;
    font-family: var(--fontMedium);
}

.author-info p {
    color: var(--gold);
    font-size: 0.85rem;
    font-family: var(--fontRegular);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}


/* Clients - Reduced spacing */
.clients {
    padding: 60px 0;
    position: relative;
}

.client-scroll {
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex: 0 0 180px;
    height: 90px;
    margin: 0 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    border: 1px solid rgba(240, 182, 3, 0.1);
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
}

.client-logo:hover {
    background: linear-gradient(135deg, rgba(240, 182, 3, 0.1), rgba(240, 182, 3, 0.05));
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer - Reduced spacing */
footer {
    background: linear-gradient(135deg, #080808, #0a0a0a);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(240, 182, 3, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--light-text);
    margin-bottom: 16px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    font-family: var(--fontHeavy);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-family: var(--fontRegular);
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 182, 3, 0.2);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 182, 3, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--fontRegular);
}

/* ===== TIMELINE SECTION ===== */
.journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(240, 182, 3, 0.1) 0%, transparent 50%);
}

.timeline-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--fontHeavy);
}

.timeline-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F0B603, #20876F);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #F0B603, #20876F, #E93E5F);
    border-radius: 2px;
}

.timeline-item {
    padding: 16px 32px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 182, 3, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 182, 3, 0.1);
    border-color: rgba(240, 182, 3, 0.4);
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F0B603, #D49C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(240, 182, 3, 0.4);
    z-index: 2;
    font-family: var(--fontHeavy);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -50px;
}

.timeline-content h3 {
    color: #F0B603;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--fontHeavy);
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: var(--fontRegular);
}

.timeline-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #F0B603;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(240, 182, 3, 0.2), 0 0 20px rgba(240, 182, 3, 0.4);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -9px;
}

/* Achievement Counter */
.achievement-counter {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.counter-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(240, 182, 3, 0.2);
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #F0B603, #20876F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    font-family: var(--fontHeavy);
}

.counter-label {
    color: #e0e0e0;
    font-size: 1rem;
    font-family: var(--fontMedium);
}

/* ========== RESPONSIVE STYLES ========== */

/* Desktop Large */
@media (min-width: 1200px) {
    .custom-logo img {
        height: 36px;
        max-width: 200px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .custom-logo img {
        height: 34px;
        max-width: 190px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
    .custom-logo img {
        height: 32px;
        max-width: 170px;
    }
}




/* Mobile - MAJOR LAYOUT CHANGES */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: var(--dark-card);
        flex-direction: column;
        padding: 40px 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(240, 182, 3, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 12px 0;
        text-align: center;
    }
    
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        margin-top: 8px;
        display: none;
    }
    
    .nav-menu li:hover .submenu {
        display: block;
    }
    
    /* Mobile Layout Reordering - Case Studies FIRST, Hero SECOND */
    main {
        display: flex;
        flex-direction: column;
    }
    
    /* Fix case studies touching header */
    .case-studies {
        order: 1;
        padding-top: 120px; /* Increased from 100px to create space below header */
        padding-bottom: 60px;
    }
    
    /* Reduce hero top padding on mobile */
    .hero {
        order: 2;
        min-height: 60vh;
        padding-top: 40px; /* Reduced from 80px */
        /*padding-bottom: 40px;*/
    }
    
    /* Optional: Further reduce hero content spacing on mobile */
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px; /* Reduced from 18px */
        text-transform: capitalize;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px; /* Reduced from 25px */
    }
    
    .hero-btns {
        gap: 10px; /* Reduced from 12px */
    }
    
    .mission-vision {
        order: 3;
    }
    
    .founders-note {
        order: 4;
    }
    
    .journey-section {
        order: 5;
    }
    
    .testimonials {
        order: 6;
    }
    
    .partners {
        order: 7;
    }
    
    .clients {
        order: 8;
    }
    
    footer {
        order: 9;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Logo adjustments for mobile */
    .custom-logo img {
        height: 28px;
        max-width: 140px;
    }
    
    .header-container {
        height: 50px;
        padding: 0 15px;
        padding-left: 0px !important;
        margin-left: 0px !important;
        padding-right: 10px !important;
    }
    
    header {
        padding: 8px 0;
        top: 0;
    }
    
    .founder-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Further reduced spacing for mobile */
    .mission-vision,
    .founders-note,
    .testimonials,
    .partners,
    .journey-section {
        padding: 60px 0;
    }
    
    .clients {
        padding: 40px 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    /* Timeline mobile adjustments */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 10px;
        right: auto;
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 25px;
        right: auto;
    }

    .timeline-section-title {
        font-size: 2rem;
    }
    
    .achievement-counter {
        gap: 20px;
    }
    
    .counter-item {
        min-width: 150px;
        padding: 20px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .mv-card, .testimonial-card {
        padding: 25px;
    }
    
    .custom-logo img {
        height: 26px;
        max-width: 130px;
    }
    
    .header-container {
        height: 48px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .timeline-section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .counter-item {
        min-width: 140px;
        padding: 20px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .custom-logo img {
        height: 24px;
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .header-container {
        height: 46px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
        background: white !important;
        color: black !important;
    }
    
    .custom-logo img {
        filter: none !important;
    }
    
    .btn {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
    }
}

/* Section Header with View All Link */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.view-all-link {
    color: var(--gold);
    font-family: var(--fontMedium);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.view-all-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.view-all-link:hover::after {
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: row; /* Keep side by side on mobile */
        align-items: center;
    }
    
    .view-all-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .view-all-link {
        margin-left: auto; /* Push to right on very small screens */
    }
}

/* Case Studies Hero Section */
.case-studies-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-studies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(240, 182, 3, 0.1), transparent 50%);
    z-index: -1;
}

.case-studies-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--fontHeavy);
    text-transform: capitalize;
}

.case-studies-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    font-family: var(--fontRegular);
}

/* Case Studies Filters */
.case-studies-filters {
    padding: 40px 0;
    background-color: var(--dark-card);
    border-bottom: 1px solid rgba(240, 182, 3, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--text-secondary);
    font-family: var(--fontMedium);
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 182, 3, 0.3);
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--accent-glow) 50%, transparent 100%);
    opacity: 0.1;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Enhanced Case Card Styles */
.case-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.case-card.hidden {
    display: none;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 182, 3, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.case-card:hover::before {
    opacity: 1;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 182, 3, 0.2);
}

.case-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    font-family: var(--fontMedium);
}

.case-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--light-text);
    line-height: 1.3;
    font-family: var(--fontHeavy);
}

.case-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--fontMedium);
}

/* Case Studies CTA */
.case-studies-cta {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(240, 182, 3, 0.1);
    position: relative;
}

.case-studies-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(240, 182, 3, 0.1) 0%, transparent 50%);
}

.case-studies-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
    position: relative;
}

.case-studies-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: var(--fontRegular);
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-studies-hero {
        padding: 100px 0 60px;
    }
    
    .case-studies-hero h1 {
        font-size: 2.2rem;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-studies-cta h2 {
        font-size: 2rem;
    }
}

/* Single Case Study Hero */
.case-study-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(240, 182, 3, 0.15), transparent 50%);
}

.case-study-breadcrumb {
    margin-bottom: 30px;
}

.case-study-breadcrumb a {
    color: var(--gold);
    font-family: var(--fontMedium);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: auto;
}
li.menu-item::marker{
    font-size: 0;
}

.case-study-breadcrumb a:hover {
    color: var(--gold-light);
    transform: translateX(-5px);
}

.case-study-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.case-category {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--fontMedium);
}

.case-study-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.2;
    font-family: var(--fontHeavy);
}

.case-excerpt {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.case-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-family: var(--fontMedium);
}

.meta-value {
    display: block;
    color: var(--light-text);
    font-size: 1rem;
    font-family: var(--fontRegular);
}

/* Case Overview */
.case-overview {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-grid.full-width {
  grid-column: 1 / -1;
   grid-template-columns: 1fr;
  width: 100%;
}

.overview-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-family: var(--fontRegular);
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.challenge-box, .solution-box {
    padding: 25px;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-box h3, .solution-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-family: var(--fontHeavy);
}

.challenge-box ul, .solution-box ul {
    list-style: none;
    padding: 0;
}

.challenge-box li, .solution-box li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    font-family: var(--fontRegular);
}

.challenge-box li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.solution-box li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Overview Stats */
.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 25px;
    background: var(--dark-card);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

/* Key Features */
.key-features {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.key-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-family: var(--fontHeavy);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: var(--fontRegular);
}

/* Process Timeline - Fixed Version */
.process-timeline {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.process-timeline h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--teal), var(--gold-light));
    border-radius: 2px;
}

.timeline-phase {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    font-family: var(--fontHeavy);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(240, 182, 3, 0.3);
    border: 3px solid var(--dark-bg);
}

.phase-content {
    flex: 1;
    padding: 30px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.phase-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--dark-card);
}

.phase-content:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(240, 182, 3, 0.1);
}

.phase-content h3 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-family: var(--fontHeavy);
}

.phase-duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(240, 182, 3, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-family: var(--fontMedium);
    border: 1px solid rgba(240, 182, 3, 0.3);
}

.phase-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.phase-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-content li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
    font-family: var(--fontRegular);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-content li:last-child {
    border-bottom: none;
}

.phase-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(240, 182, 3, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Alternative Timeline Design - Horizontal Cards */
.timeline-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark-card);
}

.timeline-horizontal::-webkit-scrollbar {
    height: 8px;
}

.timeline-horizontal::-webkit-scrollbar-track {
    background: var(--dark-card);
    border-radius: 10px;
}

.timeline-horizontal::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.timeline-phase-horizontal {
    min-width: 280px;
    background: var(--dark-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-phase-horizontal:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.phase-number-horizontal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    margin-bottom: 15px;
    font-family: var(--fontHeavy);
    box-shadow: 0 4px 15px rgba(240, 182, 3, 0.3);
}

.phase-content-horizontal h3 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: var(--fontHeavy);
}

.phase-duration-horizontal {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
    font-family: var(--fontMedium);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-phase {
        gap: 20px;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .phase-content {
        margin-left: 10px;
        padding: 20px;
    }
    
    .phase-content::before {
        left: -10px;
        top: 25px;
    }
    
    .timeline-horizontal {
        gap: 15px;
        padding: 15px 0;
    }
    
    .timeline-phase-horizontal {
        min-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .timeline::before {
        left: 25px;
    }
    
    .phase-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .phase-content {
        padding: 15px;
    }
    
    .timeline-phase-horizontal {
        min-width: 220px;
        padding: 15px;
    }
}

/* Technology Stack */
.technology-stack {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.technology-stack h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category {
    padding: 25px;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-category h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--fontHeavy);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    padding: 8px 16px;
    background: rgba(240, 182, 3, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(240, 182, 3, 0.3);
    font-family: var(--fontMedium);
}

/* Results & Impact */
.results-impact {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.results-impact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    padding: 30px;
    background: var(--dark-card);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.result-metric {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: var(--fontHeavy);
}

.result-title {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: var(--fontHeavy);
}

.result-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: var(--fontRegular);
}

/* Case Testimonial */
.case-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    font-family: var(--fontRegular);
}

.testimonial-text p::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.testimonial-author h4 {
    color: var(--light-text);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.testimonial-author p {
    color: var(--gold);
    font-family: var(--fontMedium);
}

/* Next Case CTA */
.next-case-cta {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.next-case-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.next-case-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--fontRegular);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-study-header h1 {
        font-size: 2.5rem;
    }
    
    .case-excerpt {
        font-size: 1.1rem;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .challenge-solution {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .stat-card {
        min-width: 200px;
    }
    
    .timeline-phase {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .case-study-header h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

/* Business Model Hero */
.business-model-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-model-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(240, 182, 3, 0.15), transparent 50%);
}

.business-model-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--fontHeavy);
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

/* Model Overview */
.model-overview {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.overview-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.overview-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-family: var(--fontRegular);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    padding: 40px 30px;
    background: var(--dark-card);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.pillar-card:hover, .pillar-card.active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.pillar-icon img {
    padding: 0;
    background: unset;
    border-radius: unset;
    height: 150px;
    width: 150px;
}
/*.pillar-card{background-color:#ffffff; }*/
.pillar-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: var(--fontHeavy);
}

.pillar-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: var(--fontRegular);
}

/* Service Offerings */
.service-offerings {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.service-offerings h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* for testing 
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 350px;
}*/
.service-card {
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 182, 3, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 182, 3, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(240, 182, 3, 0.3);
}

.service-header h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    font-family: var(--fontHeavy);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    font-family: var(--fontRegular);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Engagement Models */
.engagement-models {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.engagement-models h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.engagement-card {
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.engagement-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.engagement-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(240, 182, 3, 0.1), rgba(32, 135, 111, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.engagement-header h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin: 0;
    font-family: var(--fontHeavy);
}

.engagement-badge {
    position: absolute;
    top: 0px;
    right: 7px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--fontMedium);
}

.engagement-content {
    padding: 30px;
}

.engagement-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.engagement-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--gold);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(240, 182, 3, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature span:last-child {
    color: var(--text-secondary);
    font-family: var(--fontRegular);
}

.engagement-suitability {
    padding: 15px;
    background: rgba(240, 182, 3, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontRegular);
}

.engagement-suitability strong {
    color: var(--gold);
}

/* Industry Expertise */
.industry-expertise {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.industry-expertise h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.industry-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: var(--fontHeavy);
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    padding: 6px 12px;
    background: rgba(240, 182, 3, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(240, 182, 3, 0.3);
    font-family: var(--fontMedium);
}

/* Methodology */
.methodology {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.methodology h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.methodology-steps {
    max-width: 800px;
    margin: 0 auto;
}

.method-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
    font-family: var(--fontHeavy);
    box-shadow: 0 8px 25px rgba(240, 182, 3, 0.3);
}

.step-content {
    flex: 1;
    padding: 25px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-family: var(--fontHeavy);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-family: var(--fontRegular);
}

/* Business Model CTA */
.business-model-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.business-model-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.business-model-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--fontRegular);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-model-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .pillars-grid,
    .services-grid,
    .engagement-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .business-model-hero h1 {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .engagement-header {
        text-align: center;
    }
    
    .engagement-badge {
        position: static;
        margin-top: 10px;
        display: inline-block;
    }
}

/* Consulting Domains Hero */
.domains-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.domains-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(240, 182, 3, 0.15), transparent 50%);
}

.domains-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--fontHeavy);
    text-transform: capitalize;
}

.domains-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.domains-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.domains-hero .hero-stats .stat {
    text-align: center;
}

.domains-hero .hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.domains-hero .hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

/* Domains Overview */
.domains-overview {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.domains-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.domains-overview > .overview-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-family: var(--fontRegular);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.domain-card {
    padding: 40px 30px;
    background: var(--dark-card);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.domain-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.domain-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: var(--fontHeavy);
}

.domain-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.domain-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(240, 182, 3, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(240, 182, 3, 0.3);
    font-family: var(--fontMedium);
}

.domain-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
}

.domain-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* Domain Detail Sections */
.domain-detail {
    padding: 80px 0;
    background-color: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-detail:nth-child(even) {
    background-color: var(--dark-card);
}

.domain-header {
    text-align: center;
    margin-bottom: 50px;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 30px;
    background: rgba(240, 182, 3, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(240, 182, 3, 0.3);
}

.domain-badge .domain-icon {
    font-size: 2.5rem;
    margin: 0;
}

.domain-badge h2 {
    color: var(--light-text);
    margin: 0;
    font-size: 2rem;
    font-family: var(--fontHeavy);
}

.domain-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.domain-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.capabilities h3 {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-family: var(--fontHeavy);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.capability-card {
    padding: 25px;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.domain-detail:nth-child(even) .capability-card {
    background: var(--dark-bg);
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.capability-card h4 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: var(--fontHeavy);
}

.capability-card > p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    font-family: var(--fontRegular);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.capability-features li:last-child {
    border-bottom: none;
}

.capability-features li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.domain-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.domain-stats .stat-card {
    padding: 25px;
    background: var(--dark-card);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.domain-detail:nth-child(even) .domain-stats .stat-card {
    background: var(--dark-bg);
}

.domain-stats .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.domain-stats .stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--fontHeavy);
}

.domain-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

/* Industry Applications */
.industry-applications {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.industry-applications h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-family: var(--fontRegular);
}

.industry-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
}

.tab-button.active, .tab-button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tab-content {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.industry-content h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: var(--fontHeavy);
}

.industry-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.application-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.example {
    padding: 20px;
    background: rgba(240, 182, 3, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.example h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: var(--fontHeavy);
}

.example p {
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--fontRegular);
}

/* Domains CTA */
.domains-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    text-align: center;
}

.domains-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.domains-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--fontRegular);
}

.domains-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .domains-hero h1 {
        font-size: 2.5rem;
    }
    
    .domains-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .domains-hero .hero-stats {
        gap: 30px;
    }
    
    .domains-hero .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-stats {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .domain-stats .stat-card {
        min-width: 200px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .application-examples {
        grid-template-columns: 1fr;
    }
    
    .domains-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .domains-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .domains-hero h1 {
        font-size: 2rem;
    }
    
    .domain-badge {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .domain-badge h2 {
        font-size: 1.5rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(240, 182, 3, 0.15), transparent 50%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--fontHeavy);
    text-transform: capitalize;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-stats .stat {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.contact-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Information */
.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.info-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.contact-methods {
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 182, 3, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(240, 182, 3, 0.3);
}

.method-content h3 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-family: var(--fontHeavy);
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-family: var(--fontRegular);
}

.method-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
}

.method-link:hover {
    color: var(--gold-light);
}

.method-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-family: var(--fontRegular);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 6px 16px;
    background: rgba(240, 182, 3, 0.1);
    color: var(--gold);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(240, 182, 3, 0.3);
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Business Hours */
.business-hours {
    padding: 30px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: var(--fontHeavy);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.day-time:last-child {
    border-bottom: none;
}

.day {
    color: var(--light-text);
    font-family: var(--fontMedium);
}

.time {
    color: var(--gold);
    font-family: var(--fontMedium);
}

/* Contact Form Container */
.contact-form-container {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-family: var(--fontHeavy);
}

.form-header p {
    color: var(--text-secondary);
    font-family: var(--fontRegular);
}

/* Custom Form Styling for Contact Form 7 */
.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-form-structure {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--light-text);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--fontMedium);
}

/* Style Contact Form 7 elements */
.wpcf7-form-control-wrap {
    width: 100%;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--fontRegular);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 182, 3, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F0B603' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* Submit Button Styling */
.form-submit {
    margin-top: 10px;
}

.wpcf7-submit,
.btn-primary {
    /*width: 100%;*/
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpcf7-submit:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 182, 3, 0.4);
}

/* Form Validation Styles */
.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    font-family: var(--fontRegular);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 182, 3, 0.1);
}

/* Contact FAQ Section */
.contact-faq {
    padding: 80px 0;
    background-color: var(--dark-card);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: var(--fontHeavy);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-family: var(--fontRegular);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-family: var(--fontHeavy);
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--fontRegular);
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        gap: 30px;
    }
    
    .contact-stats .stat-number {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-icon {
        align-self: center;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .day-time {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* partners section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card) 100%);
    color: #e0e0e0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /*left: 50%;*/
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: rgba(30, 30, 46, 0.8);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(240, 182, 3, 0.2);
}

.partner-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    position: relative;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: top;
}

.partner-card:hover .partner-img img {
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.partner-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.partner-brief {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Know More Link */
.know-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
    background: rgba(76, 201, 240, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(240, 182, 3, 0.2);
}

.know-more-link:hover {
    background: rgba(240, 182, 3, 0.2);
    color: white;
    gap: 12px;
    transform: translateY(-2px);
}

.arrow {
    transition: transform 0.3s ease;
}

/* Modal Styles */
.partner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.partner-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 20px;
    /*max-width: 900px;*/
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(240, 182, 3, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 30px;
}

/* Header Styles */
.modal-header {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    align-items: flex-start;
    /*padding-bottom: 40px;*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-img {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #4cc9f0;
    box-shadow: 0 10px 30px rgba(240, 182, 3, 0.2);
    position: relative;
}

.modal-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 182, 3, 0.2), transparent);
    z-index: 1;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-header-content {
    flex: 1;
}

.modal-header-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #4cc9f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Detail Sections */
.modal-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-section {
    font-family: var(--fontMedium);
    font-size: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
   
}

.modal-grid{
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 182, 3, 0.2);
    transform: translateY(-2px);
}
.detail-section .det-img
{
    width: 90px;
    height: 80px;
    margin: 0 auto 15px auto;
    object-fit: contain;  
}
.detail-section p{text-align: left;}
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .modal-body {
        padding: 30px 25px;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .modal-img {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .modal-header-content h3 {
        font-size: 2rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .education-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .detail-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-header-content h3 {
        font-size: 1.8rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Skill Development Hero Section */
.skill-development-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.skill-development-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(240, 182, 3, 0.15), transparent 50%);
}

.skill-development-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--fontHeavy);
    line-height: 1.2;
}

.skill-development-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: var(--fontRegular);
}

.skill-development-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.skill-development-hero .hero-stats .stat {
    text-align: center;
}

.skill-development-hero .hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--fontHeavy);
}

.skill-development-hero .hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--fontMedium);
}

.skill-development-hero .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skill-development-hero h1 {
        font-size: 2.3rem;
    }
    
    .skill-development-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .skill-development-hero .hero-stats {
        gap: 30px;
    }
    
    .skill-development-hero .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .skill-development-hero .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .skill-development-hero .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .skill-development-hero h1 {
        font-size: 2rem;
    }
    
    .skill-development-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Tabs & Accordion Component */
.tabs-accordion-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.tabs-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

/* Tabs Header - Desktop */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--fontMedium);
    font-size: 1rem;
    width: auto;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tab-title {
    font-weight: 600;
}

.tab-icon {
    font-size: 1.1rem;
}

/* Tabs Content */
.tabs-content {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: var(--fontHeavy);
}

.tab-content-inner > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: var(--fontRegular);
}

/* Mobile Accordion Styles */
@media (max-width: 768px) {
    .tabs-header {
        display: block; /* Hide tabs on mobile */
        gap:0;
    }

    .tabs-content {
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .tab-pane {
        margin-bottom: 15px;
        background: var(--dark-card);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }

    .tab-pane.active {
        display: block;
    }

    .tab-button.mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 25px;
        background: transparent;
        border: none;
        color: var(--light-text);
        cursor: pointer;
        font-family: var(--fontMedium);
        font-size: 1.1rem;
        text-align: left;
    }

    .tab-button.mobile .tab-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tab-button.mobile .accordion-arrow {
        transition: transform 0.3s ease;
        color: var(--gold);
    }

    .tab-button.mobile.active .accordion-arrow {
        transform: rotate(180deg);
    }

    .tab-content-inner {
        padding: 0 25px 25px 25px;
        display: none;
    }

    .tab-pane.active .tab-content-inner {
        display: block;
    }

    .tab-content-inner h3 {
        display: none; /* Hide h3 in accordion since button has title */
    }
}

/* Desktop-only styles */
@media (min-width: 769px) {
    .tab-button.mobile {
        display: none;
    }
}


/*skill development tabs content css*/

:root{
  --accent-grad: linear-gradient(135deg,#F0B603,#20876F);
  --bg-dark: #070707;
  --panel: rgba(255,255,255,0.03);
  --muted: rgba(255,255,255,0.72);
  --bright: #ffffff;
  --radius: 14px;
}

/* General text styles */
.tabs-accordion .lead {
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
  max-width: 980px;
}

.tabs-accordion .center-text {
  text-align: center;
}

.tabs-accordion .small-note {
  color: rgba(255,255,255,0.64);
  text-align: center;
  margin-top: 10px;
}

/* Tabs and grid styling */
.tabs-accordion .tab-content-inner{ padding:36px 24px; box-sizing:border-box; font-family:"Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial; color:var(--bright); }

.tabs-accordion .cards-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:26px; margin-top:18px; }
@media (max-width:980px){ .tabs-accordion .cards-grid{ grid-template-columns:1fr; } }

.tabs-accordion #methodology  .cards-grid {
  grid-template-columns: repeat(1,1fr);
}

/* Card base */
.tabs-accordion .stunning-card {
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding:28px 28px 28px 46px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  border:1px solid rgba(255,255,255,0.03);
  overflow:visible;
  transition: transform .32s cubic-bezier(.2,.9,.2,1), box-shadow .32s;
  min-height:140px;
  display:flex; flex-direction:column; justify-content:center;
}

/* left stripe */
.tabs-accordion .stunning-card::before{
  content:"";
  position:absolute;
  left:-1px; top:12px; bottom:12px; width:10px; border-radius:8px;
  background: var(--accent-grad); box-shadow: 0 14px 36px rgba(32,135,111,0.08);
}
.tabs-accordion .stunning-card::after{
  content:""; position:absolute; left:6px; top:14px; bottom:14px; width:2px; background: rgba(0,0,0,0.08); border-radius:2px;
}

/* hover lift */
.tabs-accordion .stunning-card:hover{ transform: translateY(-8px); box-shadow: 0 36px 100px rgba(0,0,0,0.75); }

/* content */
.tabs-accordion .stunning-card .card-title{ font-weight:800; font-size:20px; margin:0 0 10px; color:var(--bright); text-shadow: 0 6px 18px rgba(0,0,0,0.6); }
.tabs-accordion .stunning-card .card-text{ color:var(--muted); font-size:15px; line-height:1.65; margin:0; }

/* small corner accent */
.tabs-accordion .stunning-card .corner-accent{
  position:absolute; left:-8px; top:-8px; height:28px; width:28px; border-radius:8px;
  background: linear-gradient(135deg, rgba(240,182,3,0.12), rgba(32,135,111,0.08));
  transform: rotate(12deg); box-shadow: 0 8px 20px rgba(32,135,111,0.04);
}

/* Certificate card */
.tabs-accordion .cert-full { 
  padding:32px 38px; 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  gap:14px; 
}

.tabs-accordion .cert-full .cert-img{
  width:100%; 
  max-width:720px; 
  border-radius:10px; 
  border:6px solid rgba(240,182,3,0.06);
  box-shadow: 0 20px 70px rgba(0,0,0,0.75);
}

/* modules card styles: list inside card */
.tabs-accordion .modules-card .module-list{ list-style:none; padding:6px 0 0; margin:0; display:grid; gap:10px; }
.tabs-accordion .modules-card .module-list li{ display:flex; gap:12px; align-items:center; padding:8px 6px; border-radius:10px; transition: background .18s, transform .18s; }
.tabs-accordion .modules-card .module-list li:hover{ transform: translateY(-6px); background: rgba(32,135,111,0.03); }
.tabs-accordion .modules-card .module-dot{ min-width:12px; height:12px; background: linear-gradient(135deg,#F0B603,#20876F); border-radius:3px; transform:rotate(12deg); box-shadow:0 8px 24px rgba(32,135,111,0.10); margin-top:6px; }
.tabs-accordion .modules-card .module-text{ color:var(--bright); font-size:15px; line-height:1.6; }

/* CTA row */
.tabs-accordion .cta-row{ display:flex; gap:12px; justify-content:center; margin-top:20px; }
.tabs-accordion .btn{
  padding:10px 18px; border-radius:999px; font-weight:800; text-decoration:none; display:inline-block;
  transition: transform .18s, box-shadow .18s;
}
.tabs-accordion .btn-accent{ background: var(--accent-grad); color:#07110d; border:none; box-shadow: 0 18px 48px rgba(32,135,111,0.12); }
.tabs-accordion .btn-accent:hover{ transform: translateY(-6px); box-shadow: 0 34px 90px rgba(32,135,111,0.18); }
.tabs-accordion .btn-ghost{ background:transparent; color:var(--muted); border:2px solid rgba(255,255,255,0.04); }

/* Responsive image */
.tabs-accordion .tab-content-inner img{ max-width:100%; height:auto; display:block; }

/* Equal-height module cards */
.tabs-accordion .cards-grid.equal-height { align-items: stretch; }
.tabs-accordion .stunning-card.modules-card { display: flex; flex-direction: column; justify-content: flex-start; height: 100%; min-height: 420px; padding-bottom: 36px; }
.tabs-accordion .modules-card .card-title { margin-top: 4px; margin-bottom: 16px; font-size: 20px; line-height: 1.2; text-align: left; }
.tabs-accordion .modules-card .module-list { flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.tabs-accordion .modules-card .module-list li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.04); }

@media (max-width: 900px) {
  .tabs-accordion .stunning-card.modules-card { min-height: auto; }
}

@media (max-width: 767.9px) {
  .tabs-accordion .cta-row{ display: block; }
  .tabs-accordion .btn-accent, .tabs-accordion .btn-ghost { width: 100%; font-size: 12px; }
  .custom-logo{
    width: 50px;
  }
}


 /* Tabs Container */
        .tabs-container {
            margin: 30px 0 50px;
        }
        
        /* Tabs Header - Mobile Optimized */
        .tabs-header {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            background-color: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 8px;
            margin-bottom: 30px;
            position: relative;
            scroll-behavior: smooth;
        }
        
        .tabs-header::-webkit-scrollbar {
            display: none;
        }
        
        .tab-button {
            flex-shrink: 0;
            padding: 18px 24px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s ease;
            border-radius: 8px;
            position: relative;
            min-width: 180px;
            text-align: center;
        }
        
        .tab-button:hover {
            color: var(--accent-color);
            background-color: rgba(43, 108, 176, 0.05);
        }
        
        .tab-button.active {
            color: var(--accent-color);
            background-color: rgba(43, 108, 176, 0.1);
            box-shadow: 0 2px 8px rgba(43, 108, 176, 0.1);
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Domain Boxes */
        .domain-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .domain-box {
            background-color: var(--card-bg);
            border-radius: 14px;
            padding: 28px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent-color);
            height: 100%;
        }
        
        .domain-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .domain-box h3 {
            color: var(--primary-dark);
            margin-bottom: 18px;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        
        .domain-box ul {
            list-style-type: none;
        }
        
        .domain-box li {
            padding: 10px 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }
        
        .domain-box li:before {
            content: '•';
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.4rem;
            position: absolute;
            left: 8px;
            top: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .domain-boxes {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            .section-header h1 {
                font-size: 1.9rem;
            }
            
            .tabs-header {
                padding: 6px;
                margin-bottom: 25px;
            }
            
            .tab-button {
                min-width: 160px;
                padding: 16px 20px;
                font-size: 1rem;
            }
            
            .tab-button.active::after {
                bottom: -8px;
                width: 35px;
            }
            
            .domain-boxes {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            
            .domain-box {
                padding: 24px;
            }
            
            .domain-box h3 {
                font-size: 1.35rem;
            }
        }
        
        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 1.7rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .tab-button {
                min-width: 140px;
                padding: 14px 18px;
                font-size: 0.95rem;
            }
            
            .domain-box {
                padding: 22px;
            }
            
            .domain-box h3 {
                font-size: 1.25rem;
            }
            
            .domain-box li {
                padding-left: 24px;
                font-size: 0.95rem;
            }
        }
        
        /* Mobile Swipe Hint */
        .swipe-hint {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 12px;
            display: none;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .swipe-hint {
                display: block;
            }
        }
        
        /* Empty state for additional tabs */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-secondary);
        }
        
        .empty-state h3 {
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
    /* Tabs Header - Modern App Style */
.tabs-header {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: var(--card-bg);
    border-radius: 0;
    padding: 0;
    margin: 0 0 40px;
    position: relative;
    scroll-behavior: smooth;
    border-bottom: 1px solid var(--border-color);
    scroll-padding: 0 60px;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

/* Create next/prev item visibility effect */
/*.tabs-header::before,
.tabs-header::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}*/

/*.tabs-header::before {
    left: 0;
    background: linear-gradient(90deg, var(--card-bg) 20%, transparent);
}

.tabs-header::after {
    right: 0;
    background: linear-gradient(270deg, var(--card-bg) 20%, transparent);
}*/

.tab-item {
    flex-shrink: 0;
    padding: 20px 28px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    min-width: 180px;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.tab-item:hover {
    color: var(--accent-color);
    background-color: rgba(43, 108, 176, 0.03);
}

.tab-item.active {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 3px solid var(--gold);
}

/* Partially visible adjacent items effect */
.tab-item.prev-visible,
.tab-item.next-visible {
    opacity: 0.6;
    transform: scale(0.95);
}

/* Navigation Arrows */
.tabs-nav {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px;
    background: var(--card-bg);
    border: none;
    cursor: pointer;
    z-index: 3;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.tabs-nav:hover {
    opacity: 1;
    background-color: rgba(43, 108, 176, 0.05);
}

.tabs-nav.prev {
    left: 0;
    border-right: 1px solid var(--border-color);
}

.tabs-nav.next {
    right: 0;
    border-left: 1px solid var(--border-color);
}

.tabs-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-secondary);
}

.tabs-nav:hover svg {
    stroke: var(--accent-color);
}

/* Mobile swipe hint */
.swipe-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    opacity: 0.7;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tabs-header {
        scroll-padding: 0 40px;
        margin-bottom: 30px;
        padding-left: 10%;
        justify-content: flex-start;
    }
    
    /*.tabs-header::before,
    .tabs-header::after {
        width: 40px;
    }*/
    
    .tab-item {
        padding: 15px 0px;
        /*min-width: 160px;*/
        font-size: 1rem;
    }
    
    .swipe-hint {
        display: block;
    }
}

@media (max-width: 480px) {
    .tab-item {
        padding: 15px 0px;
        min-width: 140px;
        font-size: 0.95rem;
        border-bottom-width: 2px;
        min-width: 120px !important;
    }
}

/* Make first tab fully visible on load */
.tab-item:first-child {
    opacity: 1;
    transform: scale(1);
}

/* Remove the faded state for first tab if it's active */
.tab-item.active:first-child {
    opacity: 1;
    transform: scale(1);
}

.case-card {
    height: 100%;
}

.case-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-content .btn {
    margin-top: auto;   /* pushes button to bottom */
}

.case-content .btn {
    margin-top: auto;
    align-self: center;   /* 👈 prevents full-width */
}

.partner-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card .know-more-link {
    margin-top: auto;        /* pushes link to bottom */
    align-self: center;  /* prevents full width */
}
.priv-policy .wpforms-field-label-inline, .priv-policy a{color: #fff !important;}


/* ===== HERO SECTION ===== */
.hero {
  background: #000;
  color: #fff;
   min-height: unset;
  height: auto;
  align-items: stretch;
  display: flex;
  align-items: center;
}

/* Main Container */
.hero-inner {
    align-items: flex-start;
  display: grid;
/*  grid-template-columns: 1fr 1fr;*/
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

/* ===== LEFT: WHY SWANHANS SECTION ===== */
.hero-static {
/*  padding: 80px 60px;*/
  padding-top:40px ;
  padding-bottom: 50px;
  /*display: flex;
  flex-direction: column;*/
  justify-content: center;
  position: relative;
}

/* Title */
.hero-static h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
/*  margin: 0 0 25px 0;*/
  color: #fff;
  padding-top:40px;
}

/* Description */
.hero-static p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  max-width: 95%;
  text-align: justify;
}

/* Bullet Points */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

.hero-points li {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.hero-points li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 18px;
}

/* ===== VERTICAL DIVIDER BETWEEN SECTIONS ===== */
.hero-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 15%,
    rgba(255, 255, 255, 0.2) 85%,
    transparent 100%
  );
  z-index: 10;
}

/* Optional: Add decorative elements to divider */
.hero-divider:before,
.hero-divider:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-divider:before {
  top: 0;
}

.hero-divider:after {
  bottom: 0;
}

/* Alternative: Simple solid divider */
/* .hero-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
} */

/* ===== RIGHT: SLIDER SECTION ===== */
.hero-slider {
  height: 70vh;
  position: relative;
  background: #000;
}

/* Individual Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Dark overlay for text readability */
.slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 80px;
/*  left: 60px;*/
  /*max-width: 540px;*/
  z-index: 2;
}

.slide-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px 0;
}

.slide-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 25px 0;
}

/* ===== BUTTONS ===== */
.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero {
    min-height: fit-content;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  /* Remove vertical divider on mobile */
  .hero-divider {
    display: none;
  }
  
  /* Slider First on Mobile */
  .hero-slider {
    order: -1;
    height: 60vh;
    min-height: 400px;
  }
  
  /* Add horizontal divider between sections on mobile */
  /*.hero-static {
    position: relative;
    padding: 60px 30px;
  }
  
  .hero-static:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(255, 255, 255, 0.15) 80%,
      transparent 100%
    );
  }*/
  
  /* Adjust padding for mobile */
  /*.hero-static {
    padding: 60px 30px;
  }*/
  
  .slide-content {
    top: 60px;
    left: 30px;
    right: 30px;
    max-width: none;
  }
  
  /* Typography adjustments for mobile */
  .hero-static h2,
  .slide-title {
    font-size: 32px;
  }
  
  .hero-static p,
  .hero-points li,
  .slide-description {
    font-size: 16px;
  }
  
  /* Stack buttons on mobile */
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px) {
  .hero-slider {
    height: 70vh;
    min-height: 350px;
  }
  
  .hero-static {
    padding: 50px 20px;
  }
  
  .hero-static:before {
    left: 20px;
    right: 20px;
  }
  
  .slide-content {
    top: 50px;
    left: 20px;
    right: 20px;
  }
  
  .hero-static h2,
  .slide-title {
    font-size: 28px;
  }
  
  .hero-points li {
    padding-left: 24px;
  }
}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1600px) {
  /*.hero-static {
    padding: 100px 80px;
  }*/
  
  .slide-content {
    top: 100px;
/*    left: 80px;*/
  }
  
  .hero-static h2,
  .slide-title {
    font-size: 48px;
  }
  
  .hero-static p,
  .hero-points li,
  .slide-description {
    font-size: 20px;
  }
}

/* ===== FIXES FOR SLIDER IMAGES ===== */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SCROLLER FOR WHY SWANHANS SECTION ===== */

/* Container with scroll */
/*.hero-static {
  max-height: calc(100vh - 80px); 
  overflow-y: auto;
  padding-right: 10px; 
}*/

/* Custom scrollbar styling for Webkit browsers (Chrome, Safari, Edge) */
/*.hero-static::-webkit-scrollbar {
  width: 6px;
}

.hero-static::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  margin: 80px 0 40px 0; /* Match your padding */
}

.hero-static::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.hero-static::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}*/

/* For Firefox */
/*.hero-static {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}*/

/* Scroll indicator hint (optional) */
/*.hero-static:after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}*/

/* Show scroll hint on hover */
/*.hero-static:hover:after {
  opacity: 1;
}*/

/* Add padding to bottom content for better scrolling */
.hero-points {
  margin-bottom: 40px; /* Extra space at bottom */
}

/* Remove scroll on mobile */
@media (max-width: 991px) {
  .hero-static {
    height: auto;
    overflow-y: visible;
    padding-right: 0;
  }
  
  .hero-static:after {
    display: none;
  }
  
  .hero-points {
    margin-bottom: 0; /* Reset on mobile */
  }
}

/* Adjust for medium laptops */
@media (max-width: 1366px) and (min-width: 992px) {
  .hero-static {
    padding-right: 8px;
  }
  
  .hero-static::-webkit-scrollbar-track {
    margin: 60px 0 30px 0;
  }
}

/* Adjust for small laptops */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero-static {
    padding-right: 6px;
  }
  
  .hero-static::-webkit-scrollbar-track {
    margin: 50px 0 20px 0;
  }
}


/*new changes*/

.hero-static {
/*    max-height: 300px;             */
/*    overflow-y: scroll;            */

    /* Firefox */
   /* scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) rgba(255,255,255,0.08);*/
}

/* Chrome, Edge, Safari */
/*.hero-static::-webkit-scrollbar {
    width: 8px;
}

.hero-static::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
}

.hero-static::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.4);
    border-radius: 4px;
}*/

@media (min-width: 767.9px) {
.why-engage{
    order: 2;
}
}

/*blog*/
.blog-overview h1, .blog-overview h2{
    margin: 32px 0 16px 0;
    text-align: justify;
}
.blog-overview p{
    font-size: 18px;
}
.blog-overview strong {
    font-weight: 900;
    text-decoration: underline;
}
.blog-overview h2{
    margin: 32px 0 16px 0;
}
section.case-overview.blog-overview {
    padding: 20px 0;
}
.blog-featured-image {
    display: flex;
    justify-content: center;
    margin: 0 0 16px 0;
}
.blog-overview p {
    font-size: 18px;
    margin: 0 0 16px 0;
    text-align: justify;
}
section.case-overview.blog-overview ol {
    padding: 0 0 16px 19px;
}
section.case-overview.blog-overview ul {
    padding: 0 0 16px 19px;
}

@media (max-width: 767.9px) {
img.featured-image.wp-post-image {
    width: 100%;
    height: auto;
}
}