/* --- Hero Section & General --- */
:root {
    --primary-blue: #0d6efd;
    --dark-text: #212529;
    --light-text: #6c757d;
    --section-bg: #f8f9fa; /* Light gray for section bg */
    --border-color: #e9ecef;
    --primary-orange: #e67e22;
    --dark-heading: #0f172a;
    --glass-border: rgba(255, 255, 255, 0.6);
    --bg-light: #f9fafb;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --card-border: #e5e7eb;
    --text-body: #4b5563;
    --bg-soft: #f8fafc;
}

/* Section Container */
.hero-section {
    padding: 40px 0 0 0;
    background: #fff;
    /* overflow-x: hidden; */
    /* height: 100%; */
    position: relative; /* Essential for absolute positioning of SVG/Stats */
}

/* Typography */
.hero-title {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 2.5rem;
    line-height: 1.2;
}

.highlight-blue {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 35px;
    max-width: 90%;
}

/* Features Section */
.feature-box {
    text-align: left;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
}

.feature-box-content {
    padding-left: 15px;
}

.icon-wrapper {
    min-width: 50px;
    height: 50px;
    background-color: #eef6ff;
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.05rem;
    /* margin-bottom: 5px; */
    color: var(--dark-text);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.4;
}

/* --- BACKGROUND SVG (The Wave) --- */
.bg-pattern {
    position: absolute;
    top: 32%; /* Sticks to the top */
    left: 0;
    width: 100%; /* Spans full width */
    height: auto; /* Maintains aspect ratio */
    max-height: 100%;
    z-index: 0; /* Behind content */
    opacity: 1;
}

/* --- RIGHT SIDE IMAGE AREA --- */
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

/* The div holding the image */
.image-div {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
}

/* Specific Image Styling (Circular & Sized) */
.image-div img {
    width: 400px;
    height: 377px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Floating Stat Boxes */
.stat-box {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    display: flex;
    align-items: center;
    min-width: 160px;
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}

.stat-icon {
    font-size: 1.3rem;
    margin-right: 12px;
}

.stat-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-text);
}

.stat-text span {
    font-size: 0.75rem;
    color: var(--light-text);
}

/* Positioning Stat Boxes */
.box-1 {
    top: 5%;
    right: 0px;
    animation-delay: 0s;
}

.box-2 {
    top: 40%;
    left: -20px;
    animation-delay: 2s;
}

.box-3 {
    bottom: 5%;
    right: 0px;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .feature-box {
        display: block;
        text-align: center;
        margin-top: 30px;
    }
    .feature-box-content {
        padding-left: 0;
        padding-top: 10px;
    }
    .icon-wrapper {
        margin: 0 auto;
    }

    /* Image Section Mobile */
    .image-wrapper {
        margin-top: 60px;
    }
    .image-div img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    } /* Responsive circle on mobile */
    .stat-box {
        display: none;
    } /* Hide floats on small screens */
}

/* --- header.css --- */

/* Navbar General Styling */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow like reference */
    padding: 15px 0;
    font-family: "Poppins", sans-serif;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd; /* Brand Blue */
}

/* Nav Links */
.nav-link {
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd;
}

.dropdown-toggle::after {
    vertical-align: middle; /* Aligns the arrow better */
}

/* --- THE RICH DROPDOWN (Services & International) --- */
.custom-dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    min-width: 320px; /* Wide enough for the content */
    margin-top: 15px; /* Spacing from navbar */
}

/* The individual item in the dropdown */
.rich-dropdown-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with top of text */
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-bottom: 5px;
}

.rich-dropdown-item:hover {
    background-color: #f8f9fa; /* Light grey hover */
}

/* The Icon Box (Light Blue Square) */
.item-icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px; /* Prevents shrinking */
    background-color: #eef6ff; /* The light blue bg from reference */
    color: #0d6efd; /* The blue icon color */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Text Styling */
.item-text-content {
    display: flex;
    flex-direction: column;
}

.item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 2px;
}

.item-subtitle {
    font-size: 0.75rem;
    color: #6c757d; /* Grey subtext */
    font-weight: 400;
}

/* --- ACTION BUTTONS (Right Side) --- */
.btn-track {
    background-color: #0d6efd; /* Orange color from reference */
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s;
}

.btn-track:hover {
    background-color: #0a5bd3; /* Darker orange on hover */
    color: #fff;
}

.header-icons .icon-link {
    color: #333;
    font-size: 1.1rem;
    margin-right: 15px;
    text-decoration: none;
}

.btn-login-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-heading); /* Uses your dark blue/black variable */
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Reserved for hover effect */
    background: transparent;
}

.btn-login-minimal i {
    font-size: 1.1rem;
    color: #94a3b8; /* Subtle gray icon */
    transition: color 0.3s;
}

.btn-login-minimal:hover {
    color: var(--primary-blue);
    background-color: #f0f9ff; /* Very faint blue bg on hover */
    border-color: rgba(13, 110, 253, 0.15); /* Subtle border on hover */
    transform: translateY(-1px);
}

.btn-login-minimal:hover i {
    color: var(--primary-blue);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .custom-dropdown-menu {
        border: 1px solid #eee;
        box-shadow: none;
        width: 100%;
        min-width: 100%;
    }
    .navbar-collapse {
        padding-top: 20px;
    }
    .btn-track {
        width: 100%;
        margin-top: 10px;
    }

    .btn-login-minimal {
        display: inline-flex; /* Ensure it stays inline on mobile menu */
        border: 1px solid #e2e8f0; /* Add border on mobile for clarity */
        width: auto;
        justify-content: center;
    }
}

/* ... existing navbar styles ... */

.navbar-brand {
    padding: 0; /* Remove default padding to let image fit */
    margin-right: 20px;
}

/* Control logo size */
.navbar-brand img {
    /* height: 45px; Adjust this value to match your preferred navbar height */
    width: 210px; /* Maintains aspect ratio */
    display: block;
}

/* --- Header Icons & Socials --- */

.header-icons .icon-link {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.header-icons .icon-link:hover {
    color: #0d6efd; /* Brand Blue */
}

/* Social Link Styling */
.social-link {
    color: #6c757d; /* Muted Grey */
    font-size: 1.1rem;
    margin: 0 8px; /* Spacing between icons */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effects (Brand Colors or just Blue) */
.social-link:hover {
    transform: translateY(-2px); /* Subtle lift effect */
}

.social-link .fa-facebook-f:hover {
    color: #1877f2;
}
.social-link .fa-instagram:hover {
    color: #e4405f;
}
.social-link .fa-twitter:hover {
    color: #1da1f2;
}
/* If using X icon: .social-link .fa-x-twitter:hover { color: #000; } */

/* ... rest of your css ... */

/* --- Services Section Styling --- */

.services-section {
    padding: 80px 0;
    background-color: #f9faff; /* Very light blue-grey background to separate from Hero */
}

/* Section Title */
.section-title {
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 0 auto;
}

/* --- Custom Tabs Styling --- */
.custom-tabs {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 40px;
    gap: 10px;
}

.custom-tabs .nav-link {
    border: 1px solid #e0e0e0;
    border-radius: 50px; /* Pill shape */
    color: #555;
    font-weight: 500;
    padding: 10px 30px;
    background: #fff;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    background-color: #f1f1f1;
    color: #0d6efd;
}

.custom-tabs .nav-link.active {
    background-color: #0d6efd; /* Brand Blue */
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* --- Service Card Design (Unique Layout) --- */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.055);
    /* Soft shadow initially */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%; /* Ensures equal height in grid */
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Lift up + Blue Border Bottom */
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #0d6efd; /* Adds a unique touch */
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #eef6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 10px;
}

/* Pricing Style */
.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-subtext {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

/* Action Button */
.btn-service {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    background-color: #fff;
    color: rgb(255 193 7); /* Orange text */
    border: 2px solid rgb(255 193 7);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-service:hover {
    background-color: rgb(255 193 7);
    color: #fff;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Pushes content to fill height */
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1b1b1b;
    line-height: 1.4;
}

/* Custom Check Icon */
.feature-list li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #198754; /* Green color for check */
    font-size: 0.9rem;
}

/* --- Blog Section Styling --- */

.blog-section {
    padding: 80px 0;
    background-color: #fff; /* Clean white background to contrast with services section */
}

/* Section Header (Reusing existing classes if possible, or defining new ones) */
.section-title-center {
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

/* --- Blog Card Unique Design --- */
.blog-card {
    background: #fff;
    border-radius: 16px; /* Consistent rounded corners */
    overflow: hidden; /* Needed for image zoom effect */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Very soft shadow */
    transition: all 0.3s ease;
    height: 100%; /* For equal height grid */
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Removes underline from the anchor tag wrapper */
}

/* Hover Effect: Lift Card */
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Image Wrapper & Zoom Effect */
.blog-img-thumb {
    position: relative;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

.blog-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Smooth zoom */
}

/* Zoom image on card hover */
.blog-card:hover .blog-img-thumb img {
    transform: scale(1.08);
}

/* Card Body Content */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Data (Date) */
.blog-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 8px;
    color: #0d6efd; /* Brand Blue icon */
}

/* Blog Title */
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Title changes color on hover */
.blog-card:hover .blog-title {
    color: #0d6efd;
}

/* Arrow Icon Animation */
.title-arrow {
    font-size: 1rem;
    opacity: 0.6;
    color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.blog-card:hover .title-arrow {
    opacity: 1;
    color: #0d6efd;
    transform: translateX(5px); /* Moves right on hover */
}

/* Excerpt */
.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes footer down */
}

/* Footer & Category Badge */
.blog-footer {
    margin-top: auto; /* Ensures it sticks to bottom */
}

.category-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: #eef6ff; /* Light blue bg */
    color: #0d6efd; /* Blue text */
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.blog-card:hover .category-badge {
    background-color: #0d6efd;
    color: #fff;
}

/* View All Button Wrapper */
.view-all-btn-wrapper {
    margin-top: 25px;
    text-align: center;
}

.btn-view-all {
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-all:hover {
    background-color: #0b5ed7; /* Darker blue */
    color: #fff;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* FAQS SECTION */

.faq-section {
    padding: 80px 0;
    background-color: #f9faff;
    font-family: sans-serif; /* Fallback font */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Layout (Flexbox) --- */
.faq-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.faq-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.faq-content {
    flex: 1;
}

/* --- Image Side & CTA Box --- */
.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    min-height: 500px; /* Ensures height matches content roughly */
}

.faq-cta-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.cta-title {
    margin: 0 0 10px 0;
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-text {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.cta-button:hover {
    gap: 15px; /* Arrow moves slightly on hover */
}

/* --- Content Side --- */
.section-title {
    color: var(--dark-text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- Accordion Styles --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
}

.faq-header {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-header {
    color: var(--primary-blue);
}

.faq-icon {
    color: var(--light-text);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-item.active .faq-body {
    max-height: 200px; /* Adjust if content is very long */
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 991px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-image-wrapper {
        width: 100%;
        order: -1; /* Image on top on mobile, or remove to put bottom */
    }

    .faq-cta-box {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: -50px; /* Pull up overlap */
        margin-left: 20px;
        margin-right: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .faq-image {
        min-height: 300px;
    }
}

/* =========================================
   Aesthetic Contact Section Styles
   ========================================= */

.aesthetic-contact-section {
    padding: 100px 0;
    background-color: #f0f2f5; /* Slightly darker gray bg for contrast */
    font-family: sans-serif;
}

/* Main wrapper that holds both panels */
.contact-wrapper-unique {
    display: flex;
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); /* Deep, soft shadow */
}

/* --- Left Panel: Info & Branding --- */
.contact-info-panel {
    flex: 2; /* Takes 40% width roughly */
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        #0a58ca
    ); /* Gradient using your primary color */
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

/* Subtle dot pattern overlay for texture */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.info-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-text span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-text a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: opacity 0.3s;
}

.info-text a:hover {
    opacity: 0.7;
}

/* --- Right Panel: Form --- */
.contact-form-panel {
    flex: 3; /* Takes 60% width */
    padding: 60px;
    background-color: #fff;
}

.form-heading {
    color: var(--dark-text);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Modern Input Styling */
.input-wrapper,
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f4f7fc; /* Light blue-gray background instead of border */
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Focus state - pops with primary color */
.input-wrapper:focus-within,
.phone-input-wrapper:focus-within {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
}

.input-icon {
    position: absolute;
    left: 20px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 55px; /* Padding left for icon space */
    font-size: 1rem;
    color: var(--dark-text);
    outline: none;
    font-family: inherit;
}

.textarea-input {
    padding: 16px 20px; /* No icon padding needed for textarea */
    resize: vertical;
    background-color: #f4f7fc; /* Light blue-gray background instead of border */
    border-radius: 12px;
    /* border-radius: 10px; */
    min-height: 120px;
}

/* Phone specific styling */
.phone-input-wrapper {
    padding-left: 20px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    border-right: 2px solid #e0e0e0;
    color: var(--dark-text);
    font-weight: 600;
}

.phone-input-wrapper .form-input {
    padding-left: 20px; /* Reset padding for phone input */
}

/* Aesthetic Submit Button */
.aesthetic-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(
        --primary-blue
    ); /* Using your blue instead of orange */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px -10px rgba(13, 110, 253, 0.5);
}

.aesthetic-submit-btn:hover {
    background-color: #0a58ca; /* Slightly darker blue */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(13, 110, 253, 0.7);
}

.aesthetic-submit-btn i {
    transition: transform 0.3s ease;
}

.aesthetic-submit-btn:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* =========================================
   Responsive Design (Tablet & Mobile)
   ========================================= */
@media (max-width: 991px) {
    .contact-wrapper-unique {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 30px;
        flex: auto;
    }

    .info-title {
        font-size: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr; /* Stack name and email */
        gap: 0;
    }
}

@media (max-width: 480px) {
    .aesthetic-contact-section {
        padding: 60px 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 1.75rem;
    }

    /* .info-item{
        display: block;
    } */

    .info-item .info-text a {
        font-size: 15px;
    }
}

/* =========================================
   Trademark Process Section (Strict Variables)
   ========================================= */
/* =========================================
   FIXED ZIG-ZAG LAYOUT CSS
   ========================================= */

/* Container Setup */
.process-roadmap-section {
    padding: 80px 0;
    background-color: #f4f6fa;
    font-family: sans-serif;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* --- Section Header --- */
.section-title {
    font-size: 2.25rem;
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle-main {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.badge-orange {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(13, 110, 253, 0.1); /* Kept blue to match theme */
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* --- Container & Layout --- */
.roadmap-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column; /* Stack rows vertically */
}

/* Central Vertical Line */
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border-color);
    transform: translateX(-50%);
    z-index: 0;
}

/* --- The Rows (Items) --- */
.roadmap-item {
    display: flex; /* This makes items sit side-by-side */
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* --- The 3 Columns inside each Row --- */

/* 1. Content Box (Takes 50% space) */
.roadmap-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

/* 2. Middle Connector (Fixed Width) */
.roadmap-connector {
    flex: 0 0 80px; /* Fixed 80px width in the middle */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 3. Empty Space (Takes remaining 50%) */
.roadmap-empty-space {
    flex: 1;
    /* Invisible, just takes space to push content to the side */
}

/* --- Content Styling --- */
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Override orange icons to Blue to stay in theme */
.icon-orange {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.step-number-sub {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.color-orange {
    color: var(--primary-blue);
}

.step-desc {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Dots & Horizontal Lines --- */
.connector-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--border-color);
}

.connector-line {
    height: 2px;
    width: 50px; /* Length of the small horizontal line */
    background-color: var(--border-color);
}

/* --- Responsive (Mobile) --- */
@media (max-width: 991px) {
    .roadmap-line {
        left: 30px; /* Move vertical line to left */
    }

    .roadmap-item {
        flex-direction: column; /* Stack everything vertically */
        align-items: flex-start;
        padding-left: 70px; /* Make space for the line */
        margin-bottom: 40px;
    }

    /* Hide the empty space and horizontal lines on mobile */
    .roadmap-empty-space,
    .connector-line {
        display: none;
    }

    .roadmap-connector {
        position: absolute;
        left: 10px;
        top: 0;
        width: 40px;
        height: 100%;
        justify-content: flex-start; /* Align dot to top */
        padding-top: 5px;
    }

    .connector-dot {
        margin: 0;
    }

    .roadmap-content {
        width: 100%; /* Full width card */
        flex: auto;
    }
}

/* =========================================
   Aesthetic Footer Styles
   ========================================= */

.aesthetic-footer {
    background-color: #fff; /* Clean White Background */
    border-top: 1px solid #eaeaea; /* Subtle separator */
    padding: 80px 0 30px 0;
    font-family: sans-serif;
    color: var(--dark-text);
    position: relative;
}

/* Optional: Top decorative line */
.aesthetic-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(to right, var(--primary-blue), #6dd5ed); */
}

.footer-layout {
    display: grid;
    /* Grid Layout: Brand(2fr) | Links(1fr) | Links(1fr) | Links(1fr) | Contact(1.5fr) */
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- Brand Column --- */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-block;
    /* margin-bottom: 15px; */
}
.footer-logo .dot {
    color: #e67e22;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

/* Rating Box */
.rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    width: fit-content;
}

.g-icon {
    font-size: 1.5rem;
    color: #4285f4; /* Google Blue */
}

.rating-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.stars {
    color: #fbbc05;
    font-size: 0.8rem;
}

/* Social & Payments */
.footer-heading-sm {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.payment-icons {
    font-size: 2rem;
    color: #666;
    display: flex;
    gap: 15px;
    opacity: 0.8;
}

/* --- Links Columns --- */
.footer-col h5.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.link-category {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mt-3 {
    margin-top: 1.5rem;
}
.mt-4 {
    margin-top: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--light-text); /* #6c757d */
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px; /* Slight movement on hover */
}

/* --- Contact Column --- */
.contact-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-links li {
    margin-bottom: 15px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.contact-links a:hover {
    background: #e9ecef;
}
.contact-links i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.address-box p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.secure-badge {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design (Mobile)
   ========================================= */
@media (max-width: 1200px) {
    .footer-layout {
        grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Contact moves down or stacks */
    }
    .contact-col {
        grid-column: span 4;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .footer-layout {
        grid-template-columns: 1fr 1fr; /* 2 Column Grid */
        gap: 30px;
    }
    .brand-col {
        grid-column: span 2;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 30px;
    }
    .contact-col {
        grid-column: span 2;
        border-top: 1px solid #f0f0f0;
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .aesthetic-footer {
        padding: 50px 0 20px 0;
    }

    .footer-layout {
        display: flex;
        flex-direction: column; /* Single Column Stack */
        gap: 40px;
    }

    .brand-col,
    .contact-col {
        border: none;
        padding: 0;
    }

    /* Center align brand on mobile for clean look */
    .brand-col {
        text-align: center;
    }
    .footer-tagline {
        margin: 0 auto 25px auto;
    }
    .rating-box {
        margin: 0 auto 25px auto;
    }
    .social-icons,
    .payment-icons {
        justify-content: center;
    }

    .contact-links a {
        justify-content: center;
    }
}

/* =========================================
   "Future Hub" Hero CSS
   ========================================= */

.future-hero {
    position: relative;
    padding: 50px 0 70px 0;
    overflow: hidden;
    font-family: "Inter", sans-serif; /* Clean, modern font */
    text-align: center;
    /* background-color: #f8fafc; Very light cool grey */
}

/* --- Ambient Mesh Background (The Modern Look) --- */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: breath 8s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(13, 110, 253, 0.15) 0%,
        transparent 70%
    );
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(230, 126, 34, 0.1) 0%,
        transparent 70%
    );
    bottom: -150px;
    right: 10%;
}

@keyframes breath {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- Central Content --- */
.hero-center-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Tag */
.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Typography */
.future-title {
    font-size: 4rem; /* Big impact */
    font-weight: 800;
    color: var(--dark-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.future-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
}

/* --- THE SEARCH ENGINE BOX (Main Feature) --- */
.search-engine-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px); /* Frosted Glass */
    padding: 10px;
    border-radius: 24px;
    border: 1px solid #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Clean outline glow */
    transition: transform 0.3s;
}

.search-engine-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(13, 110, 253, 0.15);
}

/* Tabs inside search */
.search-tabs {
    display: flex;
    gap: 5px;
    padding: 0 10px 10px 10px;
}
.tab {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
}
.tab.active {
    background-color: #eff6ff;
    color: var(--primary-blue);
}

/* Input Area */
.search-input-group {
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #e2e8f0;
    transition: border 0.3s;
}

.search-input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.icon-holder {
    width: 40px;
    display: flex;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
}

.main-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--dark-heading);
    padding: 10px;
}

.btn-search-glow {
    background: linear-gradient(135deg, var(--primary-blue), #0a58ca);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.3s;
}

.btn-search-glow:hover {
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
    transform: scale(1.02);
}

.search-helper {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.search-helper i {
    color: #22c55e;
}

/* --- Trust Metrics (Bottom) --- */
.trust-metrics {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-heading);
}

.metric-label {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: #cbd5e1;
}

/* --- Floating Elements (The Aesthetics) --- */
.floating-element {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: none; /* Hidden on small screens, shown on large */
}

@media (min-width: 1200px) {
    .floating-element {
        display: block;
    }
}

.float-left {
    left: 10%;
    animation: float 6s ease-in-out infinite;
}
.float-right {
    right: 10%;
    animation: float 5s ease-in-out infinite reverse;
}
.float-top-left {
    top: 15%;
    left: 10%;
    animation: float 7s ease-in-out infinite; /* Slower float */
}

/* Top Right Position */
.float-top-right {
    top: 20%;
    right: 8%;
    animation: float 6s ease-in-out infinite reverse; /* Reverse float */
}

.glass-icon-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #fff;
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.glass-icon-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}
.glass-icon-box.box-orange i {
    color: var(--primary-orange);
}
.glass-icon-box span {
    font-weight: 700;
    color: var(--dark-heading);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-20px);
    }
    100% {
        transform: translateY(-50%) translateY(0px);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive (Mobile) --- */
@media (max-width: 991px) {
    .future-hero {
        padding: 80px 0;
    }

    .future-title {
        font-size: 2.5rem;
    }

    .search-engine-box {
        padding: 15px;
    }

    .btn-search-glow {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .trust-metrics {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .metric-divider {
        display: none;
    }
    .metric-item {
        min-width: 100px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .future-title {
        font-size: 2rem;
    }

    .search-input-group {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    .icon-holder {
        display: none;
    }
    .main-search-input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    .btn-search-glow {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   "About Us" Hub Section (Static & Solid)
   ========================================= */

.hub-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

.hub-layout {
    display: flex;
    align-items: center; /* Aligns text vertically with the image/cards */
    gap: 50px;
}

/* --- LEFT SIDE: Content --- */
.hub-content-left {
    flex: 1;
    max-width: 500px; /* Limits text width for readability */
}

.hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff4e6; /* Light Orange/Beige */
    color: #e67e22;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid #ffe8cc;
}

.hub-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient-orange {
    color: var(--primary-blue); /* Or keep it orange/black */
}

.hub-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Features Grid (Icons) */
.hub-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.hub-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hub-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circle icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.icon-blue {
    background: #eff6ff;
    color: var(--primary-blue);
}
.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}
.icon-green {
    background: #ecfdf5;
    color: #10b981;
}

.hub-feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.hub-feature-text p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.btn-hub-action {
    display: inline-block;
    background-color: #ef4444; /* Red/Orange Button */
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-hub-action:hover {
    background-color: #dc2626;
}

/* --- RIGHT SIDE: Visuals (The Image + Card Stack) --- */
.hub-visual-right {
    flex: 1.2; /* Give more space to visuals */
    display: flex;
    align-items: center;
    position: relative;
    /* This creates the overlap effect */
    margin-right: -20px;
}

/* 1. Image Container */
.image-container-static {
    width: 60%; /* Image takes 60% of right side */
    position: relative;
    z-index: 1;
}

.static-main-img {
    width: 100%;
    height: 500px; /* Tall vertical image */
    object-fit: cover;
    border-radius: 20px;
    /* Optional: Slight shadow for depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blue Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px; /* Hangs off the left slightly */
    background-color: #1e3a8a; /* Dark Blue */
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
    text-align: center;
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.2;
    display: block;
}

/* 2. Stats Column (The Cards) */
.stats-column-static {
    width: 45%; /* Cards take 45% */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: -40px; /* Overlaps the image by 40px */
    position: relative;
    z-index: 2; /* Sits on top of image */
}

/* The Solid White Cards */
.stat-box-solid {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Clean shadow */
    border: 1px solid #f1f1f1;
    /* Static, No Animation */
}

.stat-num-solid {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ef4444; /* The Red/Orange number from reference */
    margin: 0 0 5px 0;
}

.stat-label-solid {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.stat-desc-solid {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   Responsive Design (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .hub-layout {
        flex-direction: column;
        gap: 60px;
    }

    .hub-title {
        font-size: 2rem;
    }

    .hub-content-left {
        max-width: 100%;
        text-align: center;
    }

    .hub-features-grid {
        align-items: center; /* Center checkmarks */
        text-align: left;
    }

    .hub-feature-item {
        background: #f8fafc;
        padding: 15px;
        border-radius: 8px;
        width: 100%;
    }

    /* Visual Side Mobile */
    .hub-visual-right {
        flex-direction: column; /* Stack vertically */
        width: 100%;
        margin-right: 0;
    }

    .image-container-static {
        width: 100%; /* Full width image */
    }

    .static-main-img {
        height: 350px; /* Shorter image on mobile */
    }

    .stats-column-static {
        width: 100%;
        margin-left: 0;
        margin-top: -30px; /* Pull up slightly over image bottom */
        padding: 0 20px; /* Safe padding */
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 15px;
        min-width: 100px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

/* Call to action button */

.final-cta-section {
    padding: 80px 0;
    background-color: #fff;
}
.text-gradient-orange {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-box-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        #0043a8
    ); /* Uses your blue */
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-white {
    background-color: #fff;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-transparent {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-cta-transparent:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Decorative Circle in background */
.cta-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-box-gradient {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-buttons {
        flex-direction: column;
    }

    .logo-track {
        gap: 40px;
    }
    .logo-track img {
        height: 25px;
    }
}

/* =========================================
   Modern Blog Page CSS
   ========================================= */

.modern-blog-page {
    background-color: #fff;
    font-family: "Inter", sans-serif;
    color: var(--dark-heading);
}

/* --- 1. Hero Header --- */
.blog-hero-header {
    position: relative;
    padding: 80px 0 60px 0;
    text-align: center;
    background: #f8fbff; /* Very faint blue tint */
    overflow: hidden;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.blog-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #dbeafe;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-page-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Search Bar */
.blog-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-search-wrapper:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

.search-icon {
    padding: 0 15px 0 20px;
    color: #9ca3af;
    font-size: 1rem;
}

.blog-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--dark-heading);
    padding: 10px 0;
}

.btn-search-blog {
    background-color: var(--dark-heading);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-search-blog:hover {
    background-color: var(--primary-blue);
}

/* Background Glows */
.blog-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}
.glow-1 {
    width: 400px;
    height: 400px;
    background: #e0f2fe;
    top: -100px;
    left: -100px;
}
.glow-2 {
    width: 300px;
    height: 300px;
    background: #ffedd5;
    bottom: -50px;
    right: -50px;
}

/* --- 2. Category Nav (Sticky) --- */
.category-nav-sticky {
    position: sticky;
    top: 0; /* Sticks to top of browser when scrolling */
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
    padding: 15px 0;
}

.category-scroll-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px; /* Space for scrollbar if any */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.category-scroll-wrapper::-webkit-scrollbar {
    display: none;
} /* Hide Chrome */

.cat-pill {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-pill:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #f0f9ff;
}

.cat-pill.active {
    background: var(--dark-heading); /* Or Primary Blue */
    color: #fff;
    border-color: var(--dark-heading);
}

/* --- 3. Blog Grid & Cards --- */
.blog-container-padding {
    padding-top: 50px;
    padding-bottom: 80px;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.grid-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.post-count {
    color: #9ca3af;
    font-size: 0.9rem;
}

.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.blog-card-modern {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-img {
    transform: scale(1.05); /* Slight zoom */
}

.cat-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.tag-blue {
    background: rgba(13, 110, 253, 0.9);
    color: #fff;
}
.tag-orange {
    background: rgba(230, 126, 34, 0.9);
    color: #fff;
}
.tag-green {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-title a {
    color: var(--dark-heading);
    text-decoration: none;
    transition: color 0.2s;
}
.card-title a:hover {
    color: var(--primary-blue);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1; /* Pushes author to bottom */
    display: -webkit-box;
    --webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Section */
.author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-info .name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-heading);
}
.author-info .role {
    font-size: 0.75rem;
    color: #9ca3af;
}

.read-more-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--dark-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-card-modern:hover .read-more-btn {
    background: var(--primary-blue);
    color: #fff;
}

/* --- 4. Pagination / Load More --- */
.pagination-wrapper {
    margin-top: 60px;
    text-align: center;
}

.btn-load-more {
    background-color: transparent;
    color: var(--dark-heading);
    border: 1px solid #d1d5db;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    border-color: var(--dark-heading);
    background-color: var(--dark-heading);
    color: #fff;
    transform: translateY(-2px);
}

/* Animation Utilities */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .blog-page-title {
        font-size: 2.5rem;
    }
    .modern-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    } /* 2 cols on tablet */
}

@media (max-width: 600px) {
    .blog-hero-header {
        padding: 50px 0;
    }
    .blog-page-title {
        font-size: 2rem;
    }

    .modern-blog-grid {
        grid-template-columns: 1fr;
    } /* 1 col on mobile */

    .blog-card-modern {
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-search-blog {
        padding: 12px 20px;
    }
}

/* =========================================
   Modern Single Blog Page CSS
   ========================================= */

/* --- 1. Reading Progress Bar --- */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: transparent;
}

.reading-progress-bar {
    height: 4px;
    background: var(--primary-orange);
    width: 0%;
    transition: width 0.1s ease;
}

/* --- 2. Hero Section (Split Layout) --- */
.blog-post-hero {
    background-color: var(--bg-soft);
    padding: 80px 0 80px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.hero-split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

/* Text Side */
.hero-text-side {
    flex: 1;
    max-width: 600px; /* Limits width for better readability */
}

.breadcrumb-modern {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breadcrumb-modern a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.2s;
}
.breadcrumb-modern a:hover {
    color: var(--primary-blue);
}
.breadcrumb-modern .sep {
    margin: 0 8px;
    color: #cbd5e1;
}
.breadcrumb-modern .current {
    color: var(--primary-blue);
}

.post-main-title {
    font-size: 3rem; /* Big & Bold */
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-heading);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--primary-blue);
}

.post-meta-detailed {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--dark-heading);
    font-size: 1rem;
}

.post-date {
    font-size: 0.85rem;
    color: #64748b;
}

/* Image Side */
.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Pushes image to right */
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    max-width: 550px; /* Constraint image width */
    width: 100%;
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-frame:hover .featured-img {
    transform: scale(1.02);
}

.hero-cat-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- 3. Content Layout (Centered Single Column) --- */
.blog-content-grid {
    display: flex;
    justify-content: center; /* Centers the article */
    padding-bottom: 80px;
}

.article-body {
    max-width: 950px; /* Optimal reading width */
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem; /* 18px for better readability */
    line-height: 1.8;
    color: var(--text-body);
}

/* Typography inside Article */
.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--dark-heading);
    font-weight: 500;
    margin-bottom: 40px;
}

.highlight-yellow {
    background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%; /* Only highlights bottom 40% */
    background-position: 0 90%;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 25px;
}

.modern-quote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 25px;
    margin: 40px 0;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-heading);
    font-weight: 600;
    background: transparent;
}

/* Modern Checklist */
.check-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.check-list-modern li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.check-list-modern li::before {
    content: "\f00c"; /* Font Awesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-blue);
    font-size: 1rem;
}

/* In-Content CTA Box */
.cta-insert-box {
    background: #eff6ff; /* Light blue tint */
    border: 1px solid #dbeafe;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    transition: transform 0.3s ease;
}

.cta-insert-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.cta-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.cta-text h5 {
    margin: 0 0 5px 0;
    font-weight: 700;
    color: var(--dark-heading);
    font-size: 1.1rem;
}

.cta-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}

.btn-cta-small {
    margin-left: auto;
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-cta-small:hover {
    background: #0b5ed7;
}

/* =========================================
   Responsive Design (Mobile)
   ========================================= */
@media (max-width: 991px) {
    /* Stack Hero Section */
    .hero-split-layout {
        flex-direction: column-reverse; /* Puts image on top on mobile, text below */
        gap: 30px;
    }

    .hero-text-side {
        max-width: 100%;
        text-align: center; /* Center text on mobile */
    }

    /* Center Align Meta Info on Mobile */
    .post-meta-detailed {
        justify-content: center;
    }

    .post-main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* Image Full Width */
    .hero-image-side {
        width: 100%;
        justify-content: center;
    }

    .image-frame {
        max-width: 100%;
    }

    /* Article Body Adjustments */
    .article-body {
        padding: 0 15px; /* Side padding */
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    /* CTA Box Stacking */
    .cta-insert-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-cta-small {
        margin-left: 0;
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* =========================================
   About Us Premium Hero CSS
   ========================================= */

.about-hero-section {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: var(--bg-soft);
    font-family: "Inter", sans-serif;
    overflow: hidden; /* To clip background patterns */
}

/* Background Pattern (Subtle grid or shape) */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 0;
    mask-image: linear-gradient(
        to left,
        black,
        transparent
    ); /* Fades out to left */
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.about-hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- Left Side: Typography --- */
.about-text-content {
    flex: 1;
    max-width: 600px;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.pill-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-heading);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.text-highlight-blue {
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}
/* Underline effect for highlight */
.text-highlight-blue::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(13, 110, 253, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.about-hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Founder Quote Box */
.founder-signature-box {
    border-left: 4px solid var(--primary-blue);
    padding-left: 25px;
    margin-top: 30px;
}

.founder-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark-heading);
    margin-bottom: 15px;
    font-weight: 500;
}

.founder-meta strong {
    display: block;
    color: var(--dark-heading);
    font-size: 1rem;
}
.founder-meta span {
    font-size: 0.85rem;
    color: #64748b;
}

/* --- Right Side: Visual Composition --- */
.about-visual-composition {
    flex: 1;
    position: relative;
    height: 500px; /* Fixed height for composition */
    display: flex;
    align-items: center;
}

/* Image 1: The Back Image (Top Right) */
.img-back-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.img-back {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Image 2: The Front Image (Bottom Left) */
.img-front-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 65%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    border: 8px solid var(--bg-soft); /* Creates "cutout" effect matching bg */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.img-front {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Glass Stat Card */
.glass-stat-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid #fff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 5s ease-in-out infinite;
}

.icon-circle-orange {
    width: 45px;
    height: 45px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark-heading);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 3px;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Utilities */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 60px 0;
    }

    .about-hero-layout {
        flex-direction: column;
        gap: 60px;
    }

    .about-text-content {
        max-width: 100%;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .founder-signature-box {
        border-left: none;
        border-top: 4px solid var(--primary-blue);
        padding-left: 0;
        padding-top: 20px;
        margin: 30px auto 0 auto;
        max-width: 80%;
    }

    /* Adjust Composition for Mobile */
    .about-visual-composition {
        width: 100%;
        height: 350px; /* Smaller height on mobile */
    }

    .img-back-wrapper {
        width: 80%;
        height: 80%;
        right: 0;
    }
    .img-front-wrapper {
        width: 60%;
        height: 60%;
        left: 0;
        border-width: 5px;
    }

    .glass-stat-card {
        right: 0;
        bottom: 20px;
        padding: 10px 15px;
    }
}

/* =========================================
   "Why Choose Us" Bento Grid CSS
   ========================================= */

.wcu-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: "Inter", sans-serif;
}

/* Header Styling */
.wcu-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.wcu-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: #fff4e6;
    padding: 6px 14px;
    border-radius: 30px;
}

.wcu-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wcu-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- THE BENTO GRID --- */
.bento-grid-wrapper {
    display: grid;
    /* 3 Columns Layout */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Common Card Styles */
.bento-card {
    background: #ffffff; /* Very light grey bg */
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    /* background: #fff; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #fff;
}

/* Card Specific Grid Positions */
.card-large {
    grid-column: span 2; /* Takes 2 columns */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-tall {
    grid-row: span 2; /* Takes 2 rows (Vertical) */
    background: var(--dark-heading); /* Dark contrast card */
    color: #fff;
    border: none;
}

.card-standard {
    grid-column: span 1;
}

.card-wide {
    grid-column: span 2;
}

/* Content Styling */
.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 0 10px 0;
    color: var(--dark-heading);
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

/* Specific styling for the Dark Tall Card */
.card-tall h3 {
    color: #fff;
}
.card-tall p {
    color: #94a3b8;
}
.card-tall .centered {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Icons styling */
.icon-box-soft {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.blue-soft {
    background: #eff6ff;
    color: var(--primary-blue);
}
.orange-soft {
    background: #fff7ed;
    color: var(--primary-orange);
}
.green-soft {
    background: #f0fdf4;
    color: #16a34a;
}
.purple-soft {
    background: #f3e8ff;
    color: #9333ea;
}

/* Visuals: Progress Bar (Card 1) */
.card-visual-bottom {
    margin-top: 30px;
}
.progress-bar-visual {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.prog-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #64748b;
}
.prog-track {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.prog-fill {
    width: 85%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 10px;
}

/* Visuals: Circular Chart (Card 2) */
.circular-chart {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 20px;
}
.circular-chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.circle-bg {
    fill: none;
    stroke: #334155;
    stroke-width: 2.5;
}
.circle {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 2.5;
    stroke-linecap: round;
}
.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

/* Visuals: Tech Dots (Card 5) */
.card-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.visual-side {
    padding-left: 20px;
}
.tech-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.tech-dots span {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: background 0.3s;
}
.bento-card:hover .tech-dots span:nth-child(odd) {
    background: var(--primary-blue);
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .bento-grid-wrapper {
        grid-template-columns: 1fr; /* Stack everything in 1 column */
        grid-template-rows: auto;
    }

    .card-large,
    .card-tall,
    .card-standard,
    .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card-content-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .visual-side {
        display: none; /* Hide decorative dots on mobile to save space */
    }

    .wcu-title {
        font-size: 2rem;
    }
}

/* =========================================
   "Vision & Mission" Section CSS
   ========================================= */

.vision-mission-section {
    position: relative;
    padding: 120px 0;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    color: #fff;
}

/* Cinematic Background Setup */
.vision-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* High quality abstract or office image */
    background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates cool parallax effect on desktop */
    z-index: 0;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay to make text readable (Dark Blue) */
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9),
        rgba(13, 110, 253, 0.8)
    );
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Header */
.vision-header {
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.vision-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.vision-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.text-white-highlight {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Cards Layout */
.vision-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.vision-card {
    flex: 1;
    max-width: 500px;
    background: #fff; /* Crisp white card */
    color: var(--dark-heading);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px); /* Lift up effect */
}

/* Icons */
.card-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.blue-icon-bg {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
}
.orange-icon-bg {
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-orange);
}

.card-text-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-heading);
}

.card-text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* Decorative Bottom Line */
.card-deco-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
}
.blue-line {
    background: var(--primary-blue);
}
.orange-line {
    background: var(--primary-orange);
}

/* Animation Utility */
.animate-fade-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
.animate-fade-right {
    animation: fadeInRight 1s ease forwards 0.3s;
    opacity: 0;
    transform: translateX(-30px);
}
.animate-fade-left {
    animation: fadeInLeft 1s ease forwards 0.3s;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .vision-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .vision-card {
        width: 100%;
        max-width: 100%;
        padding: 40px 30px;
    }

    .vision-title {
        font-size: 2.2rem;
    }
    .vision-bg-image {
        background-attachment: scroll;
    } /* Disable parallax on mobile for performance */
}

/* =========================================
   Premium Contact Page CSS
   ========================================= */

.contact-premium-section {
    position: relative;
    padding: 100px 0;
    /* Dark Background for contrast & premium feel */
    background-color: var(--dark-heading);
    color: #fff;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* Background Ambient Glows */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 0;
}
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        var(--primary-blue) 0%,
        transparent 70%
    );
    top: -200px;
    left: -100px;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Layout */
.contact-premium-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* --- Left Side: Typography --- */
.contact-text-side {
    flex: 1;
    max-width: 550px;
}

.highlight-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue); /* Blue Text */
    margin-bottom: 25px;
    font-weight: 700;
}

.premium-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient-blue {
    background: linear-gradient(
        135deg,
        #60a5fa,
        #3b82f6
    ); /* Lighter blue for dark bg */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-desc {
    font-size: 1.1rem;
    color: #94a3b8; /* Light gray text */
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Contact Details Cards */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detail-card .label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
}
.detail-card .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- Right Side: Glass Form --- */
.contact-form-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.glass-form-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.05); /* Very transparent */
    backdrop-filter: blur(20px); /* Strong blur */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Minimal Input Styling (Floating Label) */
.input-group {
    position: relative;
}

.minimal-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Subtle bottom line */
    padding: 10px 0 10px 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}

.field-icon {
    position: absolute;
    right: 0;
    top: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: color 0.3s;
}

/* Label Animation Logic */
.floating-label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #94a3b8 !important;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* When Input is Focused or Has Content (using placeholder trick) */
.minimal-input:focus ~ .floating-label,
.minimal-input:not(:placeholder-shown) ~ .floating-label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--primary-blue) !important;
}

.minimal-input:focus {
    border-bottom-color: var(--primary-blue);
}

.minimal-input:focus ~ .field-icon {
    color: var(--primary-blue);
}

/* Submit Button */
.btn-glow-submit {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-blue), #0b5ed7);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-glow-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6);
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .contact-premium-layout {
        flex-direction: column;
        gap: 50px;
    }

    .contact-text-side {
        /* text-align: center; */
        max-width: 100%;
    }

    .contact-details-grid {
        flex-direction: row;
        /* justify-content: center; */
        flex-wrap: wrap;
    }

    .detail-card {
        width: 100%;
        /* justify-content: center; */
    }

    .contact-form-side {
        width: 100%;
        justify-content: center;
    }

    .glass-form-card {
        padding: 30px 20px;
    }
}

/* =========================================
   Service Category Page CSS
   ========================================= */

.service-category-page {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-soft);
}

/* --- 1. Dark Hero Section --- */
.cat-hero-section {
    background-color: var(--dark-heading);
    padding: 100px 0 140px 0; /* Extra bottom padding for overlap effect */
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.glow-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}
.glow-top-right {
    background: var(--primary-blue);
    top: -100px;
    right: -100px;
}

.hero-content-max {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: #93c5fd; /* Light blue text */
}

.cat-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cat-hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1; /* Light gray text on dark bg */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 2. Sticky Jurisdiction Bar --- */
.jurisdiction-bar-sticky {
    position: sticky;
    top: 80px; /* Adjust based on your main navbar height */
    z-index: 50;
    margin-top: -40px; /* Pulls it up into the Hero */
    margin-bottom: 40px;
}

.jurisdiction-wrapper {
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.filter-label {
    font-weight: 600;
    color: var(--dark-heading);
    font-size: 0.95rem;
    white-space: nowrap;
}

.country-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.country-pills::-webkit-scrollbar {
    display: none;
}

.country-pill {
    background: transparent;
    border: 1px solid transparent;
    padding: 8px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.country-pill img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.country-pill:hover {
    background: #f1f5f9;
}

.country-pill.active {
    background: var(--dark-heading);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

/* --- 3. Services Grid --- */
.services-grid-section {
    padding-bottom: 80px;
}

.grid-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.grid-header-row h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-heading);
}

.highlight-country {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: rgba(13, 110, 253, 0.3);
}

.count-badge {
    background: #e0f2fe;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* Service Card Design */
.service-card-modern {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-blue);
}

.card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.service-card-modern:hover .card-icon-box {
    transform: scale(1.1);
}

/* Icon Colors */
.blue-bg {
    background: #eff6ff;
    color: var(--primary-blue);
}
.orange-bg {
    background: #fff7ed;
    color: var(--primary-orange);
}
.purple-bg {
    background: #f3e8ff;
    color: #9333ea;
}
.green-bg {
    background: #ecfdf5;
    color: #16a34a;
}
.dark-bg {
    background: #f1f5f9;
    color: var(--dark-heading);
}

.card-content {
    width: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin: 0 0 10px 0;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.learn-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.service-card-modern:hover .learn-link {
    gap: 12px;
}

/* Special Promo Card */
.service-card-promo {
    background: var(--dark-heading);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content {
    position: relative;
    z-index: 2;
}
.service-card-promo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card-promo p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

.btn-promo-action {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.promo-decor-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* --- 4. Global Assistance Banner --- */
.global-help-banner {
    padding-bottom: 80px;
}

.glass-banner {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.banner-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 800;
}
.banner-text p {
    margin: 0;
    opacity: 0.9;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-blue);
    border-color: #fff;
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Cols on Tablet */
    }
    .cat-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 Col on Mobile */
        gap: 20px;
    }

    .jurisdiction-wrapper {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }
    .country-pills {
        width: 100%;
    }

    .glass-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* =========================================
   Service Type Tabs (Secondary Filter - NOT STICKY)
   ========================================= */

.service-type-tabs {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 40px;
    /* Removed position: sticky and top: 145px */
    position: relative;
    z-index: 40;
}

.tabs-scroll-wrapper {
    display: flex;
    justify-content: center; /* Center tabs on desktop */
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px; /* Hide scrollbar spacing */
    scrollbar-width: none;
}
.tabs-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tab-btn i {
    font-size: 1rem;
    opacity: 0.7;
}

.tab-btn:hover {
    color: var(--primary-blue);
    background: #eff6ff;
}

/* Active State */
.tab-btn.active {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}
.tab-btn.active i {
    opacity: 1;
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 991px) {
    /* Adjust Sticky Tops for Mobile */
    .jurisdiction-bar-sticky {
        top: 70px;
    }

    .service-type-tabs {
        /* Removed top adjustment since it's not sticky */
        justify-content: flex-start;
        padding: 15px 0;
    }

    .tabs-scroll-wrapper {
        justify-content: flex-start; /* Left align on mobile for scrolling */
        padding-left: 20px; /* Add side padding for swipe feel */
        padding-right: 20px;
    }
}

/* =========================================
   Single Service Detail Page CSS
   ========================================= */

.service-modern-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #f0f9ff 100%
    ); /* Softest Blue Fade */
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* Ambient Blobs (Subtle decoration) */
.hero-soft-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: #e0f2fe; /* Light Blue */
    top: -200px;
    left: -100px;
}
.blob-2 {
    width: 500px;
    height: 500px;
    background: #fff7ed; /* Light Orange */
    bottom: -100px;
    right: -100px;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Content slightly wider than form */
    gap: 60px;
    align-items: center;
}

/* --- Left Side Content --- */
.hero-breadcrumb {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-breadcrumb a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.2s;
}
.hero-breadcrumb a:hover {
    color: var(--primary-blue);
}

.hero-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-heading);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-highlight-modern {
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    display: inline-block;
}
.text-highlight-modern::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(13, 110, 253, 0.15); /* Marker Highlight Effect */
    z-index: -1;
    border-radius: 4px;
}

.hero-sub-text {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-heading);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Social Proof */
.social-proof-line {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar-group {
    display: flex;
    align-items: center;
}
.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}
.avatar-group img:first-child {
    margin-left: 0;
}
.avatar-count {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dark-heading);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 2px solid #fff;
}
.social-proof-line p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}
.social-proof-line strong {
    color: var(--dark-heading);
}

/* --- Right Side Form (The Card) --- */
.hero-booking-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); /* Premium Float Shadow */
    border: 1px solid #fff;
    position: relative;
    z-index: 2;
}

.card-header {
    margin-bottom: 25px;
    text-align: left;
}
.card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin: 0 0 5px 0;
}
.card-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-heading);
    margin-bottom: 6px;
}

.hero-input {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--dark-heading);
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}

.hero-input:focus {
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.btn-hero-submit {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    background: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-hero-submit:hover {
    background: #d97706; /* Darker Orange */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.secure-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.secure-note i {
    color: #10b981;
}

/* Animation Utility */
.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 991px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content-side {
        text-align: center;
        max-width: 100%;
    }

    .hero-main-heading {
        font-size: 2.5rem;
    }

    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-proof-line {
        justify-content: center;
    }

    /* Form on Mobile */
    .hero-booking-card {
        padding: 25px;
    }
    .form-row-grid {
        grid-template-columns: 1fr; /* Stack inputs */
    }
}

/* =========================================
   Modern Full-Width Packages CSS
   ========================================= */

.packages-section-modern {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #f1f5f9 100%
    ); /* Soft fade to gray */
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Header */
.pkg-section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.pkg-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pkg-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 15px;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg-desc {
    font-size: 1.1rem;
    color: var(--text-body);
}

/* Grid Layout */
.packages-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center; /* Vertically center them */
}

/* Card Structure */
.pricing-card {
    background: #fff;
    border-radius: 24px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

/* Decorative Top Bar */
.card-top-decor {
    height: 6px;
    width: 100%;
    background: var(--border-color);
}
.basic-card .card-top-decor {
    background: #94a3b8;
}
.standard-card .card-top-decor {
    background: var(--primary-blue);
}
.premium-card .card-top-decor {
    background: var(--dark-heading);
}

.pkg-content {
    padding: 40px 30px;
    text-align: center;
}

/* Typography inside Card */
.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin: 0 0 5px 0;
}

.plan-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

.price-box {
    margin-bottom: 30px;
    color: var(--dark-heading);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}
.price-box .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.price-box .period {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Buttons */
.btn-plan-outline {
    display: block;
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--dark-heading);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-plan-outline:hover {
    border-color: var(--dark-heading);
    background: var(--dark-heading);
    color: #fff;
}

.btn-plan-solid {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-orange); /* Orange CTA */
    color: #fff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}
.btn-plan-solid:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(230, 126, 34, 0.3);
}

/* Features List */
.feature-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 30px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #10b981; /* Green Check */
    font-size: 1.1rem;
}

.feature-list li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}
.feature-list li.disabled i {
    color: #cbd5e1;
}

/* --- Featured Card Styling --- */
.featured {
    transform: scale(1.05); /* Make it bigger */
    z-index: 2;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.3);
}

.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* Footer Note */
.pricing-footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #64748b;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 991px) {
    .packages-grid-layout {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 40px;
        max-width: 500px;
    }

    .featured {
        transform: scale(1); /* Reset scale on mobile */
        border: 2px solid var(--primary-blue); /* Add border to distinguish */
    }

    .featured:hover {
        transform: translateY(-5px);
    }

    .pkg-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Terms & Conditions (Centered Modern CSS)
   ========================================= */

.terms-page-wrapper {
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

/* --- 1. Hero Section --- */
.terms-hero {
    padding: 80px 0 60px 0;
    background: linear-gradient(to bottom, #f8fafc, #fff);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.update-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #94a3b8;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.update-badge i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-blue {
    color: var(--primary-blue);
}

.page-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- 2. Main Content (Centered) --- */
.terms-content-section {
    padding: 80px 0;
    background-color: #fff;
}

/* The Document Container */
.terms-document-body {
    max-width: 950px; /* Optimal reading width */
    margin: 0 auto; /* Center align */
    /* Optional: Add a subtle paper effect */
    /* background: #fff; */
    /* padding: 40px; */
    /* border: 1px solid var(--border-color); */
    /* border-radius: 20px; */
}

/* Text Blocks */
.term-block {
    margin-bottom: 50px;
}

.term-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.term-block p {
    font-size: 1.05rem;
    line-height: 1.8; /* Comfortable reading height */
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Custom List */
.legal-list {
    margin-bottom: 25px;
    padding-left: 20px;
}
.legal-list li {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 12px;
    list-style-type: disc;
    padding-left: 5px;
    line-height: 1.6;
}

/* Highlight Box (For important notes) */
.highlight-box-blue {
    background: #eff6ff;
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 1rem;
    line-height: 1.6;
    margin: 30px 0;
}

/* Footer Note */
.terms-footer-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid var(--border-color);
}
.terms-footer-note p {
    font-weight: 600;
    color: var(--dark-heading);
    margin-bottom: 10px;
}
.terms-footer-note a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.terms-footer-note a:hover {
    gap: 12px;
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .terms-document-body {
        padding: 0; /* Remove padding on small screens if you added card style */
    }

    .term-block h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   Privacy Policy (Centered Modern CSS)
   ========================================= */

.privacy-page-wrapper {
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

/* --- 1. Hero Section --- */
.privacy-hero {
    padding: 80px 0 60px 0;
    background: linear-gradient(to bottom, #f8fafc, #fff);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.update-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #94a3b8;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.update-badge i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-blue {
    color: var(--primary-blue);
}

.page-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- 2. Main Content (Centered) --- */
.privacy-content-section {
    padding: 80px 0;
    background-color: #fff;
}

/* The Document Container */
.privacy-document-body {
    max-width: 950px; /* Optimal reading width */
    margin: 0 auto; /* Center align */
}

/* Text Blocks */
.policy-block {
    margin-bottom: 50px;
}

.policy-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.policy-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Custom List */
.policy-list {
    margin-bottom: 25px;
    padding-left: 20px;
}
.policy-list li {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 12px;
    list-style-type: circle;
    padding-left: 5px;
    line-height: 1.6;
}
.policy-list li strong {
    color: var(--dark-heading);
}

/* Highlight Box (Green for Security) */
.highlight-box-green {
    background: #ecfdf5; /* Light Green */
    border-left: 4px solid var(--primary-green);
    padding: 25px;
    border-radius: 8px;
    color: #065f46; /* Dark Green Text */
    font-size: 1rem;
    line-height: 1.6;
    margin: 30px 0;
}

/* Footer Note */
.privacy-footer-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid var(--border-color);
}
.privacy-footer-note p {
    font-weight: 600;
    color: var(--dark-heading);
    margin-bottom: 10px;
}
.privacy-footer-note a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.privacy-footer-note a:hover {
    gap: 12px;
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .privacy-document-body {
        padding: 0 10px;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   Cancellation & Refund Page CSS
   ========================================= */

.cancellation-page-wrapper {
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

/* --- 1. Hero Section --- */
.cancellation-hero {
    padding: 80px 0 60px 0;
    background: linear-gradient(
        to bottom,
        #fff1f2,
        #fff
    ); /* Very subtle red/pink tint for alert vibe, or keep blue */
    /* Alternatively, stick to the blue tint: background: linear-gradient(to bottom, #f8fafc, #fff); */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.update-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #94a3b8;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.update-badge i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-blue {
    color: var(--primary-blue);
}

.page-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- 2. Main Content (Centered) --- */
.cancellation-content-section {
    padding: 80px 0;
    background-color: #fff;
}

/* The Document Container */
.cancellation-document-body {
    max-width: 950px; /* Optimal reading width */
    margin: 0 auto; /* Center align */
}

/* Text Blocks */
.policy-block {
    margin-bottom: 50px;
}

.policy-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.policy-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Custom List */
.policy-list {
    margin-bottom: 25px;
    padding-left: 20px;
}
.policy-list li {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 12px;
    list-style-type: circle;
    padding-left: 5px;
    line-height: 1.6;
}
.policy-list li strong {
    color: var(--dark-heading);
}

/* Highlight Box (Red for Warnings) */
.highlight-box-red {
    background: #fef2f2; /* Light Red */
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    border-radius: 8px;
    color: #991b1b; /* Dark Red Text */
    font-size: 1rem;
    line-height: 1.6;
    margin: 30px 0;
}

/* Footer Note */
.cancellation-footer-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid var(--border-color);
}
.cancellation-footer-note p {
    font-weight: 600;
    color: var(--dark-heading);
    margin-bottom: 10px;
}
.cancellation-footer-note a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.cancellation-footer-note a:hover {
    gap: 12px;
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .cancellation-document-body {
        padding: 0 10px;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   Money-Back Guarantee Policy CSS
   ========================================= */

.guarantee-page-wrapper {
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

/* --- 1. Hero Section --- */
.guarantee-hero {
    padding: 80px 0 60px 0;
    background: linear-gradient(
        to bottom,
        #f0fdf4,
        #fff
    ); /* Subtle Green Tint */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.update-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #94a3b8;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.update-badge i {
    margin-right: 5px;
    color: var(--primary-green);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-green {
    color: var(--primary-green);
}

.page-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- 2. Main Content (Centered) --- */
.guarantee-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.guarantee-document-body {
    max-width: 950px; /* Optimal reading width */
    margin: 0 auto; /* Center align */
}

/* Text Blocks */
.policy-block {
    margin-bottom: 50px;
}

.policy-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mt-5 {
    margin-top: 3rem;
}

.policy-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Custom List */
.policy-list {
    margin-bottom: 25px;
    padding-left: 20px;
}
.policy-list li {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 12px;
    list-style-type: disc;
    padding-left: 5px;
    line-height: 1.6;
}

.step-list {
    margin-bottom: 25px;
    padding-left: 20px;
}
.step-list li {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 15px;
    padding-left: 5px;
    line-height: 1.6;
}
.step-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Highlight Box (Success Green) */
.highlight-box-success {
    background: #ecfdf5; /* Light Green */
    border: 1px solid #d1fae5;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--dark-heading);
    font-size: 1.05rem;
    line-height: 1.5;
}
.benefit-list li:last-child {
    margin-bottom: 0;
}
.benefit-list li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Footer Contact Area */
.guarantee-footer-note {
    background: var(--dark-heading);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.guarantee-footer-note h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.guarantee-footer-note p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.guarantee-footer-note a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.guarantee-footer-note a:hover {
    opacity: 0.8;
}
.guarantee-footer-note i {
    color: var(--primary-green);
    margin-right: 8px;
}
.address-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Disclaimer */
.disclaimer-text {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 {
    animation-delay: 0.2s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Responsive (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .guarantee-document-body {
        padding: 0 10px;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }

    .highlight-box-success {
        padding: 20px;
    }
}
