/* ============================================== */
/* === 0. General Resets and Variables === */
/* ============================================== */
html {
    scroll-padding-top: 70px; /* same as navbar height */

}
.main{
    background-color: rgb(216, 211, 211);
}
section {
  scroll-margin-top: 100px; /* navbar height */
}


:root {
    /* --dark-blue: #001f3f; */
    --light-blue: #3498db;
    --text-color: #ffffff;
    --transition-speed: 0.3s;
}

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

body {
    font-family: Arial, sans-serif;
    min-height: 200vh;
    padding-top: 50px;
}

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

/* ============================================== */
/* === 1. Top Bar Styling === */
/* ============================================== */
#top-bar {
    background: yellow !important;
    color: #000 !important;
    padding: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-top: 5px;
    will-change: transform, opacity;
    
}

#top-bar.hidden {
    margin-top: -50px;
    opacity: 0;
}

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

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i {
    margin-right: 5px;
    color: var(--light-blue);
}

.social-icons a {
    margin-left: 10px;
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

/* ============================================== */
/* === 2. Main Navigation Bar Styling === */
/* ============================================== */

#main-nav {
    background: #ffffff !important;
    position: relative;
    width: 100%;
    z-index: 999;
    padding: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* box-shadow: 0px 0px 2px 5px #edeaea; */

}


/* FIXED NAVBAR SMOOTH */
#main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    /* Optional: reduce blur for smoother scroll */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateZ(0);
    will-change: transform, opacity;
}


/* NAV CONTENT */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-color);
    padding: 5px 0;
}


/* Nav Right (Search + Hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* Push to right */
}

.nav-right .search-icon {
    margin-right: 15px;
    /* Distance from hamburger */
}

/* Hamburger always on right */
.hamburger {
    cursor: pointer;
    font-size: 28px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

/* === ⭐ NEW: LOGO IMAGE PERFECT FIT === */
.logo img {
    height: 50px;
    /* Fixed navbar height */
    width: auto;
    /* No stretch */
    object-fit: contain;
    /* Perfect fit */
    display: block;
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
}

/* Nav Links List */
.nav-links {
    list-style: none;
    display: flex;
    padding-left: 50px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #000 !important;
    padding: 10px 15px;
    display: block;
    font-size: 16px;
    transition: color var(--transition-speed);
    position: relative;
}

/* Hover Color */
.nav-links li a:hover,
.nav-links li a.active {
    color: #3498db !important;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    width: 0;
    height: 3px;
    background: var(--light-blue);
    transition: width var(--transition-speed) ease-out;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: calc(100% - 30px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    padding: 0;
    margin: 0;
    display: none;
    list-style: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: #948c8c !important;
    font-size: 15px;
    font-weight: 500;
    transition: 0.25s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(72, 68, 68, 0.1);
    color: var(--light-blue);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Search Icon */
.search-icon {
    color: #000 !important;
    font-size: 18px;
    margin-right: 20px;
    padding: 8px;
    transition: color var(--transition-speed);
}

.search-icon:hover {
    color: var(--light-blue);
}

/* Purchase Btn */
.purchase-button {
    background-color: #F27A9B;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.purchase-button:hover {
    background-color: #b8687e;
}

/* ============================================== */
/* === 3. MOBILE HAMBURGER MENU === */
/* ============================================== */

.hamburger {
    display: none;
    font-size: 30px;
    color: #000 !important;
    cursor: pointer;
}

#mobileMenu.mobile-open {
    display: block !important;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    text-align: center;

}

#mobileMenu.mobile-open li {
    margin: 10px 0;
}

/* Dropdown menu default hidden */
.dropdown-menu {
    display: none;
}

/* Desktop + Mobile: When JS adds class then show */
.nav-item.dropdown.dropdown-open .dropdown-menu {
    display: block !important;
}

/* Mobile click dropdown (JS add karega class) */
@media (max-width: 768px) {
    /* ... अन्य कोड ... */
    
    .dropdown-menu {
        position: relative !important;
        box-shadow: none;
        background: none;
    }
    /* ... अन्य कोड ... */
}


/* ============================================== */
/* === 4. Responsive Design === */
/* ============================================== */

@media (max-width: 992px) {
    .nav-links {
        padding-left: 0;
    }
}

@media (max-width: 768px) {

    .contact-info {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-content {
        justify-content: space-between;
    }

    .purchase-button {
        display: none;
    }

    .dropdown-menu {
        position: relative !important;
        box-shadow: none;
        background: none;
    }

    .logo img {
        height: 45px;
        /* Smaller for mobile */
    }
}

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

    .search-icon {
        margin-right: 10px;
    }

    .social-icons a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .logo img {
        height: 40px;
    }
}


/* =================Hero Section===================== */
/* Slider arrows - Default Desktop */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 15px 20px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.left { left: 30px; }
.slider-arrow.right { right: 30px; }

/* For Slider Functionality */
.hero-slide {
    display: none;
}

.hero-slide.active {
    display: flex; 
    align-items: center;
    justify-content: center;
}

.hero-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    min-height: 600px; /* Sab slides ki height same rahegi */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 31, 46, 0.704);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.hero-subtitle-top {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #F27A9B;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #F27A9B;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #F27A9B;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #fff;
    transition: background-color 0.3s;
}

.hero-description {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    color: #e6e6e6;
    opacity: 0.9;
    font-weight: 300;
}

/* ================= RESPONSIVE SETTINGS ================= */

/* Tablet & iPad (Portrait) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 550px;
        padding: 80px 0;
    }
    .hero-title { font-size: 4rem; }
    .slider-arrow { 
        display: flex; /* iPad par dikhega */
        padding: 12px 18px; 
        font-size: 22px; 
    }
    .slider-arrow.left { left: 15px; } 
    .slider-arrow.right { right: 15px; }
}

/* Mobile Phones (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
        padding: 60px 0;
        background-image: none !important;
        background-color: #041f2e;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle-top { font-size: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .btn-primary, .btn-secondary { width: 80%; }
    
    /* 🔹 Yahan Phone me Arrow hide kar diya gaya hai */
    .slider-arrow {
        display: none !important; 
    }
}/*============================ About Section =======================*/
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    background: linear-gradient(135deg, #e8f3ff, #ffffff);
}

/* Wrapper - Dono side ko barabar set karne ke liye */
.about-content-wrapper {
    display: flex;
    align-items: center; 
    gap: 40px;
    flex-wrap: wrap; 
}

/* Left Text Column */
.about-text-content {
    flex: 1;
    min-width: 300px;
}

/* Right Video Column */
.about-image-col {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video - Screen ke hisaab se auto-adjust */
.about-image-col .about-video {
    width: 100%;
    max-width: 700px; 
    height: auto;    
    aspect-ratio: 16 / 9; 
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 0;   
}

/* Title & Text Alignment */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
}

.about-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Features List - Desktop 2 columns */
.about-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    flex: 0 0 48%; 
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-align: left;
}

/* 🔹 Phone Icon Styles (Jo miss ho gaya tha) */
.contact-info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.phone-icon-box {
    background-color: #F27A9B; /* Aapka primary color */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 24px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* ================= TABLET / IPAD / PHONE (Responsive) ================= */

@media (max-width: 1024px) {
    .about-content-wrapper {
        flex-direction: column; 
        text-align: center;
    }
    
    .about-text-content, .about-image-col {
        width: 100%;
    }

    .about-image-col .about-video {
        max-width: 90%; 
        margin-top: 30px;
    }

    .about-features-grid {
        justify-content: center; 
        max-width: 500px;
        margin: 0 auto 30px auto;
    }

    .feature-item {
        flex: 0 0 100%; 
        justify-content: flex-start; 
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-image-col .about-video {
        max-width: 100%; 
        border-radius: 8px;
    }

    .contact-info-block {
        justify-content: center; /* Mobile par center align karne ke liye */
        flex-direction: row; /* Icon aur number ek line me rahein */
        gap: 15px;
    }
}


/*  ================================5 section Commen style============================ */
/* ================= Base Section ================= */
.section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* ================= Main Layout ================= */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 450px;
}

/* Reverse layout */
.section.reverse .content-wrapper {
    flex-direction: row-reverse;
}

/* ================= Text Area ================= */
.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-subtitle-top {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--light-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text, #333333);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--light-blue);
    display: inline-block;
    padding-bottom: 8px;
}

.description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ================= Features ================= */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    flex: 0 0 45%;
    font-size: 1.05rem;
    color: var(--dark-text, #333333);
    display: flex; 
    align-items: center;
}

.feature-item i {
    margin-right: 10px;
    color: var(--light-blue);
}

/* ================= Button ================= */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #F27A9B;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #F27A9B;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(242, 122, 155, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #F27A9B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 122, 155, 0.6);
}

/* ================= Image Column (Theek kiya gaya section) ================= */
.image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 600px; /* Image zyada failne se rokne ke liye */
    height: auto;     /* Height ko auto kiya taaki ratio sahi rahe */
    aspect-ratio: 1 / 1; /* 800x800 image ke liye perfect square */
    object-fit: contain; /* Isse image kategi nahi, poori dikhegi */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ================= Tablet & iPad ================= */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .section.reverse .content-wrapper {
        flex-direction: column !important;
    }

    .text-content {
        order: 1;
        align-items: center;
        width: 100%;
    }

    .image-col {
        order: 2;
        width: 100%;
    }

    .section-image {
        max-width: 70%; /* iPad par size balance karne ke liye */
    }

    .features-grid {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }

    .feature-item {
        flex: 0 0 100%;
        text-align: left;
    }
}

/* ================= Mobile (Phones) ================= */
@media (max-width: 768px) {
    .section {
        padding: 3rem 15px;
    }

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

    .section-image {
        max-width: 100%; /* Mobile screen ki width ke hisab se */
        aspect-ratio: auto; /* Mobile par natural size */
    }

    .btn-primary {
        width: 100%; /* Mobile par full width button */
        max-width: 300px;
    }
}


/* =========================Choice============================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styling */
.header-content {
    text-align: center;
    padding: 50px 0 30px;
}

.sub-heading {
    color: #007bff;
    /* Bright blue color */
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    color: #4F2B2B;
    /* Darker blue/navy for strong text */
    margin: 0 0 10px 0;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto 40px;
}

.features-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertically center the image/columns */
    gap: 40px;
    /* Space between columns */
    padding-bottom: 50px;
}

.feature-column {
    flex: 1;
    /* Each column takes equal space initially */
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Space between the two feature boxes in a column */
}

.feature-box {
    display: flex;
    gap: 15px;
    text-align: left;
}

.icon-container {
    background-color: #007bff;
    /* Bright blue background for the icon square */
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.text-content h3 {
    margin: 0 0 5px 0;
    color: #4F2B2B;
    font-size: 18px;
}

.text-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.image-column {
    flex-shrink: 0;
    width: 40%;
    /* The height is now controlled by the content's aspect ratio */
    max-width: 450px;
}

.center-image-placeholder {
    width: 100%;
    /* Aspect ratio (3:2 = 66.66%) */
    padding-top: 66.66%;
    background-color: #ccc;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    /* Styles for the visual placeholder */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-style: italic;
    text-align: center;
}

.responsive-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the placeholder without stretching */
}


@media (max-width: 900px) {
    .features-layout {
        flex-direction: column;
        gap: 30px;
    }

    .feature-column,
    .image-column {
        width: 100%;
        max-width: 100%;
    }

    .feature-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-box {
        width: 45%;
        min-width: 280px;
    }

    .main-heading {
        font-size: 28px;
    }
}

/* ===========================Service======================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
#service {
    background: linear-gradient(135deg, #e9f3ff, #ffffff);
    padding-top: 80px;
    padding-bottom: 80px;
}



/* --- Header Styling --- */
.header-content {
    text-align: center;
    padding: 50px 0 30px;
}

.sub-heading {
    color: #007bff;
    /* Bright blue color */
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    color: #4F2B2B;
    /* Darker blue/navy for strong text */
    margin: 0 0 10px 0;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto 40px;
}

/* --- Grid Layout --- */
.service-grid {
    display: grid;
    /* Create 3 columns of equal width */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

/* --- Card Base Styling --- */
.service-card,
.cta-card {
    background-color: #f0f7ff;
    /* Very light blue background */
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    /* Lift card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #007bff;
    /* Bright blue background */
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    /* Diamond shape via rotation */
    transform: rotate(45deg);
    border-radius: 5px;
}

.icon-box i {
    transform: rotate(-45deg);
    /* Rotate icon back to normal */
}

.service-card h3 {
    color: #4F2B2B;
    font-size: 20px;
    margin: 10px 0;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

.cta-card {
    background-color: #007bff;
    /* Solid blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    /* Ensure CTA card is roughly the same height */
    padding: 0;
}

.cta-button {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 20px;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Animation Setup --- */

.hidden-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible-card {
    opacity: 1;
    transform: translateY(0);
}

/* ============================Woring Process======================= */

.process-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    gap: 10px;
}

.process-step {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step h3 {
    color: #4F2B2B;
    font-size: 20px;
    margin: 15px 0 5px 0;
}

.process-step p {
    color: #666;
    font-size: 14px;
}

.process-step .icon-box {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.arrow-separator {
    color: #ccc;
    font-size: 30px;
    margin-top: 30px;
    opacity: 0;
    /* Start hidden */
    transition: opacity 0.5s ease;
}

@keyframes arrowPulse {
    0% {
        color: #ccc;
        transform: scale(1);
    }

    50% {
        color: #007bff;
        /* Bright blue color at peak */
        transform: scale(1.1);
    }

    100% {
        color: #ccc;
        transform: scale(1);
    }
}

.animated-arrow {
    animation: arrowPulse 1.5s infinite ease-in-out;
}


.hidden-step {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible-step {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 80%;
    }

    .arrow-separator {
        transform: rotate(90deg);
        margin: 0;
        padding: 20px 0;
    }

    .hidden-step {
        transform: translateY(30px);
    }
}



/* ==================pricing Plans============================ */

.pricing-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #e9f3ff, #ffffff);
    background-attachment: fixed;
    /* Premium parallax feel */
}

/* --- NEW SLIDER WRAPPER --- */
.slider-wrapper {
    position: relative;
    /* For positioning the slide buttons */
    overflow: hidden;
    /* Hides cards outside the visible area */
    padding: 0 40px;
    /* Space for the left/right buttons */
}

.pricing-grid {
    display: flex;
    /* Arranges cards in a single horizontal row */
    gap: 20px;
    /* Space between cards */
    text-align: center;
    overflow-x: auto;
    /* Enables horizontal scrolling */
    scroll-behavior: smooth;
    /* Smooth scroll for JS buttons */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    padding: 10px 0; /* Ensures content is not hidden by padding */

    /* Original grid-template-columns has been replaced by display: flex */
}

/* Hide the scrollbar for Webkit browsers (Chrome, Safari) */
.pricing-grid::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    /* Critical for slider: sets a fixed card width and prevents shrinking/growing */
    flex: 0 0 300px; 
    min-width: 280px; 
    
    background-color: white;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
    /* Highlight top border */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- SLIDE NAVIGATION BUTTONS --- */
.slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #007bff;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.slide-button:hover {
    background-color: #007bff;
    color: white;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}


/* Plan Header (Original Styles) */
.plan-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    font-size: 22px;
    color: #4F2B2B;
    margin: 0;
}

.plan-header p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0 0;
}

.plan-price {
    font-size: 40px;
    font-weight: bold;
    color: #007bff;
    padding: 30px 0;
}

.plan-price span {
    font-size: 16px;
    font-weight: normal;
    color: #888;
}

.plan-features ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.plan-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px dashed #eee;
}

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

.check {
    color: #007bff;
    /* Blue for checkmark */
}

.cross {
    color: #dc3545;
    /* Red for cross */
}

/* Order Button (Original Styles) */
.order-btn {
    display: inline-block;
    background-color: #F27A9B;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    margin: 30px 0 20px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #F27A9B;
}




@media (max-width: 600px) {
    
    .slider-wrapper {
        padding: 0 10px; 
    }
    
    .slide-button {
        padding: 8px 10px;
        font-size: 20px;
    }

   
}


/* =================================GENERAL FAQS================================ */
/* --- FAQ Section Styling --- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #eef5ff, #ffffff 40%, #f6faff);
    background-attachment: fixed; /* Premium parallax smooth effect */
}


.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 50px;
}

.faq-intro-column {
    flex: 1;
    max-width: 45%;
}

.faq-accordion-column {
    flex: 1;
    max-width: 55%;
}

.intro-text {
    color: #666;
    margin-bottom: 30px;
}

.explore-btn {
    display: inline-block;
    background-color: #F27A9B;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #F27A9B;
}

/* --- Accordion Styling --- */
.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #f0f7ff;
    color: #4F2B2B;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-item.active-item .faq-question {
    background-color: #007bff;
    color: white;
}

.faq-item.active-item .faq-question.active {
    background-color: #007bff;
    color: white;
}

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

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

/* Answer Content */
.faq-answer {
    background-color: #f8f8ff;
    color: #333;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active-item .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

/* --- Section Slide-in Animation --- */
.hidden-faq {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible-faq {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Adjustments --- */

/* Tablet and below */
@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 30px;
        text-align: center; /* Center content */
        padding: 20px;
    }

    .faq-intro-column,
    .faq-accordion-column {
        max-width: 100%;
    }

    .faq-question {
        justify-content: center; /* Center question text + arrow */
        text-align: left;
    }

    .faq-answer {
        text-align: left;
    }

    .explore-btn {
        margin: 0 auto;
        display: inline-block;
    }
}

/* Mobile: smaller screens */
@media (max-width: 768px) {
    .faq-container {
        gap: 20px;
        padding: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 12px 15px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 10px 15px;
    }

    .intro-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .faq-question {
        font-size: 14px;
        padding: 10px 12px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 8px 12px;
    }

    .intro-text {
        font-size: 13px;
    }

    .explore-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* =============================Secont faq===================== */




/* =================TESTIMONIAL==================================== */
.testimonial-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8faff;
    /* Light background for the section */
}

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

.tagline {
    color: #007bff;
    /* Blue color for 'TESTIMONIAL' */
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

h2 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 40px;
    color: #212529;
}

h2+div {
    /* Blue line below the title */
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: -35px auto 40px;
}

/* Slider/Wrapper Styling */
.cards-wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    cursor: grab;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ... rest of the CSS ... */

/* Hide Scrollbar for Chrome, Safari and Opera */
.cards-wrapper::-webkit-scrollbar {
    display: none;
}

/* Individual Card Styling */
.card-container {
    min-width: 380px;
    /* Each card's fixed width */
    margin-right: 30px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-out;
    scroll-snap-align: start;
    /* Scroll snaps to the start of each card */
    text-align: left;
}


.blue-bg {
    background-color: #e6f0ff;
    /* Light blue background */
}

.white-bg {
    background-color: #ffffff;
    /* White background */
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-name {
    font-size: 1.2em;
    color: #007bff;
    margin: 0;
}

.profession {
    font-size: 0.9em;
    color: #6c757d;
    margin: 0;
    text-transform: uppercase;
}

.testimonial-text {
    color: #495057;
    line-height: 1.6;
}

/* Pagination Dots Styling */
.pagination-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #007bff;
    /* Active dot color */
    width: 25px;
    /* Highlighted dot is longer */
    border-radius: 5px;
}

/* ======================REQUEST A QUOTE===================== */


.quote-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* White background for the whole section */
}

.quote-section .container {
    display: flex;
    align-items: stretch;
    
    max-width: 90%;
    
    padding: 0;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    margin: 0 auto;
    
}

/* --- Left Content Styling --- */
.left-content {
    flex: 1;
    padding: 50px;
    background-color: #ffffff;
}

.left-content .subtitle {
    color: var(--light-blue);
    /* From :root: #3498db */
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.left-content h1 {
    font-size: 2.2em;
    color: var(--dark-blue, #333333);
    /* Dark text for heading */
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

/* Separator line below the heading */
/* Separator line centered */
.left-content .separator {
    width: 60px;                /* line width */
    height: 3px;                /* line thickness */
    background-color: var(--light-blue);
    margin: 15px auto 30px auto; /* top 15px, left/right auto, bottom 30px */
    display: block;             /* ensure it behaves like a block element */
}


.info-details {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    color: #495057;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    font-weight: 500;
}

.info-item i {
    color: var(--light-blue);
    margin-right: 10px;
    font-size: 1.1em;
}

.left-content .description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.call-action {
    display: flex;
    align-items: center;
}

.call-icon {
    background-color: var(--light-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    margin-right: 15px;
}

.call-action p {
    color: #495057;
    font-size: 0.9em;
    margin: 0 0 2px 0;
}

.call-action .phone-number {
    color: var(--light-blue);
    font-size: 1.4em;
    font-weight: bold;
    margin: 0;
    text-decoration: none;
    /* Remove underline from phone link */
}


/* --- Right Form Container Styling (Matches Image) --- */

.right-form-container {
    flex: 1;
    /* Custom blue background matching the image (slightly lighter than :root light-blue) */
    /* background-color: #00aaff; */
    padding: 50px 40px;
}
.right-form-container button a {
    text-decoration: none;
    color: #fff;
}

.quote-form {
    display: flex;
    flex-direction: column;
}

/* Styling for all form inputs (input, select, textarea) */
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    /* Light blue input background matching the image */
    background-color: #e6f7ff;
    color: var(--dark-blue, #333);
    font-size: 1em;
    box-sizing: border-box;
    border-radius: 0;
    /* Remove rounding */
    /* Remove default appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Adjust select input for dropdown arrow */
.quote-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

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

/* Form Button Styling (Dark Navy Blue) */
.quote-form button {
    width: 100%;
    padding: 18px;
    background-color: #F27A9B;
    /* Dark Navy Blue matching the image */
    color: white;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    border-radius: 2px;
}

.quote-form button:hover {
    background-color: #c92b55;
    /* Dark blue from :root */
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

    /* Stack the left content and right form vertically on tablets/mobiles */
    .quote-section .container {
        flex-direction: column;
        /* Mobile पर इसे 90% रखें ताकि यह स्क्रीन के किनारों से न चिपके */
        max-width: 90%;
    }

    .left-content,
    .right-form-container
     {
        padding: 30px;
        flex: auto;
        text-align: center;
    }

    .info-details {
        flex-direction: column;
        gap: 15px;
    }
}

/* WhatsApp Quote Button */
.quote-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #F27A9B; /* WhatsApp green */
    color: #fff;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.quote-btn:hover {
    background-color: #F27A9B;
}

/* Ensure button fits well on mobile */
@media (max-width: 992px) {
    .quote-btn {
        font-size: 1em;
        padding: 14px;
    }
}

/* ============================team-section================ */
.team-section {
    padding: 80px 0;
    background-color: #f8faff;
    text-align: center;
}

.team-section .section-header {
    text-align: center;
    padding-bottom: 50px;
}

.team-section .subtitle {
    color: var(--light-blue, #007bff);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-section .main-heading {
    font-size: 2.5em;
    color: var(--dark-blue, #4F2B2B);
    margin: 0 0 10px 0;
}

.team-section .underline {
    width: 60px;
    height: 3px;
    background-color: var(--light-blue, #007bff);
    margin: 10px auto 0;
}

/* --- Team Grid Layout --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* --- Team Member Card (Fixed Height) --- */
.team-member {
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- Photo and Social Links (Fixed Image Size) --- */
.member-photo-container {
    position: relative;
    overflow: hidden;

    height: 300px;
    width: 100%;
}

.member-photo {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

/* Social Links Overlay Container */
.social-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 31, 63, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* SHOW SOCIAL LINKS ON HOVER */
.team-member:hover .social-links {
    opacity: 1;
}

.social-links a {
    color: white;
    background-color: var(--light-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

/* --- Member Info (Fixed Content Spacing) --- */
.member-info {
    padding: 20px 10px 30px;
    text-align: center;

    flex-grow: 1;
}

.full-name {
    font-size: 1.3em;
    color: var(--dark-blue, #333);
    min-height: 30px;
    margin: 0 0 5px 0;
}

.designation {
    font-size: 0.9em;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    min-height: 20px;
    margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .team-grid {
        gap: 20px;
    }
}

/* ===========================blog-section===================== */

/* ============================================== */
/* === 15. BLOG POST SECTION STYLING (NEW) === */
/* ============================================== */

/* Reusing existing utility class */
.blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
    /* Assuming white background */
}

/* --- Header Styling --- */
.blog-header-content {
    text-align: center;
    padding-bottom: 50px;
}

.blog-sub-heading {
    color: var(--light-blue);
    /* Reusing existing variable */
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.blog-main-heading {
    font-size: 2.5rem;
    color: var(--dark-blue);
    /* Reusing existing variable */
    margin: 5px 0 10px 0;
    font-weight: 700;
}

.blog-underline {
    width: 60px;
    height: 3px;
    background-color: var(--light-blue);
    margin: 0 auto 0;
}

/* --- Blog Grid Layout --- */
.blog-grid {
    display: grid;
    /* 3 columns on large screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Blog Card Styling --- */
.blog-card {
    background-color: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.blog-image-container {
    position: relative;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 250px;
    /* Fixed height for image consistency */
    object-fit: cover;
    display: block;
}

/* Category Tag */
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--light-blue);
    color: var(--text-color);
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

/* Content Area */
.blog-content {
    padding: 15px 25px 30px 25px;
    background-color: #e6f0ff;
    /* Light blue background for content area */
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--dark-blue);
    font-size: 14px;
}

.meta-item i {
    color: var(--light-blue);
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 10px 0;
    line-height: 1.3;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 20px;
}

.blog-read-more {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--light-blue);
}

.blog-read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.blog-read-more:hover i {
    margin-left: 10px;
}

/* --- Responsive Adjustments for Blog Section --- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }

    .blog-main-heading {
        font-size: 2rem;
    }

    .blog-img {
        height: 200px;
        /* Adjust height on mobile */
    }
}

/* =========================Footer========================== */
.footer {
    background: #ffffff;
    color: #000;
    padding: 70px 5% 30px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 10px 10px 40px 10px #bce3f7;
}

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

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 200px;
    border-radius: 8px;
}

.footer-logo h2 {
    font-size: 32px;
    margin: 0;
}

/* TEXT */
.footer-col p {
    margin-top: 15px;
    line-height: 1.7;
    color: #000;
}

/* SUBSCRIBE BOX */
.footer-subscribe {
    margin-top: 20px;
    display: flex;
}

.footer-subscribe input {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.footer-subscribe button {
    padding: 14px 25px;
    border: none;
    background: #F27A9B;
    color: #ffffff;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
}

.footer-subscribe button:hover {
    background: #f0507b;
    color: #fff;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid #00AEEF;
    padding-bottom: 8px;
    width: fit-content;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
    font-size: 16px;
}

.footer-col ul li a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #00AEEF;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #F27A9B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
}

#icon {
    font-size: 18px;
    background: #ffffff;
    color: #F27A9B;
}

#icon:hover {
    background: #F27A9B !important;
    color: #ffffff;
}

/* BOTTOM TEXT */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #1b324a;
    color: #000;
    font-size: 15px;
}

/* --- RESPONSIVE --- */

/* --- UNIVERSAL RESPONSIVE FIX --- */

/* 1. Large Tablets & Nest Hub Max (1024px - 1280px) */
@media (max-width: 1280px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* 2. Tablets (iPad, Surface Pro, Nest Hub) - (768px - 992px) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2x2 Layout */
        gap: 40px;
    }
    .footer-col.about {
        grid-column: span 2; /* About section top par poori width lega */
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-col h3 {
        margin: 0 auto 15px; /* Headings center align */
    }
}

/* 3. Mobile Phones (iPhone XR, 12 Pro, 14 Pro Max, Pixel 7, Samsung S20) - (480px - 767px) */
@media (max-width: 767px) {
    .footer-container {
        /* Mobile par 3x2 look ke liye: About full width, baaki 2-2 side by side */
        grid-template-columns: 1fr 1fr; 
        gap: 25px;
    }

    .footer-col.about {
        grid-column: span 2;
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px dashed #bce3f7;
    }

    .footer-col h3 {
        font-size: 18px;
        width: 100%;
        text-align: left; /* Mobile grid mein left align clean lagta hai */
    }

    .footer-col ul li {
        font-size: 14px;
    }

    /* Subscribe box adjustment */
    .footer-subscribe {
        flex-direction: column; /* Chhote phone par stack karega */
        gap: 10px;
    }

    .footer-subscribe input, 
    .footer-subscribe button {
        border-radius: 6px;
        width: 100%;
    }
}

/* 4. Small Phones (iPhone SE, Galaxy A51) - (Below 480px) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 5% 20px;
    }
    
    .footer-container {
        gap: 20px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-col h3 {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 12px;
        margin-top: 25px;
    }
}


#p{
    text-align: left !important;
}