:root {
    --primary: #FFCC00;
    --primary-dark: #E6B800;
    --secondary: #1A1A1A;
    --secondary-light: #333333;
    --text-dark: #111111;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-bg: #F8F9FA;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

body.no-scroll {
    overflow: hidden;
}

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

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

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

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

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

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

/* Header */
header {
    height: 120px;
    /* Increased from 100px for even larger logo (85px) */
    display: flex;
    align-items: center;
    background: transparent;
    /* Transparent over full-screen hero */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* When scrolled, nav links go dark */
header .nav-links a {
    color: var(--white);
    transition: color 0.3s ease;
}

header.scrolled .nav-links a {
    color: var(--secondary);
}

header .logo {
    color: var(--white);
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: var(--secondary);
}

header .hamburger span {
    background: var(--white);
    transition: background 0.3s ease;
}

header.scrolled .hamburger span {
    background: var(--secondary);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -15px;
    /* Shifting logo more to the left */
}

.logo-img {
    max-height: 85px;
    /* Increased to 85px as requested */
    width: auto;
    display: block;
}

.logo span {
    color: var(--primary);
    margin-left: 2px;
}

.logo-icon {
    background: var(--primary);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-num {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
    /* White by default on transparent header */
    transition: color 0.3s ease;
}

header.scrolled .phone-num {
    color: var(--secondary);
    /* Dark on scrolled header */
}

/* Hero Slideshow */
.hero {
    position: relative;
    height: 100vh;
    /* Full screen */
    min-height: 600px;
    overflow: hidden;
}

.slides {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.slide-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.how-it-works {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.play-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.nav-arr {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.nav-arr:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.hero-info-box {
    position: absolute;
    bottom: 0;
    /* Flush to bottom edge */
    right: 0;
    /* Flush to right corner */
    width: 380px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.info-top {
    background: var(--primary);
    padding: 35px 45px;
    position: relative;
    overflow: hidden;
}

.info-top::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 10px, transparent 10px, transparent 20px);
    transform: rotate(0deg);
}

.info-top span {
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.info-top h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary);
}

.info-bottom {
    background: var(--secondary);
    color: var(--white);
    padding: 22px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.info-bottom:hover {
    background: #000;
}

.info-bottom span {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.info-bottom .plus-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Services */
.services {
    padding: 100px 0;
}

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

.services-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sub-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
}

.sub-img.logo-placeholder {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.checklist {
    margin-bottom: 40px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #EEEEEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.services-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.cta-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: var(--white);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 100;
    margin-top: -50px;
    /* Adjusting text position to be further from info box */
}

.hero-content span {
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 18px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testi-label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--primary);
}

.testimonials h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.testi-text {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.stars {
    color: var(--primary);
    display: flex;
    gap: 5px;
}

.testi-nav {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Features */
.features {
    padding: 120px 0;
}

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

.map-wrapper {
    position: relative;
}

.map-img {
    width: 100%;
    opacity: 0.8;
}

.feature-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.features-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.features-content p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.features-btns {
    display: flex;
    gap: 20px;
}

/* Perfected Services Section */
.powerful-services {
    padding: 120px 0 100px;
    background: #f8fafc;
}

/* Section Header — centred & bold */
.powerful-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.powerful-services .section-header span {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.powerful-services .section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    max-width: 700px;
    margin: 0 auto;
}

.services-tab-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover {
    border-color: #cbd5e1;
    color: #1e293b;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #2563eb;
    color: var(--white) !important;
    border-color: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.tab-btn.active svg {
    color: var(--white);
}

.tab-content-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 60px;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.tab-panel.active {
    display: grid;
    animation: slideUpFade 0.6s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-img {
    width: 100%;
    height: 100%;
    /* Reduced height to make it wider than longer */
    object-fit: cover;
}

.panel-details {
    padding: 50px 70px;
    /* Adjusted padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    header {
        height: 95px;
        /* Slightly taller for larger mobile logo */
    }

    .logo-img {
        max-height: 60px;
        /* Bigger mobile logo */
    }

    .logo {
        margin-left: -5px;
        /* Less shift on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0a1931;
        /* Premium dark blue for mobile menu */
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white) !important;
        /* Force white links for contrast */
        font-size: 20px;
        font-weight: 700;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1100;
        /* Ensuring it's significantly higher than nav-links */
    }

    .hamburger.active span {
        background: var(--white) !important;
        /* Ensure visibility on dark menu */
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-info-box {
        bottom: 0;
        right: 0;
        width: 85%;
        max-width: 380px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide the decorative image grid on tablet — text fills full width */
    .services-img-grid {
        display: none;
    }

    .services-content {
        width: 100%;
    }

    /* Header: hide phone number on tablet/mobile */
    .header-right .phone-num {
        display: none;
    }

    /* Hide the nav Contact button inside nav-links on mobile (keep Get a Quote) */
    .nav-links .btn-dark {
        display: none;
    }

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

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    /* Slideshow — reduced text on mobile */
    .slide-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-btns .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .how-it-works {
        display: none;
        /* Hide "How it works" on mobile */
    }

    .hero-info-box {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }

    .tab-panel {
        grid-template-columns: 1fr;
    }

    .panel-img {
        height: 300px;
    }

    .panel-details {
        padding: 40px 30px;
    }

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

    /* Hide the world map so features text fills full width */
    .map-wrapper {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.panel-icon-box {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 25px;
}

.panel-details h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.1;
}

.panel-details p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.panel-features {
    margin-bottom: 30px;
    list-style: none;
}

.panel-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--secondary);
    flex-shrink: 0;
}

.request-btn {
    background: var(--primary);
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    font-size: 15px;
    transition: var(--transition);
}

.request-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    /* Thicker border for better highlighting */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.15);
    transform: translateY(-5px);
}

.service-card.highlight h4 {
    color: #1e293b;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .powerful-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tab-panel {
        grid-template-columns: 1fr;
    }

    .panel-details {
        padding: 50px;
    }
}

@media (max-width: 640px) {
    .powerful-grid {
        grid-template-columns: 1fr;
    }

    .panel-details h3 {
        font-size: 32px;
    }
}

/* ===========================
   Why Choose Us — Redesigned
   =========================== */
.why-us {
    background: #f8fafc;
}

/* Top: full-width dark banner with diagonal clip */
.why-us-top {
    background: var(--secondary);
    padding: 100px 0 160px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.why-us-top-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.why-us-header .why-label {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.why-us-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto 30px;
}

/* Stats bar — 4 horizontal items */
.why-us-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.stat-box {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.04);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: rgba(255, 204, 0, 0.08);
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num span {
    color: var(--primary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom: overlapping white feature cards */
.why-us-bottom {
    padding: 0 0 100px;
    margin-top: -80px;
}

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

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.why-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.why-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Responsive Why Choose Us */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-top-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-header h2 {
        font-size: 36px;
    }

    .why-us-stats {
        flex-wrap: wrap;
        border-radius: 0;
        border: none;
        gap: 15px;
    }

    .stat-box {
        flex: 0 0 calc(50% - 8px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-us-stats {
        gap: 10px;
    }

    .stat-num {
        font-size: 38px;
    }

    .why-us-top {
        clip-path: none;
        padding-bottom: 100px;
    }

    .why-us-bottom {
        margin-top: 20px;
    }
}

/* CTA Banner & Footer */
.cta-live-chat {
    background: var(--primary);
    padding: 40px 0;
}

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

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.chat-bubble-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cta-text-box h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.cta-text-box p {
    font-weight: 600;
    color: rgba(26, 26, 26, 0.7);
}

.cta-right {
    display: flex;
    align-items: center;
}

.cta-right .btn {
    padding: 15px 35px;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-col p {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.rating-num {
    font-size: 48px;
    font-weight: 800;
}

.rating-stars h5 {
    font-size: 14px;
    color: #a0aec0;
}

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

.footer-links a {
    color: #a0aec0;
    font-size: 15px;
}

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

.newsletter-box {
    position: relative;
    margin-top: 30px;
}

.newsletter-box input {
    width: 100%;
    background: #2d3748;
    border: 1px solid #4a5568;
    padding: 18px 25px;
    border-radius: 8px;
    color: var(--white);
    outline: none;
}

.newsletter-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #a0aec0;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #a0aec0;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tab-panel {
        grid-template-columns: 1fr;
    }

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

    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left {
        flex-direction: column;
    }
}

/* Our Strength Section */
.strengths-section {
    padding: 100px 0;
    background: #0a1931;
    /* Same premium dark blue */
    color: var(--white);
    text-align: center;
}

.strengths-header {
    margin-bottom: 60px;
}

.strength-pill {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.strengths-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.strengths-header p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.strengths-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.strength-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition);
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.strength-card:hover .strength-icon {
    background: var(--primary);
    color: var(--secondary);
}

.strength-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.strength-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .strength-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .strength-card {
        flex: 0 1 100%;
    }

    .strengths-header h2 {
        font-size: 32px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-header p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.info-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blue-card {
    background: #1e40af;
    /* Deeper blue */
    color: var(--white);
}

.yellow-card {
    background: var(--primary);
    color: var(--secondary);
}

.white-card {
    background: var(--white);
    padding: 25px 30px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-top: 15px;
    color: #1e3a8a;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.white-card h3 {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-form-col {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.message-form h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 35px;
    font-weight: 800;
}

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

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group label span {
    float: right;
    font-weight: normal;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: #f8fafc;
    color: var(--secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    width: 100%;
    padding: 18px;
    background: #1d4ed8;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.send-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

@media (max-width: 1024px) {
    .testi-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .testi-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 30px;
    }

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

/* ===========================
   Internal Pages (About, Services, Contact)
   =========================== */
.internal-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-top: 0;
}



.internal-hero .container {
    position: relative;
    z-index: 10;
}

.internal-hero h1 {
    font-size: 64px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
}

.internal-hero p {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .internal-hero {
        height: 50vh;
        min-height: 400px;
    }
    .internal-hero h1 {
        font-size: 44px;
    }
    .internal-hero p {
        font-size: 18px;
    }
}

/* ===========================
   Mission & Vision Section
   =========================== */
.mission-vision {
    padding: 100px 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px 50px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: var(--white);
    border-color: var(--primary);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===========================
   Core Values Section
   =========================== */
.core-values {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-header span {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.core-values-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.core-values-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

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

.cv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.cv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.cv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cv-card:hover .cv-icon {
    background: var(--primary);
    color: var(--secondary);
}

.cv-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cv-grid {
        grid-template-columns: 1fr;
    }
    .core-values-header h2 {
        font-size: 36px;
    }
}