/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2b2d42;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img.full-responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.sub-title {
    color: #ff5277;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

/* --- Buttons --- */
.btn {
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1d2671;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0f174a;
}

.btn-secondary {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 71, 87, 0.4);
}

/* --- Top Header --- */
/* --- Hero Wrapper (Combines BG for Header + Hero) --- */
.hero-wrapper {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

/* --- Transparent Top Header --- */
.top-header {
    font-size: 0.85rem;
    color: #6c757d;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid rgba(225, 230, 240, 0.5);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    margin: 0 4px;
    color: #2b2d42;
    font-weight: 600;
}

.phone-number {
    color: #ff4757;
    font-weight: 700;
    margin-left: 8px;
}

/* --- Transparent Main Navigation --- */
.main-nav {
    padding: 20px 0;
    background: transparent;
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d2671;
}

.logo-text span {
    color: #ff4757;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: #ff4757;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Hamburger Menu Button --- */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #1d2671;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Active Hamburger Animation (Transforms to 'X' Close Icon) */
.hamburger-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 0 120px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1d2671;
    line-height: 1.2;
    margin: 15px 0 20px;
    font-weight: 700;
}

.hero-content p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* --- Responsive Styles (Matching Image image_439f42.png) --- */
@media (max-width: 768px) {
    .top-header {
        display: none; /* Hide top header bar on mobile */
    }

    .hamburger-toggle {
        display: flex; /* Show Hamburger Icon */
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none; /* Hidden by default */
        border-radius: 0 0 15px 15px;
    }

    /* Shown when toggled open */
    .nav-links.active {
        display: flex;
    }

    .hero-wrapper {
        background-position: right 30% center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* --- Services Preview Section --- */
.services-preview {
    margin-top: -60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: flex-start;
}

/* Individual Card Container */
.card {
    background: #ffffff;
    padding: 35px 25px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(29, 38, 113, 0.07);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 38, 113, 0.12);
}

/* Staggered Floating Cards Effect */
.card-offset {
    transform: translateY(-30px);
}

.card-offset:hover {
    transform: translateY(-35px);
}

/* Icon & Curved Background Container */
.card-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #f1f3f9;
    border-radius: 50%;
    margin: -15px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    z-index: 2;
}

/* Card Content Typography */
.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d2671;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Layout (Matching Mobile Screenshots) --- */
@media (max-width: 992px) {
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-offset {
        transform: translateY(0);
    }
    
    .card-offset:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .services-preview {
        margin-top: 20px;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }
}

/* --- About Section --- */
/* --- About Us Section --- */
.about-section {
    padding: 90px 0 60px;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Image Container Styling */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Typography & Content */
.about-content {
    flex: 1;
    max-width: 540px;
}

.sub-title {
    color: #ff4757;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #1d2671;
    line-height: 1.25;
    margin: 12px 0 20px;
    font-weight: 700;
}

.about-content .lead-text {
    font-size: 1.05rem;
    color: #555e69;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-content .secondary-text {
    font-size: 0.9rem;
    color: #838e9e;
    line-height: 1.65;
    margin-bottom: 25px;
}

/* Video Play Button CTA */
.about-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff6b81 0%, #ff4757 100%);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(255, 71, 87, 0.45);
}

.play-icon {
    font-size: 1.1rem;
    margin-left: 3px;
}

.about-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff4757;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.watch-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* --- Stats Circular Banner --- */
.stats-container {
    margin-top: 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card {
    display: flex;
    justify-content: center;
}

.stat-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: #f7f9fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1d2671;
    line-height: 1.1;
}

.stat-number sup {
    color: #ff4757;
    font-size: 1.2rem;
    top: -0.6em;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #838e9e;
    letter-spacing: 1px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-action {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0 30px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-circle {
        width: 140px;
        height: 140px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }
}

/* --- Section Titles & Spacing --- */
/* --- Features ("What You Will Get With Us") Section --- */
.features-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fc 100%);
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.sub-title {
    color: #ff4757;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

h2 {
    font-size: 2.6rem;
    color: #1d2671;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 50px;
}

/* Floating Decorative Leaves */
.decorative-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.leaf-left-1 { top: 10%; left: 22%; width: 85px; }
.leaf-left-2 { top: 16%; left: 25%; width: 14px; }
.leaf-right-1 { top: 18%; right: 24%; width: 99px; }
.leaf-right-2 { top: 25%; bottom: 10%; right: 21%; width: 85px; }

/* 3-Column Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* Feature Card Styling */
.feature-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(29, 38, 113, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 38, 113, 0.1);
}

/* Offset Middle Cards (Card 2 & Card 5) for Staggered Design */
.feature-offset {
    transform: translateY(35px);
}

.feature-offset:hover {
    transform: translateY(30px);
}

/* Curved Circular Background for Icons */
.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    background: #f1f3f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 1.15rem;
    color: #1d2671;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

/* --- Mobile & Tablet Responsiveness (Matching Screenshot Pattern) --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-offset {
        transform: translateY(0);
    }

    .feature-offset:hover {
        transform: translateY(-5px);
    }

    .decorative-leaf {
        display: none;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 50px 0 60px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* --- Consultation Form --- */
/* --- Complete Consultation Section (Full BG Image) --- */
.consultation-section {
    padding: 100px 0 80px;
    width: 100%;
    
    /* Single full-width background image covering the entire section */
    background-image: url('images/consultation-bg.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover; /* Spans across the full section area */
    
    position: relative;
    overflow: hidden;
}

.consultation-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.consultation-form-block {
    max-width: 580px;
    width: 100%;
}

.consultation-form-block h2 {
    font-size: 2.8rem;
    color: #1d2671;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.consultation-form-block .section-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Consultation Form Elements */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-row input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, 0.95);
    outline: none;
    font-size: 0.95rem;
    color: #2b2d42;
    transition: all 0.3s ease;
}

.form-row input::placeholder {
    color: #a0aec0;
}

.form-row input:focus {
    border-color: #ff4757;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.15);
}

/* Form Submit Button & Checkbox */
.form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-label {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #ff4757;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: #ff4757;
    text-decoration: underline;
}

/* Client Logos Bar at Section Bottom */
.logos-container {
    padding-top: 40px;
    text-align: center;
}

.logos-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive Mode Adjustments */
@media (max-width: 992px) {
    .consultation-section {
        padding: 80px 0 50px;
        background-position: top center;
    }

    .consultation-form-block {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .consultation-section {
        padding: 60px 0 40px;
    }

    .consultation-form-block h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- Main Milestones / Steps Section --- */
.milestones-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    position: relative;
}

.text-center {
    text-align: center;
}

.sub-title {
    color: #ff4757;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

h2 {
    font-size: 2.6rem;
    color: #1d2671;
    font-weight: 700;
    margin-bottom: 10px;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    align-items: stretch;
}

/* Milestone Card Styling */
.milestone-card {
    background: #ffffff;
    padding: 40px 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(29, 38, 113, 0.05);
    position: relative;
    border: 1px solid #f0f3f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(29, 38, 113, 0.12);
}

/* Floating Top Badge Number */
.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 71, 87, 0.35);
}

/* Icon Container */
.milestone-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f4f6fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 18px;
}

.milestone-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Card Title */
.milestone-card h3 {
    font-size: 1.15rem;
    color: #1d2671;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Bottom Short Description */
.milestone-card .card-desc {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* --- Mobile Responsive Mode --- */
@media (max-width: 992px) {
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 20px;
    }
}

@media (max-width: 576px) {
    .milestones-section {
        padding: 50px 0 60px;
    }

    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .milestone-card {
        padding: 35px 20px 25px;
    }
}

/* --- Newsletter --- */
/* --- Newsletter Section --- */
.newsletter-section {
    padding: 60px 0 80px;
}

.newsletter-container {
    background-color: #f9fbfd;
    background-image: url('images/news.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 60px 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 38, 113, 0.05);
}

.newsletter-content {
    max-width: 520px;
    width: 100%;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #1d2671;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Newsletter Input and Button */
.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, 0.95);
    outline: none;
    font-size: 0.9rem;
    color: #2b2d42;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form input:focus {
    border-color: #ff4757;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

.newsletter-form .btn-secondary {
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.35);
}

/* --- Responsive Mode Adjustments --- */
@media (max-width: 992px) {
    .newsletter-container {
        padding: 50px 35px;
        background-position: right top;
    }

    .newsletter-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 40px 0 60px;
    }

    .newsletter-container {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form .btn-secondary {
        width: 100%;
    }
}


/* Base Styles & Variables */
:root {
  --color-bg: #eef2fd;
  --color-primary: #1d2b83;
  --color-text-dark: #1b2559;
  --color-text-muted: #68769c;
  --color-accent-pink: #ff5277;
  --color-accent-purple: #4a54df;
  --color-white: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: #f7f9fc;
}

/* Footer Section Container */
.footer-section {
  background-color: var(--color-bg);
  padding: 40px 20px 20px 20px;
  color: var(--color-text-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Styling */
.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Update CSS if you want specific styling for the new name */
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #1a237e;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--color-accent-pink);
}

.logo-icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.logo-icon .ring {
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
}

.logo-icon .outer-ring {
  width: 30px;
  height: 30px;
  border: 4px solid var(--color-accent-pink);
  top: 0;
  left: 0;
}

.logo-icon .inner-ring {
  width: 22px;
  height: 22px;
  border: 4px solid var(--color-primary);
  top: 4px;
  left: -4px;
}

/* Top Section Layout (Desktop) */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
}

/* Social Links */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.social-label {
  color: var(--color-text-muted);
}

.social-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.dot {
  color: var(--color-accent-pink);
  font-size: 12px;
}

/* Contact Info */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-label {
  color: var(--color-text-muted);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.phone-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-pink);
}

/* CTA Button */
.btn-get-started {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(29, 43, 131, 0.2);
  transition: background-color 0.2s ease;
}

.btn-get-started:hover {
  background-color: #121c5a;
}

/* Divider Line */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(104, 118, 156, 0.15);
  margin: 10px 0 20px 0;
}

/* Bottom Section Layout (Desktop) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.copyright {
  color: var(--color-text-muted);
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

/* ==========================================
   Responsive / Mobile Layout (< 768px)
   ========================================== */
@media (max-width: 768px) {
  .footer-section {
    padding: 35px 20px 20px 20px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social,
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }

  .footer-cta {
    width: 100%;
    margin-top: 5px;
  }

  .btn-get-started {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  .footer-divider {
    display: none; /* Hidden on mobile to match reference image */
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 25px;
    margin-top: 25px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
  }
}
/* --- Responsive Layout Rules --- */
@media (max-width: 992px) {
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-container, .about-container, .consultation-container, .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    .card-offset {
        transform: translateY(0);
    }
    .form-row {
        flex-direction: column;
    }
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .top-container, .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}


/*---- Contact form----*/

/* ==========================================
   FIX FOR SIDE-BY-SIDE HERO & FORM LAYOUT
   ========================================== */

/* 1. Ensure the Hero Container uses Grid for 2 columns */
.hero-section .hero-container {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important; /* Text on Left, Form on Right */
  gap: 40px !important;                       /* Space between text and form */
  align-items: center !important;             /* Vertically center aligned */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 2. Text Section Constraints */
.hero-section .hero-content {
  text-align: left;
  max-width: 580px;
}

/* 3. Form Card Styling & Constraints */
.hero-section .hero-form-card {
  width: 100%;
  max-width: 420px;
  margin: 0 0 0 auto; /* Keeps form nicely placed on the right side */
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(29, 43, 131, 0.08);
  border: 1px solid #eef2fd;
  box-sizing: border-box;
}

.hero-form-card h3 {
  font-size: 22px;
  color: #1d2b83;
  margin-bottom: 6px;
  font-weight: 700;
  text-align: left;
}

.hero-form-card p {
  font-size: 13px;
  color: #68769c;
  margin-bottom: 20px;
  text-align: left;
}

.hero-form-card .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.hero-form-card input,
.hero-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce2f0;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f9fbfd;
  box-sizing: border-box;
  outline: none;
}

.hero-form-card input:focus,
.hero-form-card textarea:focus {
  border-color: #1d2b83;
  background-color: #ffffff;
}

.hero-form-card .btn-submit {
  width: 100%;
  background-color: #1d2b83;
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-form-card .btn-submit:hover {
  background-color: #ff5277;
}

/* 4. Responsive Mobile Stack (< 900px) */
@media (max-width: 900px) {
  .hero-section .hero-container {
    grid-template-columns: 1fr !important; /* Stack vertically on small screens */
    gap: 30px !important;
  }

  .hero-section .hero-form-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Extended Contact Heading Section */
.contact-section-extended {
  padding: 70px 0;
  background-color: #f8fafc;
}

.contact-header-block {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.contact-header-block .sub-title {
  color: #ff5277;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.contact-header-block h2 {
  font-size: 36px;
  color: #1d2b83;
  font-weight: 700;
  margin: 12px 0 18px 0;
  line-height: 1.3;
}

.contact-main-description {
  font-size: 16px;
  color: #68769c;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-header-block h2 {
    font-size: 28px;
  }
}