:root {
    /* Blue Theme - Primary Colors */
    --primary-color: #004B87;
    --secondary-color: #0066B2;
    --accent-color: #3399FF;
    --dark-color: #002B4D;
    --light-color: #E6F2FF;
    
    /* Yellow Accent Colors */
    --yellow-primary: #F59E0B;
    --yellow-light: #FEF3C7;
    --yellow-dark: #D97706;
    
    /* Green Accent Colors */
    --green-primary: #10B981;
    --green-light: #D1FAE5;
    --green-dark: #059669;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #004B87 0%, #0066B2 50%, #3399FF 100%);
    --gradient-yellow: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-green: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-light: linear-gradient(135deg, rgba(0, 75, 135, 0.1) 0%, rgba(51, 153, 255, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 75, 135, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 75, 135, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 75, 135, 0.16);
    --shadow-yellow: 0 4px 16px rgba(245, 158, 11, 0.2);
    --shadow-green: 0 4px 16px rgba(16, 185, 129, 0.2);
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    max-width: 100%;
    padding: 0 30px;
}

@media (max-width: 992px) {
    .header .container {
        padding: 0 15px;
    }
    
    .navbar {
        position: relative;
    }
    
    .nav-toggle {
        position: relative;
        right: 0;
        flex-shrink: 0;
    }
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
}

.dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    padding-left: 30px;
}

.mega-dropdown .mega-menu {
    position: absolute;
    top: 100%;
    left: -200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    min-width: 900px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-column ul li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-dark);
    font-size: 13px;
    border-radius: 6px;
    transition: var(--transition);
}

.mega-menu-column ul li a:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    padding-left: 18px;
}

/* Services Two-Panel Menu */
.services-dropdown {
    position: relative;
}

.services-panel {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    min-width: 600px;
}

.services-dropdown:hover .services-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-categories {
    width: 220px;
    background: #f8f9fa;
    padding: 10px 0;
    border-right: 1px solid #eee;
}

.category-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.category-item i:first-child {
    width: 20px;
    color: var(--primary-color);
}

.category-item .arrow {
    margin-left: auto;
    font-size: 10px;
    color: #999;
    transition: all 0.2s ease;
}

.category-item:hover,
.category-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-item:hover i,
.category-item.active i {
    color: var(--white);
}

.services-list {
    width: 350px;
    padding: 15px 20px;
    background: var(--white);
}

.service-links {
    display: none;
}

.service-links.active {
    display: block;
}

.service-links a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 13px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.service-links a:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
}

/* Hide mobile-only service links on desktop */
.mobile-service-links {
    display: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #2979ff 0%, #00bfa6 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(41, 121, 255, 0.25);
    display: flex;
    align-items: center;
    width: fit-content;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 158, 188, 0.35);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.25); color: white; padding: 12px 30px; font-size: 1rem; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 30%;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 24px;
    color: var(--green-primary);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-illustration {
    position: relative;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 75, 135, 0.25);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 75, 135, 0.15));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.stats-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--yellow-light);
    color: var(--yellow-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--yellow-primary);
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    color: var(--green-primary);
    font-size: 20px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper svg {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.services-section {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-yellow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--yellow-primary);
}

.service-icon i {
    font-size: 32px;
    color: var(--yellow-dark);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 13px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow-dark);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 12px;
}

.clients-section {
    background: var(--white);
    padding: 60px 0;
}

.clients-marquee {
    overflow: hidden;
    margin-top: 40px;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.client-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 40px;
    background: var(--light-color);
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.testimonials-section {
    background: var(--gradient-light);
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    min-width: 100%;
    transition: var(--transition);
}

.testimonial-icon {
    font-size: 48px;
    color: var(--secondary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 18px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-logo h3 {
    font-size: 20px;
    line-height: 1.2;
}

.footer-logo small {
    font-size: 12px;
    opacity: 0.7;
}

.footer-column p {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--yellow-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    opacity: 0.7;
}

/* Yellow and Green Accent Variations */
.stat-item:nth-child(2) .stat-icon {
    background: var(--yellow-light);
    border: 2px solid var(--yellow-primary);
}

.stat-item:nth-child(2) .stat-icon i {
    color: var(--yellow-dark);
}

.stat-item:nth-child(4) .stat-icon {
    background: var(--green-light);
    border: 2px solid var(--green-primary);
}

.stat-item:nth-child(4) .stat-icon i {
    color: var(--green-dark);
}

.service-card:nth-child(3n+2) .service-icon {
    background: var(--green-light);
    border-color: var(--green-primary);
}

.service-card:nth-child(3n+2) .service-icon i {
    color: var(--green-dark);
}

.service-card:nth-child(3n+2):hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
}

/* Accent Helper Classes */
.accent-yellow {
    color: var(--yellow-primary) !important;
}

.accent-green {
    color: var(--green-primary) !important;
}

.bg-yellow-light {
    background-color: var(--yellow-light) !important;
}

.bg-green-light {
    background-color: var(--green-light) !important;
}

.border-yellow {
    border-color: var(--yellow-primary) !important;
}

.border-green {
    border-color: var(--green-primary) !important;
}

/* Enhanced Experience Badge with Yellow */
.experience-badge {
    background: var(--gradient-yellow);
}

@media (max-width: 1200px) {
    .mega-menu {
        min-width: 800px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Mobile Services Panel - Accordion Style */
    .services-panel {
        position: static;
        flex-direction: column;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .services-dropdown.active .services-panel {
        max-height: 2000px;
        overflow-y: auto;
    }
    
    .services-categories {
        width: 100%;
        border-right: none;
        padding: 0;
        display: block;
    }
    
    .category-item {
        padding: 12px 15px;
        font-size: 13px;
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
    }
    
    .category-item.active {
        background: var(--primary-color);
        color: white;
    }
    
    .category-item .arrow {
        transform: rotate(0deg);
        transition: transform 0.2s ease;
    }
    
    .category-item.active .arrow {
        transform: rotate(90deg);
    }
    
    /* Hide the services-list container, show links inline */
    .services-list {
        display: none;
    }
    
    /* Mobile: Show services directly under each category */
    .mobile-service-links {
        display: none !important;
        background: #fff;
        padding: 5px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-service-links.active {
        display: block !important;
    }
    
    .mobile-service-links a {
        display: block;
        padding: 10px 20px 10px 40px;
        color: var(--text-dark);
        font-size: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-service-links a:hover {
        background: #f8f9fa;
        color: var(--secondary-color);
    }
    
    .mega-menu {
        position: static;
        grid-template-columns: 1fr;
        min-width: 100%;
        box-shadow: none;
        padding: 15px;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-illustration {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .services-showcase div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Mobile Services Two-Panel Menu */
    .services-panel {
        position: static;
        flex-direction: column;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
    }
    
    .services-categories {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .category-item {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .services-list {
        width: 100%;
        padding: 10px 15px;
    }
    
    .service-links a {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Standard Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    margin-top: 80px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.page-header .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header .breadcrumb span {
    margin: 0 8px;
}

/* Business Enquiry Section */
.enquiry-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.enquiry-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.enquiry-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Form Box */
.form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-box h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--light-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

#map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Career Section */
.career-section {
    padding: 80px 0;
    background: var(--white);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.perk-card {
    background: #F8F9FA;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--secondary-color);
}

.perk-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.perk-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.perk-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Job Listings */
.job-listings {
    margin-top: 40px;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.job-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.job-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.job-meta span {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--secondary-color);
}

/* Application Form */
.application-form {
    background: #F8F9FA;
    padding: 50px;
    border-radius: 12px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

/* Employee Helpdesk Section */
.helpdesk-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.helpdesk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.resources-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.resource-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.resource-item:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.resource-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.resource-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.helpdesk-resources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.resource-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 4px;
}

.blog-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.blog-card .btn {
    font-size: 14px;
    padding: 10px 24px;
}

/* Responsive Styles for Standard Pages */
@media (max-width: 992px) {
    .enquiry-grid,
    .contact-grid,
    .helpdesk-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .perks-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .helpdesk-resources {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .perks-grid,
    .blog-grid,
    .helpdesk-resources {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-form {
        padding: 30px 20px;
    }
}

/* Company Profile Page Styles */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.content-box {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.content-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.content-box h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.mv-card {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: 12px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 75, 135, 0.25);
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-card h3 i {
    font-size: 32px;
    color: var(--yellow-primary);
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Certifications Grid */
.certifications {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: #F8F9FA;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.cert-card:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.cert-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.cert-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 50px;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-color);
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-content {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.timeline-content:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.partner-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.partner-card h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    color: #000;
    font-size: 18px;
    transition: 0.2s ease;
}

.social-icons a:hover {
    color: #0066cc;
    transform: scale(1.15);
}


/* Responsive Styles for Company Profile */
@media (max-width: 992px) {
    .profile-grid,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    
    .timeline-item::before {
        left: 10px !important;
        right: auto !important;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .certifications {
        grid-template-columns: 1fr;
    }
    
    .content-box {
        padding: 30px 25px;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .mv-card h3 {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .partner-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .partner-icon {
        margin: 0 auto;
    }
}

/* Why Choose JIL Page Styles */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.why-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--yellow-primary);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table thead th {
    padding: 25px 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: #F8F9FA;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 20px;
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table tbody td:first-child {
    font-weight: 500;
}

.check-icon {
    color: var(--green-primary);
    font-size: 24px;
}

.cross-icon {
    color: #EF4444;
    font-size: 24px;
}

/* Responsive Styles for Why JIL */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number {
        font-size: 36px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}
