@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-red:#E31E24;
    --bg-red:#ff4d4d;
    --dark-text:#333;
    --grey-text:#666;
    --light-bg:#f9f9f9;
    --footer-bg:#222;
    --primary-color:#E31E24; 
    --dark-bg:#1a1a1a;
    --text-gray:#a0a0a0;
    
}
body { font-family: 'Roboto', sans-serif;
        color: var(--dark-text); 
        line-height: 1.6; 
        background-color: #fff; 
    }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* UTILITIES */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-half { width: 50%; padding: 0 15px; }
.col-third { width: 33.33%; padding: 0 15px; }
.col-full { width: 100%; padding: 0 15px; }
.section-padding { padding: 60px 0; }
.mt-4 { margin-top: 20px; }
.bg-light { background-color: var(--light-bg); }
.text-red { color: var(--primary-red); }

/* --- TOP HEADER (White) --- */
.top-header {
    background-color: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #f1f1f1;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    position: fixed; 
    z-index: 2000; 
    display: flex; 
    align-items: center;  
    gap: 15px; 
}
.brand-logo { height: 60px; width: auto; }
.logo-text h1 { 
    font-size: 26px; 
    color:var(--light-bg) ; 
    color:#ff4d4d;
    color:var(--primary-red);
    text-shadow:3px 2px 3px rgba(100,100,100,.3);
    line-height: 1; 
    margin-bottom: 2px;
     font-family: "Playfair Display SC", serif;
  font-weight: 700;
  transform:translateY(5px);
  
}
.logo-text span { font-size: 10px; text-transform: uppercase; color: #999; letter-spacing: 2.5px; font-weight: 500;font-family: "Playfair Display SC", serif;
  font-weight: 700; border-top:1px solid #999; }

/* CONTACT INFO BLOCKS */
.contact-info-area { display: flex; gap: 0; margin-left: auto;}
.info-box { display: flex; align-items: center; gap: 15px; padding: 0 30px; border-right: 1px solid #e5e5e5; }
.info-box:last-child { border-right: none; padding-right: 0; }
.icon-square {
    width: 42px; height: 42px;
    border: 1px solid #ff4d4d;
    display: flex; align-items: center; justify-content: center;
    color: #ff4d4d; font-size: 18px; border-radius: 2px;
}
.info-text { display: flex; flex-direction: column; }
.info-text .label { font-size: 12px; color: #999; margin-bottom: 3px; font-weight: 400; }
.info-text .value { font-size: 13px; color: #555; font-weight: 500; }

/* --- STICKY NAVBAR (Updated with Red Slide Down) --- */
.sticky-navbar {
    background-color: #343a40;
    height: 60px;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-flex { display: flex; justify-content:end; align-items: center; height: 100%; }
.nav-links { list-style: none; display: flex; height: 100%; margin: 0; }

.nav-links li {
    position: relative; /* Needed for slide effect */
    height: 100%;
    overflow: hidden; /* Keeps red box contained */
}

/* Link Styling */
.nav-links a.slide-effect {
    position: relative;
    display: flex; align-items: center;
    height: 100%; padding: 0 25px;
    color: #fff; text-decoration: none;
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    z-index: 2; /* Text on top */
    transition: color 0.3s;
}

/* The Red Slide Down Background */
.nav-links li::before {
    content: '';
    position: absolute;
    top: -100%; /* Start hidden above */
    left: 0; width: 100%; height: 100%;
    background-color: var(--primary-red); /* Brand Red */
    transition: top 0.3s ease;
    z-index: 1;
}

/* Hover State */
.nav-links li:hover::before { top: 0; }
.nav-links li a.active { background-color: var(--primary-red); } /* Static active state */


/* --- Desktop Reset --- */
.menu-toggle { display: none; cursor: pointer; z-index: 3000; }
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); visibility: hidden; opacity: 0;
    z-index: 2400; transition: 0.3s;
}

/* --- Mobile Styling --- */
@media (max-width: 992px) {
    .logo-text span{letter-spacing: 1.5px;}
    .top-header{
        position: fixed;
        z-index: 3000;
        width: 100%;
        padding: 10px 0;
    }
    .header-flex {
    align-items: center;
    flex-direction: row;
    /*padding-right:10px;*/
}
    .logo-area {
        /* Change from fixed to relative/static for mobile flow */
        position: relative !important; 
        left: 0 !important;
        top: 0 !important;
        z-index: 2000;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    /* Hamburger "X" Animation */
    .menu-toggle {
        display: block;
        width: 30px; height: 20px;
        position: relative;

    }
    .bar {
        position: absolute; width: 100%; height: 3px;
        background: var(--primary-red); transition: 0.3s;
    }
    .bar:nth-child(1) { top: 0; }
    .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .bar:nth-child(3) { bottom: 0; }

    /* Open State for X */
    #menuToggle.active .bar:nth-child(1) { transform: rotate(45deg); top: 10px; }
    #menuToggle.active .bar:nth-child(2) { opacity: 0; }
    #menuToggle.active .bar:nth-child(3) { transform: rotate(-45deg); bottom: 7px; }

    /* Moving Info & Nav into Sidebar */
    .contact-info-area, .sticky-navbar {
        position: fixed; right: -100%; top: 0;
        width: 280px; height: 50vh;
        background: #fff; flex-direction: column;
        transition: 0.4s ease-in-out; z-index: 2500;
        padding-top: 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .contact-info-area{
        height: 30vh;
    }

    /* Stack them vertically */
    .sticky-navbar { background: #343a40; top: 30vh; bottom: 0; height: auto; }
    .contact-info-area { top: 0; height: 50vh; background: #fff; justify-content: center; }
    
    .info-box { border-right: none; border-bottom: 1px solid #eee; padding: 20px; width: 100%; }
    .nav-links { flex-direction: column; width: 100%; height: auto; }
    .nav-links li { height: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }

    /* Show Menu Class */
    .mobile-active .contact-info-area { right: 0; height:30vh; }
    .mobile-active .sticky-navbar { right: 0; top: 30vh; height: 50vh; z-index:4000; }
    .mobile-active .menu-overlay { visibility: visible; opacity: 1; }
}
/* CART BUTTON */
.nav-btn { height: 100%; }
.cart-btn {
    background-color: var(--primary-red); color: #fff;
    height: 100%; padding: 0 35px;
    display: flex; align-items: center;
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    transition: 0.3s;
}
.cart-btn i { margin-left: 10px; font-size: 14px; }
.cart-btn:hover { background-color: #e04343; }


/* --- HERO CAROUSEL STYLES --- */
.hero-carousel {
    position: relative;
    height: 600px; width: 100%;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out;
    display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.4); z-index: 1;
}

/* Hero Typography & Animation */
.caption-container { position: relative; z-index: 2; color: #fff; }
.caption-content { max-width: 600px; }

.slide-subtitle {
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 15px; opacity: 0; animation: fadeInUp 1s forwards 0.5s;
}

.slide-title {
    font-size: 48px; font-weight: 800; text-transform: uppercase;
    margin-bottom: 20px; line-height: 1.1; opacity: 0; animation: fadeInUp 1s forwards 0.8s;
}

.slide-desc {
    font-size: 15px; line-height: 1.6; margin-bottom: 35px; color: #ddd;
    opacity: 0; animation: fadeInUp 1s forwards 1.1s;
}

/* Hero Button */
.hero-btn {
    display: inline-flex; text-decoration: none; height: 45px;
    opacity: 0; animation: fadeInUp 1s forwards 1.4s;
}
.hero-btn .btn-text {
    background-color: #343a40; color: #fff;
    padding: 0 25px; display: flex; align-items: center;
    font-size: 12px; font-weight: bold; text-transform: uppercase; transition: 0.3s;
}
.hero-btn .btn-icon {
    background-color: #ff4d4d; color: #fff;
    width: 45px; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.hero-btn:hover .btn-text { background-color: #ff4d4d; }
.hero-btn:hover .btn-icon { background-color: #d32f2f; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- OTHER SECTION STYLES (Preserved) --- */

/* Features Overlap */
.features-overlap { position: relative; margin-top: -50px; z-index: 10; margin-bottom: 40px; }
.feature-card { background: #fff; padding: 30px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: flex-start; gap: 15px; border-radius: 5px; height: 100%; }
.icon-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; font-size: 20px; }
.icon-blue { background-color: #003366; } .icon-red { background-color:var(--primary-red); } .icon-green { background-color: #28a745; }
.feature-text h3 { font-size: 18px; margin-bottom: 8px; font-weight: bold; color: var(--dark-text); }
.feature-text p { font-size: 13px; color: var(--grey-text); line-height: 1.4; }


/* --- PRIME LOCATION BANNER --- */
.location-banner {
    background: radial-gradient(circle at top left, #222, #343a40); /* Dark background for contrast against Hero */
    background: radial-gradient(circle at top left, #eee7, #eee5); /* Dark background for contrast against Hero */
    padding: 40px 0;
    border-bottom: 4px solid var(--primary-red);
    position: relative;
    z-index: 20; /* Ensures it sits above other overlapping elements */
}

.location-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Info Side */
.loc-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.loc-icon-pulse {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 59, 59, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
    animation: pulseBorder 2s infinite;
}

.loc-subtitle {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.loc-title {
    font-size: 25px;
    color: #343a40;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
}

/* Button Side */
.btn-location-tag {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: #fff;
    border-radius: 50px; /* Pill shape */
    padding: 5px 25px 5px 5px; /* Extra padding right for text */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-location-tag .tag-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
}

.btn-location-tag .tag-text {
    color: #222;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.btn-location-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Pulse Animation */
@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .location-flex {
        flex-direction: column;
        text-align: center;
    }
    .loc-info {
        flex-direction: column;
    }
    .loc-title {
        font-size: 18px;
    }
    .info-content{
        display:flex;
        flex-direction:column;
        padding:20px;
        align-items:center;
        justify-content:center;
    }
}

/* ========================================= */
/* --- PRICING PACKAGES SECTION STYLES ---   */
/* ========================================= */

.pricing-packages .text-center {
    text-align: center;
}
.pricing-packages .mb-5 {
    margin-bottom: 50px;
}

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-packages .main-heading{margin-bottom:10px;}
.pricing-packages h3{font-size:25px;}
/* --- INLINE BULLET LIST (PACKAGES HEADER) --- */
.package_head_list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0 auto; /* Spacing above the list */
    display: flex;
    justify-content: center;  /* Centers the items horizontally */
    flex-wrap: wrap;          /* Allows wrapping on small mobile screens */
    gap: 25px;                /* Space between each bullet point */
}

.package_head_list li {
    position: relative;
    padding-left: 15px;       /* Makes room for the bullet */
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
}

/* Custom Red Bullet Point */
.package_head_list li::before {
    content: '•';
    color: var(--primary-red); /* Uses your brand red */
    position: absolute;
    left: 0;
    font-size: 20px;           /* Makes the bullet slightly larger */
    line-height: 1;
    top: -1px;                 /* Optical alignment with text */
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .package_head_list {
        flex-direction: column; /* Stacks vertically on mobile */
        align-items: center;    /* Keeps them centered */
        gap: 10px;
    }
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Most Popular Badge for Middle Card */
.popular-card {
    border: 2px solid var(--primary-red);
    transform: scale(1.02); /* Make it slightly larger */
    z-index: 2;
}
.popular-card:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 40px;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Image & Price Tag */
.pkg-img {
    position: relative;
    height: 220px;
}
.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--primary-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.price-tag .start-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.9;
}
.price-tag .price {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

/* Card Content */
.pkg-content {
    padding: 40px 20px 25px; /* Extra top padding to clear price tag */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.pkg-target {
    font-size: 13px;
    color: var(--grey-text);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.pkg-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}
.pkg-includes li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.pkg-includes li i {
    color: var(--primary-red);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 14px;
}

/* Buttons */
.btn-pkg {
    display: block;
    text-align: center;
    background: #f1f1f1;
    color: #333;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}
.btn-pkg:hover {
    background: #e5e5e5;
}

.btn-red-solid {
    background: var(--primary-red);
    color: #fff;
}
.btn-red-solid:hover {
    background: #d32f2f;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-packages .col-third {
        width: 100%;
        margin-bottom: 30px;
    }
    .popular-card {
        transform: scale(1); /* Remove scale on mobile so it fits screen width */
    }
    .popular-card:hover {
        transform: translateY(-5px);
    }
}
/* About Section */
.about-image-wrapper { position: relative; padding-right: 20px; padding-bottom: 20px; }
.experience-badge { position: absolute; bottom: 0; right: 0; background-color: var(--primary-red); color: #fff; padding: 20px 30px; text-align: center; border: 5px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.experience-badge .years { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.experience-badge .text { font-size: 12px; text-transform: uppercase; }
.content-center { padding-left: 30px; display: flex; flex-direction: column; justify-content: center; }
.img-responsive { width: 100%; height: auto; display: block; }
.rounded { border-radius: 4px; }
.btn-red { background: var(--primary-red); color: white; padding: 12px 30px; font-weight: bold; font-size: 14px; border-radius: 4px; display: inline-block; }

/* Approach Section */
.approach-section { background-color: #fff; padding-bottom: 80px; position: relative; }
.approach-header { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80'); background-size: cover; background-position: center; box-shadow: inset 0 0 0 1000px rgba(180, 0, 0, 0.85); padding: 80px 0 180px 0; color: #fff; }
.mini-heading { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: bold; color: #fff; }
.hero-heading { font-size: 48px; text-transform: uppercase; font-weight: 900; line-height: 1; color: #fff; }
.header-desc { font-size: 16px; line-height: 1.6; color: #f1f1f1; border-left: 2px solid rgba(255,255,255,0.3); padding-left: 20px; }
.relative-container { position: relative; margin-top: -120px; z-index: 10; }
.image-card { background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.1); height: 100%; transition: transform 0.3s ease; }
.image-card:hover { transform: translateY(-10px); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.image-card:hover .card-img img { transform: scale(1.1); }
.card-text { padding: 25px; text-align: left; }
.category { color: var(--primary-red); font-size: 12px; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 10px; }
.card-text h3 { font-size: 20px; font-weight: 800; color: #111; margin: 0; }
.approach-footer { margin-top: 60px; background:#ccc5;display: flex; justify-content: space-between; align-items: center; padding: 40px; }
.footer-text p { font-size: 18px; color: #666; margin-bottom: 5px; }
.link-red { color: var(--primary-red); font-weight: bold; text-decoration: underline; font-size: 16px; }
.btn-red-block { background-color: var(--primary-red); color: #fff; padding: 15px 30px; font-weight: bold; text-transform: uppercase; font-size: 14px; border-radius: 2px; display: inline-block; }
.btn-red-block:hover { background-color: #d32f2f; color: #fff; }

/* Why Choose Us & Lists */
.since96_sec{border:2px solid var(--primary-red); border-radius: 10px;}
.sub-heading { color: var(--grey-text); font-weight: 400; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
.main-heading { font-size: 28px; text-transform: uppercase; margin-bottom: 20px; font-weight: 900; }
.feature-list li { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding: 15px 0; }
.feature-content strong { display: block; font-size: 16px; color: var(--dark-text); }
.feature-content span { font-size: 13px; color: var(--grey-text); }
.feature-list i { color: var(--primary-red); transition:.3s ease;}
.feature_btn{background:;width:80px;text-align:center; padding: 5px;}
.feature_btn:hover {box-shadow:-15px 3px 15px rgba(0,0,0,.15);transition:.3s ease;}
.feature_btn:hover i{transform:translateX(20px); transition:.3s ease;}
/* Offer Section */
/*.offer-visual-wrapper { position: relative; padding-right: 60px; }
.offer-tabs { position: absolute; top: 20px; right: 0; width: 140px; display: flex; flex-direction: column; z-index: 2; }
.tab-item { background-color: #343a40; color: #fff; padding: 25px 10px; text-align: center; cursor: pointer; transition: background 0.3s; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tab-item i { display: block; font-size: 24px; margin-bottom: 10px; color: transparent; -webkit-text-stroke: 1px #fff; }
.tab-item span { font-size: 13px; font-weight: 500; }
.tab-item.active, .tab-item:hover { background-color: var(--primary-red); }
.content-pad-left { padding-left: 40px; }
.offer-list li { display: flex; align-items: center; margin-bottom: 15px; color: #555; font-size: 15px; }
.offer-list li i { width: 30px; font-size: 20px; color: #888; margin-right: 15px; text-align: center; }
.btn-box-arrow { display: inline-flex; align-items: stretch; text-decoration: none; height: 45px; }
.btn-box-arrow .btn-text { background-color: #343a40; color: #fff; padding: 0 25px; display: flex; align-items: center; font-size: 14px; font-weight: bold; text-transform: uppercase; transition: background 0.3s; }
.btn-box-arrow .btn-icon { background-color: var(--primary-red); color: #fff; width: 45px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.3s; }
.btn-box-arrow:hover .btn-text { background-color: #23272b; } .btn-box-arrow:hover .btn-icon { background-color: #d32f2f; }*/

/* --- WHAT WE OFFER SECTION (FIXED) --- */

/* --- OFFER SECTION (FIXED LAYOUT) --- */

.offer-section-fixed {
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

/* 1. FORCE ROW LAYOUT */
.offer-flex-wrapper {
    display: flex;
    align-items: center; /* Vertically center image and text */
    justify-content: space-between;
    gap: 40px; /* Space between image and text */
}

/* LEFT COLUMN (Image) - 50% Width */
.offer-col-left {
    width: 50%;
    position: relative;
    /* Ensure tabs don't get cut off on the right */
    padding-right: 0; 
}

/* RIGHT COLUMN (Text) - 50% Width */
.offer-col-right {
    width: 50%;
    padding-left: 20px;
}

/* 2. VISUAL WRAPPER (Anchor for Tabs) */
.visual-wrapper {
    position: relative; /* Crucial for absolute positioning */
    width: 100%;
    height: 480px; /* Fixed height for consistency */
    border-radius: 4px;
}

/* IMAGES */
.tab-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.tab-img.active { opacity: 1; }

.tab-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* 3. FLOATING TABS (Right Edge) */
.floating-tabs {
    position: absolute;
    top: 50%;
    right: 0; /* Sticks to the right edge of the image wrapper */
    transform: translateY(-50%); /* Centers vertically */
    z-index: 10;
    width: 140px;
    display: flex;
    flex-direction: column;
}

.tab-box {
    background: #343a40; /* Dark Grey */
    color: #fff;
    padding: 25px 10px;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    right: 0;
}
.tab-box:last-child { border-bottom: none; }

.tab-box i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #bbb; /* Muted icon color */
    transition: 0.3s;
}
.tab-box span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Active State: Red & Pop Out */
.tab-box.active, .tab-box:hover {
    background: var(--primary-red);
    right: -15px; /* Moves tab slightly to the right (outside image) */
    /*box-shadow: 10px 5px 10px rgba(10,10,10,.5);*/
    box-shadow: 5px 5px 10px rgba(0,0,0,0.25); /* Drop shadow */

}
.tab-box.active i, .tab-box:hover i {
    color: #fff;
}

/* 4. TEXT CONTENT */
.content-text {
    display: none;
    animation: fadeInUp 0.5s ease;
}
.content-text.active { display: block; }

.sub-heading {
    font-size: 14px; text-transform: uppercase; color: #888; margin-bottom: 5px; letter-spacing: 1px;
}
.main-heading {
    font-size: 32px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; color: #333; line-height: 1.2;
}
.text-red { color: var(--primary-red); }
.text-desc { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; }

/* Feature List */
.offer-features { list-style: none; margin-bottom: 30px; }
.offer-features li { display: flex; align-items: center; margin-bottom: 12px; color: #444; font-weight: 500; font-size: 15px; }
.offer-features i { color: var(--primary-red); width: 30px; font-size: 18px; margin-right: 10px; text-align: center; }

/* 5. BUTTON ANIMATION (Swap Colors) */
.btn-swap-animate {
    display: inline-flex;
    height: 50px;
    text-decoration: none;
    margin-top: 10px;
}
.text-part {
    background: #343a40; color: #fff;
    padding: 0 35px;
    display: flex; align-items: center;
    font-weight: bold; font-size: 13px; text-transform: uppercase;
    transition: background 0.3s;
    transform:skew(-10deg);
    border:none;

}
.icon-part {
    background: var(--primary-red); 
    color: #fff;
    width: 50px;
    height: 60px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
    transform:skew(-10deg);
    border: none;

}

/* Hover Effect */
.btn-swap-animate:hover .text-part { 
    background: var(--primary-red); 
    transform:translateX(10px) skew(-10deg); 
    transition: .3s ease
}
.btn-swap-animate:hover .icon-part { 
    background: #343a40; 
    transform:translateX(15px) skew(-10deg); 
    transition: .3s ease
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 6. RESPONSIVE (Stack on Mobile) */
@media (max-width: 992px) {
    .offer-flex-wrapper {
        flex-direction: column; /* Stack vertically */
    }
    .offer-col-left, .offer-col-right {
        width: 100%;
        padding: 0;
    }
    .offer-col-left { margin-bottom: 40px; }
    
    /* On mobile, tabs move to bottom right or horizontal */
    .floating-tabs {
        width: 100px; /* Smaller tabs */
        right: 0;
    }
    .tab-box { padding: 15px 5px; }
    .tab-box.active { right: 0; } /* Disable pop-out on mobile to prevent overflow */
}


/* Collage Section */
.collage-section .container-fluid { padding: 0; overflow: hidden; }
.collage-row { display: flex; flex-wrap: wrap; width: 100%; margin: 0; padding: 0; }
.collage-col { width: 25%; padding: 0; box-sizing: border-box; border: none; }
.collage-tile { height: 350px; width: 100%; display: flex; flex-direction: column; justify-content: center; position: relative; }
.dark-tile { background-color: #1a1a1a; color: #fff; padding: 40px; }
.dark-tile h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; }
.dark-tile p { font-size: 13px; color: #b0b0b0; line-height: 1.6; margin: 0; }
.red-tile { background-color: var(--primary-red); color: #fff; padding: 40px; }
.red-tile h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; }
.red-tile p { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.6; }
.img-tile { background-color: #000; overflow: hidden; }
.img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.img-tile:hover img { transform: scale(1.1); }
.tile-number { position: absolute; top: 25px; left: 25px; font-size: 28px; font-weight: 900; color: #fff; z-index: 5; text-shadow: 0 2px 10px rgba(0,0,0,0.5); font-family: 'Roboto', sans-serif; }

/* Service Plans / Testimonials / CTA / Blog */
.service-card { background: #fff; border: 1px solid #eee; text-align: center; margin-bottom: 20px; }
.price-header { padding: 20px; border-bottom: 1px solid #eee; } .price-header h3 { font-size: 16px; margin: 0; font-weight: bold; }
.service-card .card-body { padding: 20px; }
.btn-text { display: block; color: var(--grey-text); font-size: 12px; margin-bottom: 10px; font-weight: bold; }
.btn-solid { display: inline-block; background: var(--dark-text); color: #fff; padding: 10px 20px; font-size: 12px; font-weight: bold; text-transform: uppercase; }
.btn-solid.white-border { background: transparent; border: 2px solid #fff; }
.testimonial { font-style: italic; color: var(--grey-text); margin-bottom: 15px; font-size: 16px; }
.team-member{background: var(--primary-red); padding:10px;width: 50%; color:#eee;}
.team-member:hover{background:#343a40;transition: .3s ease;}
.team-member:hover h4{transform: translateX(50px); transition: .3s ease;}
.cta-banner { background: var(--primary-red); color: #fff; padding: 40px 0; text-align: center; }
.cta-banner h2 { font-size: 24px; max-width: 60%; line-height: 1.3; }
.section-head{
    padding: 30px ;
    /*background:var(--grey-text);*/
    color:#fff; 
    font-family: "Playfair Display SC", serif; 
    font-size: 20px; 
    text-align: center;
    letter-spacing:1.5px;
    font-weight: 900;
     color:var(--primary-red);
    text-shadow:3px 2px 3px rgba(100,100,100,.3);
    line-height: 1.5; 
    box-shadow:0px 0px 30px rgba(00,00,00,.3); ;
}

.blog-item { margin-top: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.blog-item .meta { font-size: 12px; color: var(--grey-text); margin-bottom: 10px; font-style: italic; }
.read-more { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: bold; color: var(--dark-text); border: 2px solid var(--dark-text); padding: 8px 15px; }

/* ========================================= */
/* --- CLIENT REVIEWS SECTION STYLES ---     */
/* ========================================= */

.bg-light { background-color: #f8f9fa; }
.mb-4 { margin-bottom: 30px; }

/* Header & Rating Area */
.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.overall-rating .score {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-text);
}
.overall-rating .stars {
    color: #fbbc05; /* Google Gold */
    font-size: 18px;
}

/* Google View Button */
.btn-solid-google {
    display: inline-block;
    background-color: #fff;
    color: #4285F4; /* Google Blue */
    border: 2px solid #4285F4;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.1);
}
.btn-solid-google i { margin-right: 8px; }
.btn-solid-google:hover {
    background-color: #4285F4;
    color: #fff;
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
}

/* Slider Wrapper & Track */
.review-slider-wrapper {
    width: 100%;
    overflow: hidden; /* Hides elements outside the box */
    position: relative;
    padding: 20px 0;
    /* Optional: Fading edges for a cleaner look */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.review-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* CSS Animation for continuous slide */
    animation: marqueeScroll 25s linear infinite;
}

/* Auto Slide pauses when mouse hovers over ANY card */
.review-slider-wrapper:hover .review-track {
    animation-play-state: paused;
}

/* Individual Review Card */
.review-card {
    display: block; /* Makes whole card clickable */
    width: 380px; /* Fixed width for uniformity */
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-decoration: none; /* Removes link underline */
    color: var(--dark-text);
    flex-shrink: 0; /* Prevents squishing */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

/* Hover effect on card to indicate clickability */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

/* Card Header (User Info + Google Logo) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    color: #fff; font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.avatar-img {
    width: 45px; height: 45px;
    border-radius: 50%; object-fit: cover;
}
/* Google default avatar colors */
.bg-blue { background-color: #4285F4; }
.bg-green { background-color: #34A853; }
.bg-orange { background-color: #FBBC05; }

.reviewer-info h5 { margin: 0 0 2px 0; font-size: 15px; font-weight: 700; color: #222; }
.reviewer-info span { font-size: 12px; color: #888; }
.google-icon { font-size: 24px; color: #4285F4; }

/* Stars inside Card */
.card-stars { color: #fbbc05; font-size: 14px; margin-bottom: 12px; }

/* Review Text */
.card-text { font-size: 14px; line-height: 1.6; color: #555; margin: 0; font-style: italic; }

/* Keyframes for Continuous Scroll */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    /* Moves the track exactly halfway (past the first set of 4 cards + gaps) */
    100% { transform: translateX(calc(-50% - 15px)); } 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .review-card { width: 300px; padding: 20px; }
    .overall-rating { flex-wrap: wrap; }
}

/* Footer */
.footer-section { background-color: #2b303a; color: #a0a6b5; position: relative;border-radius: 12px; padding-top: 100px; margin-top: 10px; }
.newsletter-bar { position: absolute; top: -50px; left: 0; width: 100%; }
.newsletter-content { background-color: #ff4d4d; background-image: linear-gradient(135deg, #ff4d4d 0%, var(--primary-red) 100%); padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; border-radius: 2px; }
.news-text h3 { color: #fff; margin: 0; font-size: 24px; font-weight: 700; }
.news-form { display: flex; gap: 0; width: 50%; }
.news-form input { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 10px 15px; width: 70%; outline: none; }
.news-form button { background: #2b303a; color: #fff; border: none; padding: 10px 25px; font-weight: bold; font-size: 12px; cursor: pointer; width: 30%; }
.footer-main { padding-bottom: 50px; }
.footer-heading { color: #fff; font-size: 16px; margin-bottom: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.col-footer-about { width: 30%; padding-right: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #fff; }
.footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.col-footer-links { width: 35%; } .links-columns { display: flex; gap: 20px; } .links-columns ul { width: 50%; }
.links-columns li { margin-bottom: 12px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }
.links-columns a:hover { color: var(--primary-red); padding-left: 5px; }
.col-footer-quote { width: 30%; }
.quote-form input, .quote-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px 0; margin-bottom: 15px; font-size: 13px; outline: none; }
.quote-btn-wrapper { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 15px; 
    margin-top: 10px; 

}
.quote-btn-wrapper span {
   color: #fff; 
   font-size: 12px; 
   font-weight: bold; 
   text-transform: uppercase; 
}
.btn-arrow-red { 
    background: var(--primary-red); 
    color: #fff; 
    border: none; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transform: skewX(-10deg); 
    cursor: pointer;
}
.btn-arrow-red i { transform: skewX(10deg); }
.contact-strip { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; padding-top: 40px; display: flex; justify-content: space-between; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.icon-circle-outline { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; }
.c-info h5 { margin: 0 0 5px 0; color: #fff; font-size: 14px; } .c-info p { margin: 0; font-size: 12px; }
.copyright-bar { background-color: #22262e; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.copyright-data{display:flex;justify-content:space-between;align-items:center;}
.text-center { text-align: center; }
.copyright-bar p { margin: 0; font-size: 12px; opacity: 0.6; }
.copyright-bar a{color:cyan;}

/* Responsive */
@media (max-width: 992px) {
    .header-flex { flex-direction: row; gap: 20px; }
    .contact-info-area { flex-wrap: wrap; justify-content: center; }
    .info-box { border: none; padding: 10px; }
    /*.nav-links { display: none; } */
    .nav-flex { justify-content: center; }
    .collage-col { width: 50%; }
}
@media (max-width: 768px) {
    .flex-between { flex-direction: column; text-align: center; }
    .col-half, .col-third, .col-full { width: 100%; margin-bottom: 20px; }
    .footer-row { flex-direction: column; text-align: center; gap: 30px; }
    .contact-strip { flex-wrap: wrap; gap: 20px; display:none; }
    .collage-col { width: 100%; }
    .newsletter-content { flex-direction: column; text-align: center; gap: 20px; }
    .news-form { width: 100%; }
    .offer-tabs { position: relative; width: 100%; flex-direction: row; }
    .cta-banner h2{max-width:100%; margin-bottom:10px;}
    .copyright-data{flex-direction:column;}
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 992px) {
    .footer-section {
        padding-top: 150px; /* More space for the newsletter bar */
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .news-form {
        width: 100%;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .col-footer-about, 
    .col-footer-links, 
    .col-footer-quote {
        width: 100%;
        padding: 0 15px;
        padding-right: 0;

    }

    .contact-strip {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .newsletter-bar {
        top: -80px; /* Adjusting position for smaller screens */
    }

    .news-text h3 {
        font-size: 18px;
    }

    .news-form {
        flex-direction: column;
        gap: 10px;
    }

    .news-form input, 
    .news-form button {
        width: 100%;
    }

    .links-columns {

        display: flex !important;
        flex-direction: row !important; /* Prevents stacking */
        justify-content: space-between;
        gap: 15px;
    }

    .links-columns ul {
        width: 48% !important; /* Keeps them side-by-side */
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc, .footer-heading {
        text-align: center;
    }
    
    .quote-form {
        text-align: center;
    }

    /* Centers the custom swap button */
    .btn-swap-animate {
        justify-content: center;
        margin: 0 auto;
    }
}

/* --- FIX FOR FLEX LAYOUT --- */
/* Ensure your 'row' uses flexbox if not already defined by a framework */
.row {
    display: flex;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pulsing effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    color: #fff;
}

/* Tooltip for desktop */
.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    right: 125%;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    .tooltip-text {
        display: none; /* Hide tooltip on mobile */
    }
}

/* Reset basic styles */
.swiperSec {
    background: #eee5;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 80px;

    /*background-color:;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.galleryHead
{
    width: 100%;
    margin-left: auto;
    padding-left: 30px;
}

/* Constrain the slider size */
/* 1. Limit the slider size */
.swiper {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio without stretching */
}

/* Customizing Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}



/* --- CONTACT SECTION --- */
.contact-section {
    padding: 0;
    background-color: #fff;
    font-family: 'Roboto', sans-serif; /* Matched to your global font */
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    /* Removed the shadow that might look weird on full width */
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.1); */
    overflow: hidden;
    align-items: stretch;
}

/* Map Styling */
.contact-map {
    flex: 1;
    min-width: 50%; /* Takes half width on desktop */
    min-height: 500px; /* Ensure height matches info box */
    position: relative;
    /* Optional filter for dark map style */
    filter: grayscale(100%) invert(90%) contrast(90%); 
}

.contact-map iframe {
    width: 100%; 
    height: 100%;
    border: 0;
    display: block;
}

/* Info Side Styling */
.contact-info {
    flex: 1;
    min-width: 50%; /* Takes half width on desktop */
    padding: 80px 60px; /* Increased padding for better spacing */
    background: var(--dark-bg); /* Uses your global variable */
    color: #fff;
    display: flex;
    align-items: center;
}

.info-content {
    width: 100%; /* Ensures content fills the box */
}

.sub-heading {
    color: var(--primary-red); /* Uses your global red */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #343a40;
}

.description {
    color: #999; /* Lighter grey for readability on dark bg */
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Items */
.contact-methods {
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 59, 59, 0.1); /* Red tint */
    border: 1px solid var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    border-radius: 50%; /* Circle looks better here */
    font-size: 24px;
    margin-right: 25px;
    flex-shrink: 0; /* Prevents squishing on small screens */
}

.text-box span {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.text-box strong {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

/* Social Links */
.social-links span {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.social-links .icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 25px;
    transition: color 0.3s ease;
}

.social-links .icons a:hover {
    color: var(--primary-red);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column; /* Stack vertically */
        height: auto;
    }

    .contact-map {
        min-width: 100%;
        height: 400px !important; 
        min-height:100%;
        order: 1; /* Map on top (optional, change to 2 for bottom) */
    }
    .contact-map iframe {
        height: 100% !important; /* Force iframe to fill the 400px parent */
    }

    .contact-info {
        min-width: 100%; /* Full width */
        padding: 50px 30px; /* Reduced padding for mobile */
        order: 2;
    }

    .main-heading {
        font-size: 28px; /* Smaller font for mobile */
    }
}

@media (max-width: 992px) {
    .swiperSec{
        padding-bottom: 10px;
    }
    
}