/* =========================
   Minimal Body CSS (No media)
========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}


/* =========================
   TOPBAR CSS
========================= */

/* =========================================
   TOPBAR + HEADER: Scroll pe topbar hide,
   header/navbar fixed rahe (Laptop/Desktop)
========================================= */

:root{
  --topbar-h: 72px;     
  --header-h: 72px;     
  --blue: #062a4b;
  --blue2:#043b67;
  --yellow:#ffda2d;
}

/* ✅ Default: topbar fixed on top (Desktop) */
.mdh-topbar{
  display: none;
  background: linear-gradient(90deg, #062a4b 0%, #043b67 50%, #062a4b 100%);
  border-bottom: 2px solid rgba(255, 54, 54, 0.9);
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* ✅ Show only on Laptop/Desktop */
@media (min-width: 992px){
  .mdh-topbar{ display: block; }
}

/* ✅ Topbar container */
.mdh-topbar-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mdh-topbar-item{
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.mdh-topbar-right{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 0;
}

.mdh-topbar-text{ line-height: 1.15; }

.mdh-topbar-sub{
  font-size: 13px;
  opacity: 0.92;
  margin-top: 3px;
}

.mdh-topbar-sub a{
  color: #eaf6ff;
  transition: 0.25s ease;
}

.mdh-topbar-sub a:hover{
  color: #ffda2d;
  text-decoration: underline;
}

.mdh-topbar-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.25s ease;
}

.mdh-topbar-icon i{
  font-size: 18px;
  color: #ffffff;
}

.mdh-icon-call{
  background: rgba(0, 255, 163, 0.12);
  border-color: rgba(0, 255, 163, 0.25);
}

.mdh-icon-mail{
  background: rgba(255, 218, 45, 0.14);
  border-color: rgba(255, 218, 45, 0.28);
}

.mdh-topbar-item:hover .mdh-topbar-icon{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

/* =========================
   HEADER CSS
========================= */

/* ✅ ROOT VARIABLES */
:root {
  --topbar-h: 60px;
  --header-h: 80px;
}

body {
  margin: 0;
  padding: 0;
}

.header-wrap{
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 9998;
  top: 0;
  transition: top 0.35s ease;
}

/* Desktop: topbar visible => header below it */
@media (min-width: 992px){
  .header-wrap{
    top: var(--topbar-h);
  }
}

.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 50%, var(--blue) 100%);
  border-bottom: 2px solid rgba(255, 54, 54, 0.9);
}

/* ✅ MAIN FIX: Logo container ko center align rakha with proper padding */
.header-left{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px; /* Only horizontal padding */
  min-width: 220px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 50%, var(--blue) 100%);
  z-index: 1;
}

.header-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding: 18px 0; /* Vertical padding on logo link itself */
}

/* ✅ Logo ko center mein fix rakha with max-height */
.header-logo-img{
  height: 50px; /* Increased size for better visibility */
  max-height: 50px; /* Prevent overflow */
  width: auto;
  display: block;
  object-fit: contain; /* Maintain aspect ratio */
  margin: auto; /* Extra centering insurance */
}

.header-nav{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 20px;
  z-index: 1;
}

.header-nav-link{
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  position: relative;
  padding: 8px 8px;
  transition: 0.25s ease;
}

.header-nav-link::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: -10px;
  height: 3px;
  background: var(--yellow);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: center;
  transition: .25s ease;
  opacity: 0;
}

.header-nav-link:hover{
  color: var(--yellow);
}

.header-nav-link:hover::after{
  transform: scaleX(1);
  opacity: 1;
}

/* Active Link Style */
.header-nav-link.active{
  color: var(--yellow);
}

.header-nav-link.active::after{
  transform: scaleX(1);
  opacity: 1;
}

/* ✅ Header right ko properly center kiya */
.header-right{
  display: flex;
  align-items: center;
  padding: 0 18px;
  z-index: 2;
  align-self: stretch;
}

.header-quote-btn{
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
  transition: 0.25s ease;
  white-space: nowrap;
  align-self: center;
}

.header-quote-btn:hover{
  background: var(--yellow);
  color: #062a4b;
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.header-strip{
  width: 70px;
  height: 100%;
}

/* Hamburger - Default Hidden */
.header-burger{
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  z-index: 10001;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header-burger span{
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header-overlay{
  display: none;
}

/* Scroll State (Desktop Only) */
@media (min-width: 992px){
  body.nav-scrolled .mdh-topbar{
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }

  body.nav-scrolled .header-wrap{
    top: 0;
  }
}

/* ========================================
   LAPTOP VIEW SPECIFIC (992px - 1200px)
   ======================================== */
@media (min-width: 992px) and (max-width: 1200px) {
  .header-logo{
    padding: 15px 0; /* Slightly reduced padding */
  }
  
  .header-logo-img{
    height: 60px; /* Increased for laptop */
    max-height: 60px;
  }
  
  .header-nav{
    gap: 20px;
  }
  
  .header-nav-link{
    font-size: 14px;
  }
  
  .header-quote-btn{
    font-size: 15px;
    padding: 11px 18px;
  }
}

/* ========================================
   MOBILE/TABLET NAV DROPDOWN
   ======================================== */
@media (max-width: 991px){

  body{
    padding-top: 80px;
  }

  .header-inner{
    overflow: visible;
  }

  /* ✅ Mobile mein bhi logo center mein with more space */
  .header-left{
    min-width: auto;
    padding: 0 14px;
    flex: 0 0 auto;
  }

  .header-logo{
    padding: 14px 0; /* Adjusted padding for larger logo */
  }

  .header-logo-img{
    height: 48px; /* Increased for mobile */
    max-height: 48px;
  }

  /* Hide Desktop Elements */
  .header-right{ 
    display: none;
  }
  
  .header-strip{ 
    display: none;
  }

  /* Show Hamburger */
  .header-burger{ 
    display: flex;
  }

  /* Mobile Nav Dropdown */
  .header-nav{
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-h) + 10px);
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(6, 42, 75, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    transform: translateY(-30px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
  }

  .header-nav-link{
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
    border-radius: 14px;
    text-align: left;
    display: block;
    margin: 2px 0;
  }

  .header-nav-link:hover{
    background: rgba(255,218,45,0.12);
  }

  .header-nav-link.active{
    background: rgba(255,218,45,0.18);
    color: var(--yellow);
  }

  .header-nav-link::after{
    display: none;
  }

  /* Overlay */
  .header-overlay{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
  }

  /* ========================================
     OPEN STATE
     ======================================== */
  .header-wrap.open .header-nav{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-wrap.open .header-overlay{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Hamburger Animation */
  .header-wrap.open .header-burger span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  
  .header-wrap.open .header-burger span:nth-child(2){
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .header-wrap.open .header-burger span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Extra Small Mobile */
@media (max-width: 576px){
  .header-left{
    padding: 0 10px;
  }

  .header-logo{
    padding: 14px 0; /* Adjusted for larger logo */
  }

  .header-logo-img{
    height: 46px; /* Increased for small screens */
    max-height: 46px;
  }

  .header-burger{
    width: 40px;
    height: 40px;
    right: 10px;
  }

  .header-burger span{
    width: 20px;
  }

  .header-nav{
    left: 8px;
    right: 8px;
    padding: 8px;
  }

  .header-nav-link{
    padding: 12px 12px;
    font-size: 14px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Hero Section css */

.home-hero-section{
  width: 100%;
}

.home-hero-section-slider{
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  background: #000;
}

/* ✅ Desktop/Laptop: Hero section ko topbar + header ke neeche push karo */
@media (min-width: 992px) {
  .home-hero-section-slider {
    margin-top: calc(60px + 80px); /* topbar 60px + header 80px = 140px */
  }
  
  /* ✅ When scrolled and topbar hidden */
  body.nav-scrolled .home-hero-section-slider {
    margin-top: 80px; /* only header height */
  }
}

/* slide */
.home-hero-section-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);     /* default off-right */
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.75s ease;
  display: grid;
  place-items: center;
}

/* overlay */
.home-hero-section-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* content */
.home-hero-section-content{
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 92%);
  padding: 18px 0 18px;
}

/* top line */
.home-hero-section-toptext{
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 26px);
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  text-shadow: 0 12px 22px rgba(0,0,0,0.45);
}

/* main heading */
.home-hero-section-title{
  color: #ffda2d;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 22px 0;
  font-size: clamp(30px, 4.5vw, 60px);
  text-shadow: 0 16px 28px rgba(0,0,0,0.55);
}

/* button */
.home-hero-section-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.25s ease;
}

.home-hero-section-btn:hover{
  background: white;
  color: #062a4b;
  border-color: black;
  transform: translateY(-2px);
}

/* active slide */
.home-hero-section-slide.is-active{
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

/* leaving slide to left */
.home-hero-section-slide.is-leave-left{
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

/* entering from right */
.home-hero-section-slide.is-enter-right{
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

/* arrows */
.home-hero-section-arrow{
  display: none !important;
}

/* dots */
.home-hero-section-dots{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.home-hero-section-dot{
  width: 34px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.home-hero-section-dot.active{
  background: #ffda2d;
  transform: scaleX(1.05);
}

/* =========================
   RESPONSIVE (Tablet/Mobile)
========================= */
@media (max-width: 991px) and (min-width: 769px){
  /* ✅ Tablet: body already has padding-top: 80px from header */
  .home-hero-section-slider{
    margin-top: 0;
    min-height: 55vh;
  }
}

@media (max-width: 768px){
  /* ✅ Mobile: body already has padding-top: 80px from header */
  .home-hero-section-slider{
    margin-top: 0;
    min-height: 50vh;
  }

  .home-hero-section-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    font-size: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.25);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 5;
    cursor: pointer;
  }

  .home-hero-section-arrow-left{
    left: 10px;
  }

  .home-hero-section-arrow-right{
    right: 10px;
  }
}

/* =========================
   MOBILE (Portrait)
========================= */
@media (max-width: 480px){
  .home-hero-section-slider{
    min-height: 40vh;
  }

  .home-hero-section-btn{
    font-size: 13px;
    padding: 10px 24px;
    margin-top: 15px;
  }

  .home-hero-section-title{
    font-size: 5.2vw;
  }

  .home-hero-section-arrow{
    display: none !important;
  }

  .home-hero-section-btn{
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
/* Section 1 css */
/* ================================
   HOME STRIP (Icon Top + Center Content)
================================== */

.home-section-1{
  margin-top: 40px; /* hero se gap */
}

/* Full width strip */
.home-strip{
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* Panel */
.home-strip-box{
  flex: 1;
  background: #0c3c5d;          /* blue */
  color: #ffffff;
  padding: 70px 55px;

  display: flex;
  flex-direction: column;       /* ✅ icon upar */
  align-items: center;          /* ✅ center */
  justify-content: center;      /* ✅ vertical center */
  text-align: center;           /* ✅ text center */
  gap: 22px;
}

/* Middle red panel */
.home-strip-box--red{
  background: #d40000;
}

/* Icon dotted circle */
.home-strip-icon{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px dotted rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
}

/* Icon */
.home-strip-icon i{
  font-size: 42px;
  color: #fcd900;               /* yellow */
}

/* Red panel icon */
.home-strip-box--red .home-strip-icon i{
  color: #ffffff;
}

/* Heading */
.home-strip-content h3{
  margin: 0;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.15;
  color: #fcd900;               /* yellow on blue */
}

.home-strip-box--red .home-strip-content h3{
  color: #ffffff;               /* white on red */
}

/* Paragraph */
.home-strip-content p{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 360px;             /* ✅ line breaks like screenshot */
  opacity: 0.95;
}

/* ================================
   Responsive
================================== */
@media (max-width: 992px){
  .home-section-1{ margin-top: 22px; }

  .home-strip{
    flex-direction: column;
  }

  .home-strip-box{
    padding: 50px 22px;
  }

  .home-strip-icon{
    width: 86px;
    height: 86px;
  }

  .home-strip-icon i{
    font-size: 38px;
  }

  .home-strip-content h3{
    font-size: 28px;
  }

  .home-strip-content p{
    font-size: 16px;
    max-width: 520px;
  }
}

@media (max-width: 480px){
  .home-strip-box{
    padding: 40px 16px;
    gap: 18px;
  }

  .home-strip-content h3{
    font-size: 24px;
  }

  .home-strip-icon{
    width: 74px;
    height: 74px;
  }

  .home-strip-icon i{
    font-size: 32px;
  }
}

/* section 2 css  */
.home-section-2 {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side - Text Content */
.text-content {
    flex: 1;
}

.section-subtitle {
  color: #e63946;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Right Side - Image Grid (Stacked Images) */
.image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr; /* Only one column */
    gap: 15px;
    height: auto;
}

/* Image Grid Items */
.grid-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%; /* Make width larger */
    height: 200px; /* Reduced height */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}

/* Laptop View (1024px and above) - Two images stacked vertically with increased width */
@media (min-width: 1024px) {
    .home-section-2 {
        padding: 40px 0;
    }

    .image-grid {
        grid-template-columns: 1fr; /* One column */
    }

    .grid-item {
        width: 100%; /* Ensure it takes full width */
        height: 202px; /* Slightly larger height for laptop view */
    }
}

/* Tablet View (768px to 1023px) - Stack images vertically */
@media (max-width: 1023px) and (min-width: 768px) {
    .home-section-2 {
        padding: 70px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .image-grid {
        width: 100%;
        max-width: 600px;
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto;
    }

    .grid-item {
        height: 250px;
    }
}

/* Mobile View (below 768px) - Stack images vertically */
@media (max-width: 768px) {
    .home-section-2 {
        padding: 10px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .image-grid {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .grid-item {
        height: 200px; /* Adjust for mobile */
    }

    .grid-item img {
        height: 100%; /* Ensure images fit properly */
    }
}

/* section 3css */
.home-section-3 {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fcd900; /* Yellow background */
    background-color: #e63946; /* Red text */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #555; /* Red text */
    margin-bottom: 20px;
}

.limited-offer-btn {
    background-color: #e63946; /* Red background */
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.limited-offer-btn:hover {
    background-color: #fcd900; /* Yellow on hover */
}

.property-info h3 {
    font-size: 2rem;
    color: #555; /* Yellow text */
    margin-bottom: 15px;
}

.property-info p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 13px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.property-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-icon {
    font-size: 2rem;
    color: #dc3545; 
    margin-bottom: 15px;
}

.property-card h4 {
    font-size: 1.5rem;
    color: #555; /* Yellow text */
    margin-bottom: 10px;
}

.property-card p {
    font-size: 1rem;
    color: #555;
}

.contact-section {
    margin-top: 40px;
}

.contact-info a {
    display: inline-block;
    font-size: 17px;
    color: #062a4b; /* Red text */
    text-decoration: none;
    margin-right: 20px;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Media Queries */

/* Laptop View (1024px and above) */
@media (min-width: 1024px) {
    .home-section-3 {
        padding: 10px 0;
    }

    .property-card {
        width: 30%;
    }
}

/* Tablet View (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .property-details {
        flex-direction: column;
        align-items: center;
    }

    .property-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .contact-info {
        text-align: center;
    }
}

/* Mobile View (below 768px) */
@media (max-width: 768px) {
    .home-section-3 {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .property-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info {
        text-align: center;
    }
}
/* Section 4 css */
.home-section-4 {
    padding: 30px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #e63946; /* Red text */
    background-color: transparent; /* No background */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 2rem;
    color: #555;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.service-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-description {
    opacity: 1;
    visibility: visible;
}

.service-card .service-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-card .service-description h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card .service-description p {
    font-size: 1rem;
}

/* Laptop View (1024px and above) - 3 cards per row */
@media (min-width: 1024px) {
    .service-card {
        width: calc(33.333% - 14px); /* 3 cards per row with gap */
        flex-shrink: 0;
    }
    
    .service-image {
        height: 350px;
    }
}

/* Tablet View (768px to 1023px) - 2 cards per row */
@media (max-width: 1023px) and (min-width: 768px) {
    .service-cards {
        justify-content: flex-start;
    }
    
    .service-card {
        width: calc(50% - 10px); /* 2 cards per row with gap */
    }
    
    .service-image {
        height: 300px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-title h3 {
        font-size: 1.8rem;
    }
}

/* Mobile View (below 768px) - 1 card per column */
@media (max-width: 767px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title h3 {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 250px;
    }
}

/* Small Mobile View (below 480px) */
@media (max-width: 480px) {
    .home-section-4 {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
        padding: 15px;
    }
    
    .section-title h3 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        width: 100%;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-card .service-description {
        padding: 15px;
        font-size: 1rem;
    }
    
    .service-card .service-description h4 {
        font-size: 1.3rem;
    }
    
    .service-card .service-description p {
        font-size: 0.9rem;
    }
}

/* section 5 css */
.home-section-5 {
    position: relative;
    height: 65vh;
    background-image: url('images/heroimg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
    content: '';
    position: absolute;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-overlay.active {
    display: flex;
}

#videoPlayer {
    max-width: 30%;
    max-height: 65%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    color: red;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .home-section-5 {
        height: 50vh;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::before {
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 2px;
    }

    #videoPlayer {
        max-width: 48%;
        max-height: 70%;
    }

    .close-btn {
        font-size: 30px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .home-section-5 {
        height: 40vh;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button::before {
        border-left: 10px solid white;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        margin-left: 2px;
    }

    #videoPlayer {
        max-width: 84%;
        max-height: 60%;
    }
}
/* section 6 css */

.home-faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.faq-heading {
  font-size: 28px;
  color: red;
  margin-bottom: 10px;
}

.faq-subheading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.home-faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-faq-left, .home-faq-right {
  width: 48%; /* Two-column layout for tablet and laptop */
  margin-bottom: 20px;
}

.home-faq-item {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.home-faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.home-plus {
  font-size: 18px;
  color: red;
}

.home-faq-item.active .home-faq-answer {
  display: block;
}

/* For Tablet and Laptop view (1024px and above) */
@media (min-width: 1024px) {
  .home-faq-left, .home-faq-right {
    width: 48%; /* Maintain two columns for tablets and laptops */
  }
}

/* For Mobile View (Below 768px) */
@media (max-width: 768px) {
  .home-faq-left, .home-faq-right {
    width: 100%; /* Stack in a single column for mobile */
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 22px;
  }
  .faq-subheading {
    font-size: 24px;
  }
}/* section 6 css */

/* section 6 css */

.home-faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.faq-heading {
  font-size: 28px;
  color: red;
  margin-bottom: 10px;
}

.faq-subheading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.home-faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-faq-left, .home-faq-right {
  width: 48%; /* Two-column layout for tablet and laptop */
  margin-bottom: 20px;
}

.home-faq-item {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 90%; /* Reduced width for the FAQ items */
  margin-left: auto; /* Center-aligning the items */
  margin-right: auto;
}

.home-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.home-faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 14px;
  margin-left: 0; /* Ensures the answer stays aligned with the question */
}

.home-plus {
  font-size: 18px;
  color: red;
}

.home-faq-item.active .home-faq-answer {
  display: block;
  margin-left: 0; /* Keeps the answer aligned with the question */
}

/* For Tablet and Laptop view (1024px and above) */
@media (min-width: 1024px) {
  .home-faq-left, .home-faq-right {
    width: 48%; /* Maintain two columns for tablets and laptops */
  }

  .home-faq-item {
    width: 90%; /* Maintain the reduced width */
  }
}

/* For Mobile View (Below 768px) */
@media (max-width: 768px) {
  .home-faq-left, .home-faq-right {
    width: 100%; /* Stack in a single column for mobile */
  }

  .home-faq-item {
    width: 90%; /* Reduced width for mobile view as well */
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 22px;
  }
  .faq-subheading {
    font-size: 24px;
  }
}

/* footer css */
   .rp-footer{
      background: radial-gradient(circle at top left, #071a33 0%, #051228 40%, #030c1b 100%);
      color: #cfd6e3;
      padding: 70px 0 0;
      overflow: hidden;
    }

    /* ✅ 1024px pe footer wide feel ho isliye container ko thoda stretch */
    .rp-footer .container{
      max-width: 1200px;
    }

    .rp-footer .rp-footer-title{
      color: #ffbf2a;
      font-weight: 800;
      font-size: 24px;
      margin-bottom: 12px;
    }

    .rp-footer .rp-footer-title::after{
      content:"";
      display:block;
      width:70px;
      height:3px;
      background:#ffbf2a;
      margin-top:10px;
      border-radius: 50px;
    }

    .rp-footer .rp-footer-text{
      color:#cfd6e3;
      line-height: 1.7;
      font-size: 15px;
      margin-bottom: 16px;
    }

    /* ✅ prevent overflow that breaks columns */
    .rp-footer .rp-footer-row > div{ min-width: 0; }

    /* Contact */
    .rp-contact-item{
      display:flex;
      gap:14px;
      margin-bottom: 18px;
      align-items:flex-start;
    }

    .rp-contact-icon{
      width:50px;
      height:50px;
      background:#ffbf2a;
      border-radius: 12px;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      color:#0b1730;
      font-size: 18px;
    }

    .rp-contact-label{
      color:#ffbf2a;
      font-weight: 800;
      font-size: 17px;
      margin-bottom: 6px;
    }

    .rp-contact-info{
      color:#e6ebf4;
      margin:0;
      line-height: 1.6;
      font-size: 15px;
      word-break: break-word;
    }

    .rp-footer a{ color:#e6ebf4; text-decoration:none; }
    .rp-footer a:hover{ color:#ffbf2a; }

    /* Links */
    .rp-footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }
    .rp-footer-links li{
      margin-bottom: 14px;
      display:flex;
      gap:10px;
      align-items:center;
      font-size: 15px;
    }
    .rp-footer-links li i{
      color:#ffbf2a;
      font-size: 13px;
      flex-shrink:0;
    }

    /* ✅ Newsletter ke neeche email specific styling */
    .rp-newsletter-email{
      margin-top: 20px;
      margin-bottom: 14px;
    }

    /* ✅ SOCIAL: Email ke neeche */
    .rp-social{
      display:flex;
      gap:10px;
      margin-top: 14px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 4px;
      -webkit-overflow-scrolling: touch;
    }
    .rp-social::-webkit-scrollbar{ height: 0px; }

    .rp-social a{
      width:42px;
      height:42px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:center;
      transition: .25s ease;
      color:#e6ebf4;
      flex: 0 0 auto;
    }
    .rp-social a:hover{
      background:#ffbf2a;
      border-color:#ffbf2a;
      color:#0b1730;
      transform: translateY(-2px);
    }

    /* ✅ Newsletter: prevent cutting */
    .rp-newsletter-wrap{
      margin-top: 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 999px;
      overflow:hidden;
      display:flex;
      align-items:center;
      width:100%;
      max-width: 320px;
      margin-bottom: 0;
    }
    .rp-newsletter-wrap input{
      border:0;
      outline:none;
      background: transparent;
      padding: 14px 16px;
      color:#fff;
      flex:1;
      width:100%;
      min-width:0;
      font-size: 14px;
    }
    .rp-newsletter-wrap button{
      border:0;
      outline:none;
      background:#ffbf2a;
      color:#071a33;
      font-weight: 800;
      padding: 14px 22px;
      white-space: nowrap;
      font-size: 14px;
    }

    /* Divider + Bottom */
    .rp-footer-divider{
      margin-top: 34px;
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .rp-footer-bottom{
      padding: 18px 0;
      text-align:center;
      color:#e6ebf4;
      font-size: 14px;
    }
    .rp-footer-bottom b{ color:#ffbf2a; }

    /* ✅ spacing control for 1024 laptop */
    @media (max-width: 1199px){
      .rp-footer{ padding-top: 60px; }
    }

    /* Tablet: 2 columns */
    @media (max-width: 991px){
      .rp-newsletter-wrap{ max-width: 100%; }
      .rp-social{ flex-wrap: wrap; overflow: visible; }
    }

    /* ✅ Mobile: Center everything */
    @media (max-width: 575px){

      /* overall text center */
      .rp-footer{
        text-align: center;
      }

      /* title underline center */
      .rp-footer .rp-footer-title::after{
        margin-left: auto;
        margin-right: auto;
      }

      /* contact items center */
      .rp-contact-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
      }

      .rp-contact-icon{
        margin: 0 auto;
      }

      /* links list center */
      .rp-footer-links li{
        justify-content: center;
      }

      /* social icons center */
      .rp-social{
        justify-content: center;
      }

      /* newsletter center */
      .rp-newsletter-wrap{
        margin-left: auto;
        margin-right: auto;
      }
    }

/* section 7  */
  .home-client-testimonials {
      text-align: center;
      padding: 40px 20px;
      background-color: #f9f9f9;
      overflow: hidden;
    }
    .home-client-testimonials h2 {
      font-size: 28px;
      color: red;
      margin-bottom: 30px;
    }
    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }
    .carousel-track {
      display: flex;
      gap: 30px;
      animation: scrollRight 20s linear infinite;
      width: max-content;
    }
    .carousel-track:hover {
      animation-play-state: paused;
    }
    @keyframes scrollRight {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .client-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      padding: 10px 12px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-width: 300px;
      max-width: 300px;
      /* height: 400px; */
      flex-shrink: 0;
    }
    .client-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 3px solid #f0f0f0;
    }
    .client-info {
      display: flex;
      flex-direction: column;
      /* justify-content: space-between; */
      flex: 1;
    }
    .client-info h4 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
    }
    .client-name {
      font-size: 16px;
      font-weight: bold;
      color: #555;
      margin: 10px 0;
    }
    .client-feedback {
      font-size: 14px;
      color: #555;
      font-style: normal;
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .client-card {
        min-width: 250px;
        max-width: 250px;
        height: auto;
        min-height: 350px;
      }
    }

    /* floating icon css */
    /* Floating WhatsApp + Call */
.float-contact-wrap{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Perfect circular buttons */
.float-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

/* Icon size */
.float-btn i{
  font-size: 26px;
}

/* WhatsApp button */
.float-whatsapp{
  background-color: #25D366;
}

/* Call button */
.float-call{
  background-color: #0b5ed7;
}

/* Hover animation */
.float-btn:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Mobile responsive */
@media(max-width: 480px){
  .float-btn{
    width: 52px;
    height: 52px;
  }
  .float-btn i{
    font-size: 24px;
  }
}
