/* Theme Color Variables - Based on R&K Cleaning Maintenance Logo */
:root {
    --primary-gold: #C9A961;      /* Gold/Bronze from logo */
    --primary-dark: #1E3A5C;      /* Dark navy blue from logo */
    --primary-light: #D9B870;     /* Light gold accent */
    --secondary-dark: #1E3A5C;    /* Navy blue */
    --text-dark: #1E3A5C;         /* Dark navy text */
    --text-light: #FFFFFF;        /* Light text */
    --bg-light: #F5F5F5;          /* Light background */
    --border-color: #E0E0E0;      /* Border color */
}

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

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

/* Urdu Text Styling */
[data-lang="ur"],
[data-lang="ur"] h1,
[data-lang="ur"] h2,
[data-lang="ur"] h3,
[data-lang="ur"] p {
    font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

/* Header/Navbar Styles */
.navbar {
    background-color: #FFFFFF;
    padding: 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo img {
    height: 80px;
    width: auto;
}

.brand-name {
    color: var(--primary-gold);
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.navbar-menu a:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-container {
        flex-wrap: wrap;
        padding: 0.5rem 1.5rem;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

    .navbar-menu a:hover {
        background-color: var(--bg-light);
        border-bottom: none;
    }

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

    .navbar-logo img {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        font-size: 1rem;
    }

    .navbar-logo img {
        height: 55px;
    }

    .brand-name {
        display: none;
    }

    .navbar-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-menu a {
        padding: 0.8rem 1.5rem;
    }

    .navbar-menu.active {
        max-height: 250px;
    }
}

/* Main content area */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #F9F7F4 0%, #FFFFFF 100%);
    padding: 2rem 0 4rem 0;
    width: 100%;
}

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

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

.why-choose h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.why-choose-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-choose-features {
    list-style: none;
    padding: 0;
}

.why-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.why-feature i {
    font-size: 1.3rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.why-feature strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.why-feature p {
    margin: 0;
    color: #666;
}

.why-choose-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.why-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.why-choose-image:hover .why-image-photo {
    transform: scale(1.05);
}

/* Service Level Agreement Section */
.service-level-agreement {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    padding: 5rem 0;
    width: 100%;
    color: var(--text-light);
}

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

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

.sla-header h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.sla-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.sla-metric {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sla-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-light));
}

.sla-metric:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.1);
}

.sla-metric .sla-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.sla-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.sla-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.sla-metric p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #F9F7F4 0%, #FFFFFF 100%);
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.12);
}

.mission-card h2,
.vision-card h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    border-bottom: 3px solid var(--primary-gold);
    padding-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.features-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Features Showcase Section */
.features-showcase {
    background-color: white;
    padding: 2.5rem 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.showcase-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

.showcase-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, rgba(193, 154, 107, 0.05) 100%);
    border-radius: 50%;
}

.showcase-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

/* Training Programs Section */
.training-programs {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

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

.programs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.programs-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
    border-left-color: var(--primary-gold);
}

.program-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.program-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.urdu-text {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.program-description {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.7;
}

/* Gateway to Global Career Section */
.gateway-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    padding: 3rem;
    width: 100%;
    color: var(--text-light);
    border-radius: 15px;
    margin: 4rem 0;
}

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

.gateway-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gateway-header h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.gateway-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    opacity: 0.95;
}

/* CEO Message Section */
.ceo-message-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

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

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.ceo-image {
    position: relative;
}

.ceo-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(193, 154, 107, 0.2);
    border: 3px solid var(--primary-gold);
}

.ceo-text {
    padding: 2rem;
}

.ceo-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ceo-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.ceo-body {
    font-size: 1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ceo-signature {
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-gold);
    margin-top: 2rem;
}

.ceo-signature h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ceo-signature p {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 4rem 2rem;
    width: 100%;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-dark);
}

.cta-btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.cta-btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.cta-btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 92, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.cta-feature-item i {
    font-size: 1.3rem;
    color: var(--primary-gold);
}

/* Services Search Bar */
.services-search {
    background-color: var(--bg-light);
    padding: 2rem 0;
    width: 100%;
}

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

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-box i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.search-box input::placeholder {
    color: #999;
}

/* About Page - Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* About Stats Section */
.about-stats {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

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

.about-stats h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-gold);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Courses Page - Hero Section */
.courses-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.courses-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.courses-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.courses-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Overseas Page - Hero Section */
.overseas-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.overseas-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.overseas-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.overseas-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Page Language Switcher */
.page-language-switcher {
    background-color: white;
    padding: 2rem 0;
    width: 100%;
    border-bottom: 2px solid var(--border-color);
}

.switcher-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Overseas Placement Section */
.overseas-placement {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.lang-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-gold);
    background-color: transparent;
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--primary-gold);
    color: white;
}

.lang-btn:hover {
    background-color: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Placement Content */
.placement-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.placement-content .intro-text {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Placement Features */
.placement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.placement-feature {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-gold);
}

.placement-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
}

.placement-feature i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.placement-feature h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.placement-feature p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
}

/* Placement Button */
.placement-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 3rem;
    background-color: var(--primary-gold);
    color: white;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin: 0 auto;
    width: fit-content;
    border: 2px solid var(--primary-gold);
}

.placement-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

/* Placement Process Section */
.placement-process {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    padding: 4rem 0;
    width: 100%;
}

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

.process-content h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.process-content .process-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.process-step .step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Target Job Markets Section */
.target-job-markets {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

.markets-header {
    text-align: center;
    margin-bottom: 3rem;
}

.markets-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.markets-header p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
}

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

.market-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
}

.market-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.market-content {
    padding: 2rem;
}

.market-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-gold);
    padding-bottom: 0.8rem;
}

.market-content p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
}

/* Tools Page - Hero Section */
.tools-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.tools-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tools-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.tools-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Technical Tools Section */
.technical-tools {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

.tools-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.tools-intro h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.tools-intro p {
    font-size: 1.1rem;
    color: #555555;
}

/* Search Bar Styles */
.tools-search {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(181, 121, 43, 0.1);
}

.search-input-wrapper i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
}

.search-input::placeholder {
    color: #999999;
}

.search-clear {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: var(--primary-dark);
}

.search-results-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.search-results-info span {
    color: var(--primary-gold);
    font-weight: 700;
}

.tools-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-gold);
}

.category-title i {
    font-size: 2rem;
    color: var(--primary-gold);
}

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

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
}

.tool-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.tool-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tool-btn {
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.tool-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

/* Coming Soon Section */
.tools-coming-soon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    padding: 3rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.coming-soon-container {
    max-width: 900px;
    margin: 0 auto;
}

.tools-coming-soon h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.tools-coming-soon p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Ready to Enroll Section */
.ready-enroll-section {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    width: 100%;
    text-align: center;
}

.ready-enroll-container {
    max-width: 900px;
    margin: 0 auto;
}

.ready-enroll-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.ready-enroll-section p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ready-enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-gold);
    color: white;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
}

.ready-enroll-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

/* Hero Section Styles */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
    padding: 3rem 0 6rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, rgba(193, 154, 107, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-gold) 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.2);
}

.hero-left h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.2);
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(193, 154, 107, 0.35);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Explore Courses Button */
.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
}

.btn-explore:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(193, 154, 107, 0.2);
}

.hero-right {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    animation: slideInRight 0.8s ease-out;
}

footer {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 2rem 0 4rem 0;
    }

    .hero-right {
        display: none;
    }

    main {
        padding: 0 1.5rem;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-image {
        height: 300px;
    }

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

    .why-choose h2 {
        font-size: 2rem;
    }

    .why-choose-image {
        height: 250px;
    }

    .why-choose-text p {
        font-size: 1rem;
    }

    .sla-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sla-header h2 {
        font-size: 2rem;
    }

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

    .sla-metric {
        padding: 2rem 1.5rem;
    }

    .sla-value {
        font-size: 2.2rem;
    }

    .sla-label {
        font-size: 1rem;
    }

    .sla-icon {
        font-size: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-section {
        padding: 2rem 1.5rem;
    }

    .features-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.5rem;
    }

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

    .features-showcase-container {
        padding: 0 1.5rem;
    }

    .showcase-item {
        padding: 1rem;
    }

    .showcase-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .showcase-item h3 {
        font-size: 1rem;
    }

    .training-programs-container {
        padding: 0 1.5rem;
    }

    .programs-header h2 {
        font-size: 1.8rem;
    }

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

    .program-card {
        padding: 1.5rem;
    }

    .program-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .program-card h3 {
        font-size: 1.1rem;
    }

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

    .program-description {
        font-size: 0.9rem;
    }

    .ceo-message-container {
        padding: 0 1.5rem;
    }

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

    .ceo-text {
        padding: 1.5rem;
    }

    .ceo-text h2 {
        font-size: 1.8rem;
    }

    .ceo-intro {
        font-size: 1rem;
    }

    .ceo-body {
        font-size: 0.95rem;
    }

    .gateway-section {
        padding: 2.5rem;
        margin: 3rem 0;
    }

    .gateway-container {
        padding: 0 1.5rem;
    }

    .gateway-header h2 {
        font-size: 1.5rem;
    }

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

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2.8rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

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

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

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .cta-features {
        gap: 2rem;
    }

    .cta-feature-item {
        font-size: 0.9rem;
    }

    .about-hero {
        padding: 4rem 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-stats-container {
        padding: 0 1.5rem;
    }

    .about-stats h2 {
        font-size: 1.8rem;
    }

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

    .stat-card {
        padding: 2rem;
    }

    .stat-card h3 {
        font-size: 2.2rem;
    }

    .stat-card p {
        font-size: 1rem;
    }

    .courses-hero {
        padding: 4rem 1.5rem;
    }

    .courses-hero h1 {
        font-size: 2.5rem;
    }

    .courses-hero p {
        font-size: 1.1rem;
    }

    .overseas-hero {
        padding: 4rem 1.5rem;
    }

    .overseas-hero h1 {
        font-size: 2.5rem;
    }

    .overseas-hero p {
        font-size: 1.1rem;
    }

    .page-language-switcher {
        padding: 1.5rem 0;
    }

    .switcher-container {
        padding: 0 1.5rem;
    }

    .overseas-placement-container {
        padding: 0 1.5rem;
    }

    .placement-content h2 {
        font-size: 1.8rem;
    }

    .placement-content .intro-text {
        font-size: 1rem;
    }

    .placement-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .placement-feature {
        padding: 2rem 1.5rem;
    }

    .placement-feature i {
        font-size: 2.5rem;
    }

    .placement-feature h3 {
        font-size: 1.1rem;
    }

    .placement-feature p {
        font-size: 0.9rem;
    }

    .placement-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .placement-process-container {
        padding: 0 1.5rem;
    }

    .process-content h2 {
        font-size: 1.8rem;
    }

    .process-content .process-intro {
        font-size: 1rem;
    }

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

    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-step .step-number {
        font-size: 2.8rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .target-markets-container {
        padding: 0 1.5rem;
    }

    .markets-header h2 {
        font-size: 1.8rem;
    }

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

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

    .market-image {
        height: 200px;
    }

    .market-content {
        padding: 1.5rem;
    }

    .market-content h3 {
        font-size: 1.2rem;
    }

    .market-content p {
        font-size: 0.9rem;
    }

    .ready-enroll-section {
        padding: 3rem 1.5rem;
    }

    .ready-enroll-section h2 {
        font-size: 1.8rem;
    }

    .ready-enroll-section p {
        font-size: 1rem;
    }

    .ready-enroll-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .tools-hero {
        padding: 4rem 1.5rem;
    }

    .tools-hero h1 {
        font-size: 2.5rem;
    }

    .tools-hero p {
        font-size: 1.1rem;
    }

    .technical-tools-container {
        padding: 0 1.5rem;
    }

    .tools-intro h2 {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-card h4 {
        font-size: 1.1rem;
    }

    .tool-card p {
        font-size: 0.85rem;
    }

    .tools-search {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .search-input-wrapper {
        padding: 0.7rem 1.2rem;
    }

    .search-input {
        font-size: 0.95rem;
    }

    .tools-coming-soon {
        padding: 2.5rem 1.5rem;
    }

    .tools-coming-soon h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }

    .hero-left h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-whatsapp,
    .btn-explore {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        padding: 0.3rem 0;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    main {
        padding: 0 1rem;
    }

    .why-choose-container {
        padding: 0 1rem;
    }

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

    .why-choose h2 {
        font-size: 1.8rem;
    }

    .why-choose > div > p {
        font-size: 1rem;
    }

    .why-feature h3 {
        font-size: 1.2rem;
    }

    .why-feature-icon {
        font-size: 2.5rem;
    }

    .hero-right {
        display: none;
    }

    .mission-vision-container {
        padding: 0 1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-card,
    .vision-card {
        padding: 1.2rem;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
    }

    .features-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .features-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

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

    .feature-box {
        padding: 1.5rem 1rem;
    }

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

    .feature-box h3 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }

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

    .features-showcase-container {
        padding: 0 1rem;
    }

    .features-showcase {
        padding: 1.5rem 0;
    }

    .showcase-item {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .showcase-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .showcase-item h3 {
        font-size: 0.9rem;
    }

    .training-programs {
        padding: 2rem 0;
    }

    .training-programs-container {
        padding: 0 1rem;
    }

    .programs-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

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

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .program-card {
        padding: 1.2rem;
    }

    .program-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .program-card h3 {
        font-size: 1rem;
    }

    .urdu-text {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .program-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .ceo-message-section {
        padding: 2rem 0;
    }

    .ceo-message-container {
        padding: 0 1rem;
    }

    .ceo-content {
        gap: 1.5rem;
    }

    .ceo-text {
        padding: 1rem;
    }

    .ceo-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ceo-intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .ceo-body {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .ceo-signature {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .ceo-signature h3 {
        font-size: 1.1rem;
    }

    .gateway-section {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 10px;
    }

    .gateway-container {
        padding: 0 1rem;
    }

    .gateway-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .gateway-header p {
        font-size: 0.95rem;
    }

    .gateway-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        padding: 1.2rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .cta-feature-item {
        font-size: 0.85rem;
    }

    .about-hero {
        padding: 3rem 1rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .about-stats {
        padding: 2.5rem 0;
    }

    .about-stats-container {
        padding: 0 1rem;
    }

    .about-stats h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .courses-hero {
        padding: 3rem 1rem;
    }

    .courses-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .courses-hero p {
        font-size: 0.95rem;
    }

    .overseas-hero {
        padding: 3rem 1rem;
    }

    .overseas-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .overseas-hero p {
        font-size: 0.95rem;
    }

    .page-language-switcher {
        padding: 1rem 0;
    }

    .switcher-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .overseas-placement-container {
        padding: 0 1rem;
    }

    .language-switcher {
        margin-bottom: 2rem;
    }

    .lang-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .placement-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .placement-content .intro-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .placement-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .placement-feature {
        padding: 1.5rem 1rem;
    }

    .placement-feature i {
        font-size: 2.2rem;
    }

    .placement-feature h3 {
        font-size: 1rem;
    }

    .placement-feature p {
        font-size: 0.85rem;
    }

    .placement-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .placement-process-container {
        padding: 0 1rem;
    }

    .process-content h2 {
        font-size: 1.5rem;
    }

    .process-content .process-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .process-step .step-number {
        font-size: 2.5rem;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .target-markets-container {
        padding: 0 1rem;
    }

    .markets-header h2 {
        font-size: 1.5rem;
    }

    .markets-header p {
        font-size: 0.95rem;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-image {
        height: 180px;
    }

    .market-content {
        padding: 1.2rem;
    }

    .market-content h3 {
        font-size: 1.1rem;
    }

    .market-content p {
        font-size: 0.85rem;
    }

    .ready-enroll-section {
        padding: 2.5rem 1rem;
    }

    .ready-enroll-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .ready-enroll-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .ready-enroll-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .tools-hero {
        padding: 3rem 1rem;
    }

    .tools-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .tools-hero p {
        font-size: 0.95rem;
    }

    .technical-tools-container {
        padding: 0 1rem;
    }

    .tools-intro h2 {
        font-size: 1.5rem;
    }

    .tools-intro p {
        font-size: 0.95rem;
    }

    .tools-category {
        margin-bottom: 2.5rem;
    }

    .category-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .category-title i {
        font-size: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .tool-card {
        padding: 1.2rem;
    }

    .tool-card h4 {
        font-size: 1rem;
    }

    .tool-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .tool-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .tools-search {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .search-input-wrapper {
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }

    .search-input-wrapper i {
        font-size: 1rem;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .search-clear {
        font-size: 1rem;
    }

    .search-results-info {
        font-size: 0.85rem;
    }

    .tools-coming-soon {
        padding: 2rem 1rem;
    }

    .tools-coming-soon h2 {
        font-size: 1.3rem;
    }

    .tools-coming-soon p {
        font-size: 0.9rem;
    }
}

/* ===================== Calculator Pages ===================== */

/* Calculator Hero Section */
.calculator-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.calculator-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.calculator-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Calculator Section */
.calculator-section {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

.calculator-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-intro h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.calculator-intro p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

/* Calculator Content */
.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(181, 121, 43, 0.1);
}

.calculator-btn {
    width: 100%;
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.calculator-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 121, 43, 0.3);
}

/* Calculator Results */
.calculator-results {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.calculator-results h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

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

.result-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--primary-gold);
}

.result-card h4 {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 800;
    margin: 0;
}

.results-note {
    font-size: 0.9rem;
    color: #777777;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Calculator Info Section */
.calculator-info {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    width: 100%;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.info-container > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

.info-container h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.parameter-item {
    background: white;
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.parameter-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.parameter-item p {
    color: #555555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(181, 121, 43, 0.1);
}

.faq-question {
    width: 100%;
    background-color: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question.active {
    background-color: var(--bg-light);
    color: var(--primary-gold);
}

.faq-question-text {
    flex: 1;
    text-align: left;
}

.faq-icon {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: var(--bg-light);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #555555;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Calculator CTA Section */
.calculator-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    padding: 3rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.calculator-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-gold);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .calculator-hero {
        padding: 4rem 1.5rem;
    }

    .calculator-hero h1 {
        font-size: 2.5rem;
    }

    .calculator-hero p {
        font-size: 1.1rem;
    }

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

    .calculator-form {
        padding: 2rem;
    }

    .calculator-intro h2 {
        font-size: 1.8rem;
    }

    .info-container h2 {
        font-size: 1.6rem;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer-content {
        padding: 1.2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .calculator-hero {
        padding: 3rem 1rem;
    }

    .calculator-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .calculator-hero p {
        font-size: 0.95rem;
    }

    .calculator-container {
        padding: 0 1rem;
    }

    .calculator-intro h2 {
        font-size: 1.5rem;
    }

    .calculator-intro p {
        font-size: 0.95rem;
    }

    .calculator-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }

    .calculator-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .calculator-results {
        padding: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-value {
        font-size: 1.5rem;
    }

    .calculator-info {
        padding: 2.5rem 1rem;
    }

    .info-container h2 {
        font-size: 1.4rem;
    }

    .info-container h3 {
        font-size: 1.2rem;
    }

    .parameter-item {
        padding: 1.2rem;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-icon {
        font-size: 0.8rem;
        margin-left: 0.8rem;
    }

    .faq-answer-content {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .calculator-cta {
        padding: 2rem 1rem;
    }

    .calculator-cta h2 {
        font-size: 1.5rem;
    }

    .calculator-cta p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===================== Contact Page ===================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Contact Info Group */
.contact-info-group h2,
.leadership-group h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 800;
}

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

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(181, 121, 43, 0.15);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.info-details h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-details p {
    color: #555555;
    font-size: 1rem;
    margin: 0;
}

.info-details a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--primary-dark);
}

/* Leadership Section */
.leadership-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

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

/* Leadership Group */
.leadership-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leadership-group h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 800;
}

.team-members-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Team Member */
.team-member {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(181, 121, 43, 0.1);
}

.team-role {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-light));
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.team-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.team-phone:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

.team-phone i {
    font-size: 1rem;
}

/* Map Section */
.contact-map {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.contact-map h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    padding: 2rem 2rem 1rem 2rem;
}

.contact-map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 0 0 12px 12px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-group h2,
    .leadership-group h2,
    .contact-map h2 {
        font-size: 1.6rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .info-details h3 {
        font-size: 1.1rem;
    }

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

    .team-member {
        padding: 1.2rem;
        gap: 1.2rem;
    }

    .team-role {
        min-width: 120px;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    .contact-map h2 {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .contact-map-iframe {
        height: 350px;
    }

    .leadership-section {
        padding: 3rem 0;
    }

    .leadership-container {
        padding: 0 1.5rem;
    }

    .leadership-group h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 1rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .contact-info-group h2,
    .leadership-group h2,
    .contact-map h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .info-card {
        padding: 1.2rem;
        gap: 1.2rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .info-details h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .info-details p {
        font-size: 0.9rem;
    }

    .contact-map h2 {
        padding: 1.2rem 1rem 0.8rem 1rem;
        font-size: 1.3rem;
    }

    .contact-map-iframe {
        height: 300px;
    }

    .leadership-section {
        padding: 2.5rem 0;
    }

    .leadership-container {
        padding: 0 1rem;
    }

    .leadership-group h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

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

    .team-member {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
    }

    .team-role {
        width: 100%;
        min-width: unset;
    }

    .team-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .team-phone {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .team-phone i {
        font-size: 0.9rem;
    }
}

/* ===================== Footer ===================== */

footer {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 3rem 0 0 0;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-section i {
    color: var(--primary-gold);
    margin-right: 0.6rem;
    min-width: 1rem;
}

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

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

.footer-section ul li a {
    color: #cccccc;
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(181, 121, 43, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaaaaa;
    margin: 0.3rem 0;
}

.powered-by {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(181, 121, 43, 0.2);
}

.powered-by p {
    font-size: 0.8rem;
    color: #888888;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.powered-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.powered-by p:hover .powered-logo {
    opacity: 1;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .powered-by {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }

    .powered-by p {
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .powered-logo {
        height: 18px;
    }
}

/* ===================== Promotions Slider Section ===================== */

.promotions-slider-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

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

.promotions-slider-container h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-align: center;
}

.promotions-slider-container > .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 2.5rem;
}

.promotions-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.promotions-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.promotion-slide {
    min-width: 100%;
    flex: 0 0 100%;
    cursor: pointer;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.promotion-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.promotion-slide:hover img {
    transform: scale(1.05);
}

/* Slider Controls */
.promotions-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0 1rem 0;
}

.promotions-nav-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.2);
}

.promotions-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.3);
}

.promotions-nav-btn:active {
    transform: translateY(-1px);
}

/* Dots indicator */
.promotions-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.promotion-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.promotion-dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.3);
}

.promotion-dot:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

/* Promotion Modal */
.promotion-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-direction: column;
    gap: 1.5rem;
}

.promotion-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
}

.promotion-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.promotion-modal-close:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
}

#promotionModalImage {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    background-color: #000000;
}

.promotion-download-btn {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.2);
    font-family: 'Poppins', sans-serif;
}

.promotion-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
}

.promotion-download-btn:active {
    transform: translateY(-1px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .promotions-slider-section {
        padding: 3rem 0;
    }

    .promotions-slider-container {
        padding: 0 1.5rem;
    }

    .promotions-slider-container h2 {
        font-size: 2rem;
    }

    .promotion-slide {
        aspect-ratio: 4/3;
    }

    .promotions-controls {
        gap: 1.5rem;
        padding: 1.5rem 0 1rem 0;
    }

    .promotions-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .promotion-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: -2.5rem;
    }

    #promotionModalImage {
        max-height: 65vh;
    }

    .promotion-download-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .promotions-slider-section {
        padding: 2rem 0;
    }

    .promotions-slider-container {
        padding: 0 1rem;
    }

    .promotions-slider-container h2 {
        font-size: 1.5rem;
    }

    .promotions-slider-container > .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .promotion-slide {
        aspect-ratio: 3/2;
    }

    .promotions-controls {
        gap: 1rem;
        padding: 1rem 0 0.5rem 0;
    }

    .promotions-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .promotions-dots {
        gap: 0.6rem;
    }

    .promotion-dot {
        width: 10px;
        height: 10px;
    }

    .promotion-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: -2.2rem;
    }

    #promotionModalImage {
        max-height: 60vh;
    }

    .promotion-download-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .promotion-download-btn i {
        font-size: 0.9rem;
    }
}

/* ===================== Review Video Section ===================== */

.review-video-section {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

.review-video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.2);
    font-family: 'Poppins', sans-serif;
}

.view-reviews-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(193, 154, 107, 0.35);
}

.view-reviews-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.25);
}

.view-reviews-btn i {
    font-size: 1.2rem;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.review-modal-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    max-width: 450px;
    animation: slideIn 0.3s ease-out;
}

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

.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.review-modal-close:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    transform: scale(1.1);
}

.review-modal-title {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.review-modal-title h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.review-modal-title p {
    font-size: 1rem;
    color: #555555;
    margin: 0;
}

.review-video-wrapper {
    padding: 1.5rem;
    background-color: #000000;
    overflow: hidden;
}

.review-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    background-color: #000000;
    max-width: 100%;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .review-video-section {
        padding: 3rem 0;
    }

    .review-video-container {
        padding: 0 1.5rem;
    }

    .view-reviews-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .review-modal-content {
        max-width: 90%;
    }

    .review-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: 1rem;
        right: 1rem;
    }

    .review-modal-title {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .review-modal-title h2 {
        font-size: 1.5rem;
    }

    .review-modal-title p {
        font-size: 0.9rem;
    }

    .review-video-wrapper {
        padding: 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .review-video-section {
        padding: 2rem 0;
    }

    .review-video-container {
        padding: 0 1rem;
    }

    .view-reviews-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .view-reviews-btn i {
        font-size: 1rem;
    }

    .review-modal-content {
        max-width: 100%;
        border-radius: 10px;
    }

    .review-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .review-modal-title {
        padding: 1.2rem 1rem 0.8rem 1rem;
    }

    .review-modal-title h2 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .review-modal-title p {
        font-size: 0.85rem;
    }

    .review-video-wrapper {
        padding: 1rem;
    }
}

/* ===================== Floating WhatsApp Button ===================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(181, 121, 43, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    width: 65px;
    height: 65px;
    font-size: 2.2rem;
    box-shadow: 0 8px 40px rgba(181, 121, 43, 0.6);
    transform: translateY(-5px);
}

.whatsapp-button:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(181, 121, 43, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-button:hover {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-button:hover {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===================== Floating Phone Button ===================== */

.phone-button {
    position: fixed;
    bottom: 7.5rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(30, 58, 92, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.phone-button:hover {
    width: 65px;
    height: 65px;
    font-size: 2rem;
    box-shadow: 0 8px 40px rgba(30, 58, 92, 0.6);
    transform: translateY(-5px);
}

.phone-button:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 92, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .phone-button {
        bottom: 7rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .phone-button:hover {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .phone-button {
        bottom: 7rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        box-shadow: 0 4px 20px rgba(30, 58, 92, 0.5);
    }

    .phone-button:hover {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        box-shadow: 0 6px 30px rgba(30, 58, 92, 0.6);
    }
}

/* ===================== Expert Solutions Section ===================== */

.expert-solutions {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    padding: 4rem 0;
    width: 100%;
    color: var(--text-light);
}

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

.expert-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expert-header h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.expert-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.expert-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.expert-challenge,
.expert-solution {
    margin-bottom: 2rem;
}

.expert-challenge h3,
.expert-solution h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.expert-challenge p,
.expert-solution p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}


.expert-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.expert-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.expert-feature-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.expert-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0;
    font-weight: 500;
    line-height: 1.8;
}

.expert-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 1rem;
    border: 2px solid var(--primary-gold);
}

.expert-btn i {
    font-size: 1.2rem;
}

.expert-btn:hover {
    background: var(--text-light);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expert-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.expert-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.expert-image:hover .expert-image-photo {
    transform: scale(1.05);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .expert-solutions {
        padding: 3rem 0;
    }

    .expert-solutions-container {
        padding: 0 1.5rem;
    }

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

    .expert-text h2 {
        font-size: 2rem;
    }

    .expert-text p {
        font-size: 0.95rem;
    }

    .expert-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .expert-image {
        height: 300px;
    }

    .expert-image-box {
        font-size: 3.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .expert-solutions {
        padding: 2rem 0;
    }

    .expert-solutions-container {
        padding: 0 1.5rem;
    }

    .expert-text h2 {
        font-size: 1.6rem;
    }

    .expert-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .expert-features {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .expert-feature-item {
        font-size: 0.85rem;
    }

    .expert-cta-text {
        font-size: 0.95rem;
    }

    .expert-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .expert-image {
        height: 250px;
    }

    .expert-image-box {
        font-size: 2.5rem;
    }
}

/* ===================== Services Page Hero ===================== */
.services-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary-dark) 0%, #2a4a6f 100%);
    background-size: 25px 25px, 100% 100%;
    padding: 6rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 1.5rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}

/* ===================== Our Services Section ===================== */

.our-services {
    background-color: white;
    padding: 4rem 0;
    width: 100%;
}

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

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

.services-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-header p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-gold);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    align-self: center;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
    padding: 0.8rem;
    background-color: rgba(201, 169, 97, 0.05);
    border-radius: 8px;
}

.service-features li {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--primary-gold);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
    border: 2px solid var(--primary-gold);
}

.service-link i {
    font-size: 1.1rem;
}

.service-link:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .our-services {
        padding: 3rem 0;
    }

    .our-services-container {
        padding: 0 1.5rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

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

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

    .service-card {
        padding: 2rem;
    }

    .service-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
    }

    .service-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-features {
        padding: 0.8rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .our-services {
        padding: 2rem 0;
    }

    .our-services-container {
        padding: 0 1.5rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-features {
        padding: 0.7rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .service-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Services View More Section */
.services-view-more {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.services-view-more p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.view-more-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .services-view-more {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .services-view-more p {
        font-size: 1rem;
    }

    .view-more-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .services-view-more {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .services-view-more p {
        font-size: 0.95rem;
    }

    .view-more-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}
