/* ELLOWRING SOFTWARE SOLUTIONS - Brand Colors */
:root {
    --primary-black: #000000;
    --primary-yellow: #FFD700;
    --primary-white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --yellow-hover: #FFED4E;
    --yellow-light: #FFF59D;
}

/* Light Theme Variables */
[data-theme="light"] {
    --primary-black: #FFFFFF;
    --primary-white: #000000;
    --dark-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --light-gray: #999999;
    --yellow-hover: #FFED4E;
    --yellow-light: #FFF59D;
}

/* Light Theme Specific Adjustments */
[data-theme="light"] .navbar {
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-menu a {
    color: var(--primary-black);
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu a.active {
    color: var(--primary-yellow);
}

[data-theme="light"] .dropdown-menu {
    background-color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
}

[data-theme="light"] .dropdown-menu a {
    color: var(--primary-black);
}

[data-theme="light"] .dropdown-menu a:hover {
    background-color: var(--medium-gray);
    color: var(--primary-yellow);
}

@media (max-width: 768px) {
    [data-theme="light"] .nav-menu {
        background-color: var(--primary-white);
        border-bottom: 1px solid var(--medium-gray);
    }

    [data-theme="light"] .nav-menu a {
        color: var(--primary-black);
    }

    [data-theme="light"] .nav-menu a:hover,
    [data-theme="light"] .nav-menu a.active {
        color: var(--primary-yellow);
        background-color: var(--light-gray);
    }

    [data-theme="light"] .dropdown-toggle:hover {
        background-color: var(--light-gray);
    }

    [data-theme="light"] .dropdown-menu {
        background-color: var(--light-gray);
        border-top: 1px solid var(--medium-gray);
    }

    [data-theme="light"] .dropdown-menu li {
        border-bottom: 1px solid var(--medium-gray);
    }

    [data-theme="light"] .dropdown-menu a:hover,
    [data-theme="light"] .dropdown-menu a:active {
        background-color: var(--medium-gray);
        color: var(--primary-yellow);
    }
}

[data-theme="light"] .hero::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(245, 245, 245, 0.4) 100%);
}

[data-theme="light"] .hero-content {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

[data-theme="light"] .btn-secondary {
    border: 2px solid var(--primary-yellow);
    color: var(--primary-white);
}

[data-theme="light"] .btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-yellow) 50%, var(--primary-black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-subtitle {
    color: var(--dark-text);
}

[data-theme="light"] .btn-course {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

[data-theme="light"] .btn-course:hover {
    background-color: var(--yellow-hover);
    border-color: var(--yellow-hover);
    color: var(--primary-black);
}

[data-theme="light"] .partner-logo {
    background-color: var(--primary-white);
    border: 2px solid var(--medium-gray);
}

[data-theme="light"] .partner-card:hover .partner-logo {
    border-color: var(--primary-yellow);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeIn 1.2s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Theme Toggle */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background-color: var(--primary-yellow);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.theme-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-yellow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.theme-toggle:hover .theme-icon {
    color: var(--primary-black);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="light"] .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="light"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--primary-yellow);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--primary-white);
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: rotate(360deg);
}

.logo-ring {
    width: 50px;
    height: 50px;
    border: 6px solid var(--primary-yellow);
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.logo:hover .logo-ring {
    border-color: var(--yellow-hover);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.logo-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-white);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 4s ease-in-out infinite;
}

.logo:hover .logo-dot {
    background-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--primary-white);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary-white);
    opacity: 0.9;
    line-height: 1.2;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-yellow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
    animation: slideInFromLeft 0.5s ease-out;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-gray);
    list-style: none;
    min-width: 250px;
    padding: 0.5rem 0;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: var(--medium-gray);
    color: var(--primary-yellow);
    border-left-color: var(--primary-yellow);
    padding-left: 25px;
}

.dropdown-menu a.active {
    background-color: var(--medium-gray);
    border-left-color: var(--primary-yellow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover span {
    background-color: var(--primary-yellow);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/2041627/pexels-photo-2041627.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

/* Alternative: Use local image - uncomment and update path if you have a local image */
/* .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%),
                url('images/hero-background.jpg') center/cover no-repeat;
    background-attachment: fixed;
} */

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
    transition: opacity 0.6s ease;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

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

/* Luxury Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Page Load Animations */
body {
    animation: fadeIn 1.2s ease-out;
}

.navbar {
    animation: fadeIn 1s ease-out 0.2s backwards;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1);
}

.btn-course {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: 2px solid var(--primary-yellow);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-course:hover {
    background-color: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--primary-black);
}

.btn-course:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Home About Section */
.home-about {
    padding: 5rem 0;
    background-color: var(--primary-black);
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.home-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 0.5s forwards;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.home-about-text p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    margin-top: 2rem;
}

.home-about-image {
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.about-image-content {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-about-image:hover .about-image-content {
    transform: scale(1.05);
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-overview-card {
    background-color: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-overview-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-overview-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.service-overview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-overview-card h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-overview-card > p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-overview-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.service-overview-card ul li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

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

.service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--yellow-hover);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--primary-black);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background-color: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-black);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--primary-black);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--light-gray);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    border-bottom: 2px solid var(--primary-yellow);
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.2s forwards;
}

.page-header h1 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.page-header p {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.about-section:nth-child(even) .about-text {
    opacity: 0;
    animation: slideInFromRight 1s ease-out 0.7s forwards;
}

.about-section:nth-child(odd) .about-text {
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 0.7s forwards;
}

.about-section .about-image {
    opacity: 0;
    animation: scaleIn 1s ease-out 0.9s forwards;
}

.about-text h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.about-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.about-text ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    background-color: var(--medium-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.about-image .about-image-content {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-image-content {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.value-card h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

.team-section {
    margin-top: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background-color: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.team-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-yellow);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-avatar {
    border-color: var(--yellow-hover);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

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

.team-card h3 {
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--light-gray);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

.partners-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background-color: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    opacity: 0;
    transform: scale(0.9);
}

.partner-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.partner-logo {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--medium-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary-white);
    position: relative;
    padding: 15px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.partner-card:hover .partner-logo {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.partner-card h3 {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Services Page */
.services-content {
    padding: 4rem 0;
}

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

.service-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Courses Page */
.courses-content {
    padding: 4rem 0;
}

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

.course-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.course-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.course-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: gentleFloat 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-badge {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.course-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-yellow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.course-card:hover .course-icon {
    transform: scale(1.1) translateY(-5px);
}

.course-card:hover .course-icon svg {
    color: var(--yellow-hover);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

.course-card h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.course-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.course-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-duration,
.course-level {
    color: var(--primary-white);
    font-size: 0.9rem;
}

.course-topics {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-topics li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--light-gray);
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    opacity: 0;
    animation: scaleIn 1s ease-out 0.5s forwards;
}

.contact-form h2 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--primary-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

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

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--dark-gray);
}

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

.testimonial-card {
    background-color: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-yellow);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    color: var(--light-gray);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--yellow-hover);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

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

.testimonial-info h4 {
    color: var(--primary-white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    text-align: center;
    border-top: 2px solid var(--primary-yellow);
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.cta h2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.cta p {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.cta p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--medium-gray);
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-section ul li a:hover {
    transform: translateX(5px);
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--dark-gray);
    border-radius: 50%;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-icons a svg {
    width: 22px;
    height: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-yellow);
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

[data-theme="light"] .social-icons a {
    background-color: var(--light-bg);
    color: var(--dark-text);
    border-color: var(--border-light);
}

[data-theme="light"] .social-icons a:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 80vh;
        background-image: url('https://images.pexels.com/photos/2041627/pexels-photo-2041627.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%);
    }

    .hero-content {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
    }

    .theme-toggle-wrapper {
        margin-left: 0.5rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .theme-icon {
        width: 18px;
        height: 18px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        border-bottom: 1px solid var(--medium-gray);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

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

    .dropdown {
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
    }

    .dropdown-toggle:hover {
        background-color: var(--dark-gray);
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        border: none;
        border-top: 1px solid var(--medium-gray);
        border-radius: 0;
        margin-top: 0;
        box-shadow: none;
        background-color: var(--dark-gray);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid var(--medium-gray);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 15px 20px;
        border-left: none;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        padding-left: 25px;
        border-left: none;
        background-color: var(--medium-gray);
        color: var(--primary-yellow);
    }

    .dropdown-menu a:focus {
        outline: 2px solid var(--primary-yellow);
        outline-offset: -2px;
    }

    .dropdown-menu a:active {
        background-color: var(--medium-gray);
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .contact-item {
        align-items: center;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item h3 {
        text-align: center;
    }

    .contact-item p {
        text-align: center;
    }

    .services-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .home-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-about-text .section-title {
        text-align: center;
        font-size: 2rem;
    }

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .about-image-content,
    .home-about-image .about-image-content {
        height: 300px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .partner-card {
        min-height: 180px;
        padding: 1.5rem;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

/* AI Chatbox Styles */
.chatbox-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 3s ease-in-out infinite;
}

.chatbox-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.chatbox-toggle .chat-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-black);
}

.chatbox-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4444;
    color: var(--primary-white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid var(--primary-black);
}

.chatbox-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 450px;
    background-color: var(--dark-gray);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

.chatbox-container.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.chatbox-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--medium-gray);
}

.chatbox-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbox-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
}

.chatbox-avatar svg {
    width: 24px;
    height: 24px;
}

.chatbox-header-text h4 {
    color: var(--primary-black);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.chatbox-header-text p {
    color: var(--primary-black);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

.chatbox-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chatbox-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.chatbox-close svg {
    width: 20px;
    height: 20px;
}

.chatbox-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--dark-gray);
}

.chatbox-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbox-messages::-webkit-scrollbar-track {
    background: var(--medium-gray);
    border-radius: 10px;
}

.chatbox-messages::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 10px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: fadeInUp 0.3s ease-out;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-black);
}

.user-message .message-avatar {
    background: var(--medium-gray);
    color: var(--primary-white);
}

.message-avatar svg {
    width: 18px;
    height: 18px;
}

.message-content {
    background-color: var(--medium-gray);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    color: var(--primary-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    color: var(--primary-black);
}

.message-content p {
    margin: 0;
}

.chatbox-input-container {
    padding: 1rem;
    background-color: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chatbox-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 25px;
    color: var(--primary-white);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.chatbox-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.chatbox-input::placeholder {
    color: var(--light-gray);
}

.chatbox-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-hover) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chatbox-send:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.chatbox-send:active {
    transform: scale(0.95);
}

.chatbox-send svg {
    width: 20px;
    height: 20px;
}

/* Light Theme Chatbox */
[data-theme="light"] .chatbox-container {
    background-color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
}

[data-theme="light"] .chatbox-messages {
    background-color: var(--dark-gray);
}

[data-theme="light"] .message-content {
    background-color: var(--medium-gray);
    color: var(--primary-white);
}

[data-theme="light"] .chatbox-input {
    background-color: var(--medium-gray);
    color: var(--primary-white);
}

[data-theme="light"] .chatbox-input-container {
    background-color: var(--dark-gray);
}

/* Responsive Chatbox */
@media (max-width: 768px) {
    .chatbox-container {
        width: calc(100% - 40px);
        height: calc(100vh - 140px);
        right: 20px;
        bottom: 100px;
        max-height: 450px;
    }

    .chatbox-toggle {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .home-about-text .section-title {
        text-align: center;
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .service-card,
    .course-card,
    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

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

    .contact-info h2 {
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .contact-item h3 {
        text-align: center;
    }

    .contact-item p {
        text-align: center;
    }

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

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

    .page-header {
        padding: 2.5rem 0;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-ring {
        width: 40px;
        height: 40px;
    }

    .logo-dot {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .partner-logo {
        width: 80px;
        height: 80px;
    }

    .partner-card {
        min-height: 150px;
        padding: 1rem;
    }

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

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

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .chatbox-container {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 90px;
        height: calc(100vh - 120px);
        max-height: 400px;
    }

    .chatbox-toggle {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .chatbox-toggle .chat-icon {
        width: 22px;
        height: 22px;
    }

    .chatbox-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .service-card,
    .course-card,
    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

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

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

    .page-header {
        padding: 2.5rem 0;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-ring {
        width: 40px;
        height: 40px;
    }

    .logo-dot {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .chatbox-header {
        padding: 0.75rem;
    }

    .chatbox-header-text h4 {
        font-size: 1rem;
    }

    .chatbox-header-text p {
        font-size: 0.75rem;
    }

    .chatbox-messages {
        padding: 1rem;
    }

    .chatbox-input-container {
        padding: 0.75rem;
    }

    .chatbox-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }

    .chatbox-send {
        width: 40px;
        height: 40px;
    }

    .message-content {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }

    .message-avatar {
        width: 28px;
        height: 28px;
    }

    .message-avatar svg {
        width: 16px;
        height: 16px;
    }

    .home-about,
    .features,
    .testimonials,
    .partners-section {
        padding: 3rem 0;
    }

    .services-content,
    .courses-content,
    .contact-content,
    .about-content {
        padding: 3rem 0;
    }

    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

/* Software Training Program Styles */
.training-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
}

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

.feature-item span:last-child {
    color: var(--primary-white);
    font-weight: 500;
}

.training-illustration {
    position: relative;
    background: var(--primary-black);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.code-block {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: #d4d4d4;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-block code {
    color: #4fc1ff;
}

.training-tracks {
    padding: 6rem 0;
    background: var(--primary-black);
}

.training-tracks h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.track-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.track-card:hover::before {
    transform: translateY(0);
}

.track-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.track-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-header h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 0;
}

.track-content p {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.track-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.track-topics li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.track-topics li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

.track-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.track-details span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.learning-methodology {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.learning-methodology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.method-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-black);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.method-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-item p {
    color: var(--primary-white);
    line-height: 1.6;
}

.program-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.program-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

.benefit-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    min-width: 60px;
    text-align: center;
    background: var(--primary-black);
    border-radius: 8px;
    padding: 0.5rem;
    border: 2px solid var(--primary-yellow);
}

.benefit-text h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit-text p {
    color: var(--primary-white);
    line-height: 1.6;
}

.benefits-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-gray);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enrollment-process {
    padding: 6rem 0;
    background: var(--primary-black);
}

.enrollment-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--primary-white);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.cta-section h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Responsive Design for Training Page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .training-overview,
    .training-tracks,
    .learning-methodology,
    .program-benefits,
    .enrollment-process {
        padding: 3rem 0;
    }
    
    .overview-text h2,
    .training-tracks h2,
    .learning-methodology h2,
    .program-benefits h2,
    .enrollment-process h2 {
        font-size: 1.75rem;
    }
    
    .track-card,
    .method-item,
    .benefit-item {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .track-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .track-topics li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .track-details span {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .track-header h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
    }
}

/* Digital Marketing Page Styles */
.marketing-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--primary-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marketing-illustration {
    position: relative;
    background: var(--primary-black);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.4);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    color: var(--primary-white);
    font-weight: 600;
}

.core-services {
    padding: 6rem 0;
    background: var(--primary-black);
}

.core-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.service-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.stat {
    color: var(--light-gray);
    font-size: 0.9rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
}

.marketing-process {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.marketing-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--primary-white);
    line-height: 1.6;
}

.case-studies {
    padding: 6rem 0;
    background: var(--primary-black);
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-header h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin: 0;
}

.case-category {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.case-content p {
    color: var(--primary-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
}

.result-number {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.result-label {
    color: var(--primary-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
}

.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

.feature-item .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-text p {
    color: var(--primary-white);
    line-height: 1.6;
}

.choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-black);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--primary-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marketing-cta {
    padding: 6rem 0;
    background: var(--primary-black);
}

.cta-content {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.cta-content h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Digital Marketing Page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .key-metrics {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-step h3 {
        text-align: center;
    }
    
    .process-step p {
        text-align: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choose-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        padding: 0.8rem;
    }
    
    .result-number {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .result-label {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .marketing-overview,
    .core-services,
    .marketing-process,
    .case-studies,
    .why-choose-us,
    .marketing-cta {
        padding: 3rem 0;
    }
    
    .overview-text h2,
    .core-services h2,
    .marketing-process h2,
    .case-studies h2,
    .why-choose-us h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .case-study-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .choose-stats {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Software Development Services Page Styles */
.dev-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.dev-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dev-overview .overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.dev-overview .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.tech-stack h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.dev-illustration {
    position: relative;
    background: var(--primary-black);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.code-editor {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
}

.editor-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.editor-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.editor-title {
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.editor-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.6;
}

.editor-content code {
    color: #4fc1ff;
}

.dev-services {
    padding: 6rem 0;
    background: var(--primary-black);
}

.dev-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.dev-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dev-service-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dev-service-card .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.dev-service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dev-service-card:hover .service-image img {
    transform: scale(1.05);
}

.dev-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.dev-service-card:hover::before {
    transform: translateY(0);
}

.dev-service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.dev-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-service-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dev-service-card p {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dev-service-card .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.dev-service-card .service-features li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.dev-service-card .service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

/* Service Section Styles */
.service-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    animation: shimmer 3s infinite;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-header h2 {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.service-header p {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-details {
    background: var(--dark-gray);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 15px 15px 0 0;
}

.service-details:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.service-details h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-details > p {
    color: var(--primary-white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.service-details ul li {
    color: var(--primary-white);
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details ul li:last-child {
    border-bottom: none;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-details .btn {
    margin-top: 1rem;
}

/* Services Overview Cards */
.services-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-overview-card {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 15px 15px 0 0;
}

.service-overview-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.service-overview-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.service-overview-card h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-overview-card > p {
    color: var(--primary-white);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-highlights li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-highlights li:last-child {
    border-bottom: none;
}

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

.service-overview-card .btn {
    display: block;
    text-align: center;
    margin-top: auto;
}

/* Light theme adjustments for services overview */
[data-theme="light"] .services-overview {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--dark-gray) 100%);
}

[data-theme="light"] .service-overview-card {
    background: var(--primary-white);
    color: var(--primary-black);
}

[data-theme="light"] .service-overview-card h3 {
    color: var(--primary-black);
}

[data-theme="light"] .service-overview-card > p {
    color: var(--medium-gray);
}

[data-theme="light"] .service-highlights li {
    color: var(--primary-black);
    border-bottom-color: var(--medium-gray);
}

/* Mobile responsive for services overview */
@media (max-width: 768px) {
    .services-overview {
        padding: 3rem 0;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-overview-card {
        padding: 2rem;
    }
    
    .service-overview-card .service-icon {
        font-size: 2.5rem;
    }
    
    .service-overview-card h3 {
        font-size: 1.5rem;
    }
}

/* Light theme adjustments for service sections */
[data-theme="light"] .service-section {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--dark-gray) 100%);
}

[data-theme="light"] .service-details {
    background: var(--primary-white);
    color: var(--primary-black);
}

[data-theme="light"] .service-details h3 {
    color: var(--primary-black);
}

[data-theme="light"] .service-details > p {
    color: var(--medium-gray);
}

[data-theme="light"] .service-details ul li {
    color: var(--primary-black);
    border-bottom-color: var(--medium-gray);
}

[data-theme="light"] .service-header h2 {
    color: var(--primary-black);
}

[data-theme="light"] .service-header p {
    color: var(--light-gray);
}

/* Mobile responsive for service sections */
@media (max-width: 768px) {
    .service-section {
        padding: 3rem 0;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-header p {
        font-size: 1rem;
    }
    
    .service-details {
        padding: 2rem;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .service-details ul li {
        font-size: 0.95rem;
    }
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-yellow);
}

.dev-process {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.dev-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.process-step {
    text-align: center;
    max-width: 200px;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--primary-white);
    line-height: 1.5;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

.project-showcase {
    padding: 6rem 0;
    background: var(--primary-black);
}

.project-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.project-card {
    background: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-placeholder {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary-yellow);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--primary-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-yellow);
}

.project-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-stats .stat {
    background: rgba(255, 215, 0, 0.05);
    color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.why-choose-dev {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.why-choose-dev h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.why-choose-dev .choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-dev .choose-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-dev .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.why-choose-dev .feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

.why-choose-dev .feature-item .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-dev .feature-text h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-choose-dev .feature-text p {
    color: var(--primary-white);
    line-height: 1.6;
}

.why-choose-dev .choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-choose-dev .stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-black);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.why-choose-dev .stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.why-choose-dev .stat-card .stat-label {
    color: var(--primary-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-expertise {
    padding: 6rem 0;
    background: var(--primary-black);
}

.tech-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.tech-category h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-list .tech-item {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-list .tech-item:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.dev-cta {
    padding: 6rem 0;
    background: var(--primary-black);
}

.dev-cta .cta-content {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.dev-cta .cta-content h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dev-cta .cta-content p {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.dev-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Software Development Page */
@media (max-width: 768px) {
    .dev-overview .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dev-overview .overview-text h2 {
        font-size: 2rem;
    }
    
    .dev-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-dev .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-dev .choose-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .dev-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dev-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .dev-overview,
    .dev-services,
    .dev-process,
    .project-showcase,
    .why-choose-dev,
    .tech-expertise,
    .dev-cta {
        padding: 3rem 0;
    }
    
    .dev-overview .overview-text h2,
    .dev-services h2,
    .dev-process h2,
    .project-showcase h2,
    .why-choose-dev h2,
    .tech-expertise h2 {
        font-size: 1.75rem;
    }
    
    .dev-service-card,
    .project-card,
    .why-choose-dev .feature-item,
    .tech-category {
        padding: 1.2rem;
        margin: 0 0.3rem;
    }
    
    .dev-service-card .service-image {
        height: 150px;
    }
    
    .project-image {
        height: 150px;
    }
    
    .dev-service-card h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dev-service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dev-service-card .service-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .tech-used span {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .code-editor {
        margin: 0 0.3rem;
        overflow-x: auto;
        max-width: 100%;
    }
    
    .editor-content {
        padding: 1rem;
        font-size: 0.75rem;
        line-height: 1.4;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .editor-content code {
        font-size: 0.75rem;
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-choose-dev .choose-stats {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Payroll Solution Page Styles */
.payroll-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.payroll-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payroll-overview .overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.payroll-overview .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.key-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

.benefit-text {
    color: var(--primary-white);
    font-weight: 500;
}

.payroll-dashboard {
    position: relative;
    background: var(--primary-black);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

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

.dashboard-header h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.dashboard-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.dashboard-content {
    position: relative;
}

.payroll-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.4);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.payroll-features {
    padding: 6rem 0;
    background: var(--primary-black);
}

.payroll-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.feature-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--yellow-hover));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--primary-white);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.how-it-works {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--primary-white);
    line-height: 1.6;
}

.payroll-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.payroll-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.benefit-description h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-description p {
    color: var(--primary-white);
    line-height: 1.5;
}

.testimonial-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--primary-yellow);
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--primary-white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.compliance-stats h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.compliance-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
}

.compliance-icon {
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.compliance-item span:last-child {
    color: var(--primary-white);
    font-size: 0.9rem;
}

.pricing-plans {
    padding: 6rem 0;
    background: var(--primary-black);
}

.pricing-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
}

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

.pricing-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

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

.plan-header h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-yellow);
}

.period {
    color: var(--light-gray);
    font-size: 1rem;
}

.plan-description {
    color: var(--primary-white);
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    color: var(--primary-white);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-action {
    text-align: center;
}

.integration-partners {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.integration-partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.integration-partners p {
    text-align: center;
    color: var(--primary-white);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.partner-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.partner-logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
    margin: 0 auto 1rem auto;
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
}

.partner-item span {
    color: var(--primary-white);
    font-weight: 600;
}

.payroll-cta {
    padding: 6rem 0;
    background: var(--primary-black);
}

.payroll-cta .cta-content {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-yellow);
}

.payroll-cta .cta-content h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.payroll-cta .cta-content p {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.payroll-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Payroll Solution Page */
@media (max-width: 768px) {
    .payroll-overview .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payroll-overview .overview-text h2 {
        font-size: 2rem;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-number {
        min-width: auto;
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .pricing-card {
        max-width: 400px;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payroll-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payroll-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .payroll-overview,
    .payroll-features,
    .how-it-works,
    .payroll-benefits,
    .pricing-plans,
    .integration-partners,
    .payroll-cta {
        padding: 3rem 0;
    }
    
    .payroll-overview .overview-text h2,
    .payroll-features h2,
    .how-it-works h2,
    .payroll-benefits h2,
    .pricing-plans h2,
    .integration-partners h2 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .pricing-card,
    .benefit-highlight {
        padding: 1.5rem;
    }
    
    .feature-image {
        height: 150px;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .compliance-items {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        padding: 1.5rem;
    }
    
    .partner-logo {
        font-size: 2rem;
    }
}
