/* =========================
   GLOBAL / BODY CSS
   ========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}


body{
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #8C0A0A;
  overflow-x: hidden;
  line-height: 1.4;
}

/* Optional: container smoothness */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: inherit;
}



/* =========================
   TOPBAR
   ========================= */
/* =========================
   TOPBAR STYLES
   ========================= */
.topbar {
  background: #eaf4ff;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
  margin: 0; /* ✅ Added */
}

.topbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* LEFT */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.topbar-ico {
  color: #8b1b1b;
  font-size: 16px;
}

.topbar-phones {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.2;
}

.topbar-phone-link {
  color: #a04500;
  text-decoration: none;
  font-weight: 500;
}

.topbar-phone-link:hover {
  text-decoration: underline;
}

/* CENTER */
.topbar-center {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  justify-content: center;
  text-align: left;
  min-width: 320px;
}

.topbar-center .topbar-ico {
  flex: 0 0 18px;
  margin-top: 2px;
}

.topbar-address {
  margin: 0;
  font-size: 14px;
  color: #7a2a2a;
  line-height: 1.25;
  max-width: 520px;
}

/* RIGHT */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 360px;
  justify-content: flex-end;
}

/* Search Box */
.topbar-searchbar {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 38px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.topbar-search-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 46px 0 14px;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.topbar-search-input::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}

.topbar-search-iconbtn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: 0.2s ease;
}

.topbar-search-iconbtn i {
  color: #b1b1b1;
  font-size: 16px;
}

.topbar-search-iconbtn:hover {
  background: #f3f3f3;
}

.topbar-searchbar:focus-within {
  border-color: #bdbdbd;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* SOCIAL */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social-link {
  color: #7a2a2a;
  text-decoration: none;
  font-size: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.topbar-social-link:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

/* =========================
   TOPBAR RESPONSIVE
   ========================= */

/* Tablet + Mobile: <= 992px */
@media (max-width: 992px){
  .topbar-container{ 
    justify-content: center;
    padding: 9px 14px; /* ✅ Reduced */
  }

  .topbar-left,
  .topbar-center,
  .topbar-social{
    display: none !important;
  }

  .topbar-right{
    width: 100%;
    min-width: unset;
    justify-content: center;
  }

  .topbar-searchbar{
    width: 100%;
    max-width: 600px;
  }
}

/* TAB <= 768px */
@media (max-width: 768px){
  .topbar-container{
    padding: 8px 14px; /* ✅ Reduced */
  }
  
  .topbar-searchbar{
    height: 38px; /* ✅ Consistent height */
  }
}

/* Extra small mobile */
@media (max-width: 520px){
  .topbar{
    border-bottom: none; /* ✅ Remove border */
  }
  
  .topbar-container{ 
    padding: 7px 12px; /* ✅ Minimal padding */
  }

  .topbar-searchbar{
    height: 36px; /* ✅ Smaller for mobile */
    border-radius: 10px;
  }

  .topbar-search-input{
    font-size: 13px;
    padding: 0 44px 0 12px;
  }
}


/* =========================
   HEADER STYLES
   ========================= */

.header-main{
  position: fixed;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 0; /* ✅ Added */
}

.header-nav{
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  column-gap: 40px;
}

/* LOGO */
.header-brand{
  justify-self: center;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo{
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* MENUS */
.header-menu{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.header-menu-left{ justify-self: start; }
.header-menu-right{ justify-self: end; }

/* LINKS */
.header-link{
  color: #6b3f1d;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.header-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.header-active{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

.header-menu-icon{
  font-size: 15px;
  opacity: 0.95;
}

/* HAMBURGER */
.header-toggle{
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  width: 46px;
  height: 40px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.header-toggle:hover{ background: rgba(255,255,255,0.10); }

.header-toggle-bar{
  display: block;
  width: 22px;
  height: 2px;
  background: #8C0A0A;
  margin: 5px auto;
  border-radius: 2px;
}

/* MOBILE MENU */
.header-mobile-menu{
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background:#8C0A0A;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px;
  z-index: 999;
}

.header-mobile-menu.header-open{ display: block; }

.header-mobile-link{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 8px;
  transition: 0.2s ease;
  font-weight: 600;
}

.header-mobile-link:hover{ background: rgba(255,255,255,0.10); }

/* Mobile menu active */
.header-mobile-link.header-active{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  position: relative;
}

.header-mobile-link.header-active::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 8px;
  background: #ffcc00;
}


/* =========================
   ✅ FIXED SPACING (NO GAP)
   ========================= */

/* Default (Desktop) */
:root{
  --topbar-h: 60px;
  --header-h: 65px;
}

/* Header always right below topbar */
.header-main{
  top: calc(var(--topbar-h) - 2px);
}

/* Body offset for both fixed bars */
body{
  padding-top: calc(var(--topbar-h) + var(--header-h));
  margin: 0; /* ✅ Added */
}


/* =========================
   HEADER RESPONSIVE
   ========================= */

/* Laptop <= 1024px */
@media (max-width: 1024px){
  .header-link{ font-size: 16px; padding: 9px 11px; }
  .header-menu{ gap: 16px; }
  .header-logo{ height: 40px; }
  .header-nav{ padding: 12px 22px; column-gap: 28px; }
}

/* Tablet + Mobile: <= 992px */
@media (max-width: 992px){
  /* ✅ spacing variables for tab/mobile */
  :root{
    --topbar-h: 56px; /* ✅ Reduced from 58px */
    --header-h: 61px; /* ✅ Reduced from 63px */
  }
  
  /* ✅ Header position fix - NO GAP */
  .header-main{
    top: var(--topbar-h);
    border-top: none;
  }
}

/* TAB <= 768px */
@media (max-width: 768px){
  .header-nav{
    grid-template-columns: auto 1fr auto;
    padding: 9px 14px; /* ✅ Reduced from 10px */
    column-gap: 10px;
  }

  .header-menu-left,
  .header-menu-right{
    display: none;
  }

  .header-toggle{
    display: block;
    position: static;
    transform: none;
    justify-self: end;
  }

  .header-brand{
    justify-self: start;
  }

  .header-logo{
    height: 36px; /* ✅ Reduced from 38px */
  }
  
  /* ✅ Adjust root variables */
  :root{
    --topbar-h: 54px; /* ✅ Reduced from 56px */
    --header-h: 56px; /* ✅ Reduced from 58px */
  }
}

/* Extra small mobile <= 520px */
@media (max-width: 520px){
  :root{
    --topbar-h: 50px; /* ✅ Further reduced */
    --header-h: 52px; /* ✅ Further reduced */
  }
  
  /* ✅ Perfect alignment - NO GAP */
  .header-main{
    top: var(--topbar-h);
    border-top: none;
  }

  .header-nav{
    padding: 7px 12px; /* ✅ Minimal padding */
    column-gap: 8px;
  }

  .header-logo{
    height: 34px; /* ✅ Smaller logo */
  }
  
  .header-toggle{
    width: 42px; /* ✅ Smaller hamburger */
    height: 36px;
  }
  
  .header-toggle-bar{
    width: 20px;
  }
}

/* Fixed topbar + header ke neeche perfect scroll */
#page-start{
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 6px);
}
/* =========================
   HOME SECTION 1 (COMPLETE CSS)
   Big Image + Right Vertical Thumbs
   Responsive: 1024 / 768 / 767
   ========================= */
.home-section-1{
  width: 100%;
  padding: 70px 0;
 background-color: #FDE4AC;
}

.home-section-1-container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.home-section-1-content{
  padding-right: 10px;
}

/* ✅ Gradient text */
.home-section-1-title{
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  background:#0A1D4D;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 18px 0;
  letter-spacing: -0.5px;
}

.home-section-1-subtitle{
  font-size: 20px;
  line-height: 1.6;
  color:  #2E3A59;
  margin: 0 0 28px 0;
  max-width: 560px;
}

.home-section-1-btns{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ✅ ONE common button style */
.home-section-1-btn,
.download-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: #8C0A0A;
  box-shadow: 0 12px 30px rgba(11, 60, 93, 0.3);
  transition: 0.25s ease;
}

.home-section-1-btn:hover,
.download-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11, 60, 93, 0.4);
  filter: brightness(1.1);
}

.download-btn{
  letter-spacing: 1px;
}

.download-btn .arrow{
  margin-left: 10px;
}

/* =========================
   RIGHT MEDIA
========================= */
.home-section-1-media{
  display: flex;
  flex-direction: column;
}

.home-section-1-media-grid{
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  align-items: start;
}

/* ✅ common card style */
.home-section-1-big-wrap,
.home-section-1-thumb{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
}

/* big image */
.home-section-1-big-img{
  width: 100%;
  height: 345px;
  object-fit: cover;
  display: block;
}

/* thumbs column */
.home-section-1-thumb-col{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* thumb overrides */
.home-section-1-thumb{
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.home-section-1-thumb img{
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.home-section-1-thumb:hover{
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE (<=1024px) ✅ TAB FIX (CENTER)
========================= */
@media (max-width: 1024px){
  .home-section-1{
    padding: 55px 0;
  }

  .home-section-1-container{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .home-section-1-title{
    font-size: 34px;
  }

  .home-section-1-subtitle{
    font-size: 18px;
  }

  .home-section-1-media-grid{
    grid-template-columns: 1fr 190px;
    gap: 16px;
  }

  .home-section-1-big-img{
    height: 320px;
  }

  .home-section-1-thumb img{
    height: 96px;
  }

  /* ✅ TAB: Text + Buttons Center */
  .home-section-1-content{
    text-align: center;
    padding-right: 0;
  }

  .home-section-1-subtitle{
    margin-left: auto;
    margin-right: auto;
  }

  .home-section-1-btns{
    justify-content: center;
    width: 100%;
  }
}

/* =========================
   RESPONSIVE (<=768px) ✅ MOBILE/TAB STACK + CENTER
========================= */
@media (max-width: 768px){
  .home-section-1-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-section-1-content{
    text-align: center;
    padding-right: 0;
  }

  .home-section-1-title{
    font-size: 28px;
  }

  .home-section-1-subtitle{
    font-size: 17px;
    margin: 0 auto 28px;
  }

  .home-section-1-btns{
    justify-content: center;
    width: 100%;
  }

  .home-section-1-media-grid{
    grid-template-columns: 1fr 170px;
  }

  .home-section-1-big-img{
    height: 280px;
  }

  .home-section-1-thumb img{
    height: 85px;
  }
}

/* =========================
   RESPONSIVE (<=480px) ✅ SMALL MOBILE BUTTONS CENTER + FULL WIDTH
========================= */
@media (max-width: 480px){
  .home-section-1{
    padding: 40px 0;
  }

  .home-section-1-title{
    font-size: 20px;
  }

  .home-section-1-subtitle{
    font-size: 12px;
  }

  .home-section-1-media-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-section-1-thumb-col{
    flex-direction: row;
    gap: 15px;
  }

  .home-section-1-thumb{
    flex: 1;
  }

  .home-section-1-big-img{
    height: 240px;
  }

  .home-section-1-thumb img{
    height: 90px;
  }

  /* ✅ Small mobile: Buttons neat center */
  .home-section-1-btn,
  .download-btn{
    width: 100%;
    max-width: 320px;
  }
}


/* =========================
   HOME SECTION 2 (Video Hover)
   ========================= */
/* =========================
   HOME SECTION 2 (Video Hover)
   Height: 70vh | Min-height: 300px
   ========================= */
.home-section-2{
  width: 100%;
  background: #0f172a;
}

.home-section-2-media{
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 300px;
  overflow: hidden;
}

/* video full cover */
.home-section-2-video{
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: brightness(0.62);
}

/* overlay gradient */
.home-section-2-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* overlay content */
.home-section-2-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
}

/* ✅ TITLE: Gradient text + hover white */
.home-section-2-title{
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px 0;
  
  /* ✅ Gradient text effect */
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  text-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: all 0.35s ease;
  position: relative;
}

/* ✅ Hover effect - white color */
.home-section-2-title:hover{
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.02);
}

.home-section-2-text{
  max-width: 980px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 10px 26px rgba(0,0,0,0.30);
}

/* =========================
   RESPONSIVE (<=1024px)
========================= */
@media (max-width: 1024px){
  .home-section-2-title{
    font-size: 52px;
  }

  .home-section-2-text{
    font-size: 17px;
    max-width: 850px;
  }
}

/* =========================
   RESPONSIVE (<=768px)
========================= */
@media (max-width: 768px){
  .home-section-2-title{
    font-size: 44px;
  }

  .home-section-2-text{
    font-size: 16px;
    max-width: 680px;
  }
}

/* =========================
   RESPONSIVE (<=767px)
========================= */
@media (max-width: 767px){
  .home-section-2-overlay{
    padding: 0 14px;
  }

  .home-section-2-title{
    font-size: 34px;
    margin-bottom: 10px;
  }

  .home-section-2-text{
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 92%;
  }
}
/* section 3 */
/* Section Styles */
/* =========================
   SECTION 3 - SERVICES (NO BG)
========================= */
.section3-services {
  padding: 30px 20px;
  /* background  */
  background-color: #FDE4AC;
}

.section3-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ✅ UPDATED: Our Services title with gradient */
.section3-title {
  font-size: 36px;
  background: #8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  font-weight: 700;
}

/* =========================
   Carousel Wrapper
========================= */
.section3-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section3-carousel {
  width: 100%;
  overflow: hidden; /* carousel effect for tab/laptop */
}

/* Track */
.section3-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 0.45s ease;
}

/* Nav Buttons */
.section3-nav {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  background: rgba(11, 60, 93, 0.1);
  color: #0b3c5d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.section3-nav:hover {
  transform: scale(1.06);
  background: linear-gradient(90deg, #8C0A0A 0%, #1565c0 50%, #8C0A0A 100%);
  color: #ffffff;
}

/* =========================
   Cards
========================= */
.section3-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.section3-card:hover {
  transform: translateY(-6px);
}

.section3-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.section3-info {
  padding: 20px;
}

/* ✅ UPDATED: Card heading black */
.section3-info h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}

.section3-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* =========================================
   ✅ Laptop/Desktop (>=1024px)
========================================= */
@media screen and (min-width: 1024px) {
  .section3-card {
    flex: 0 0 calc((100% - 36px) / 3); /* 3 visible */
  }
}

/* =========================================
   ✅ Tab (768px to 1023px)
========================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section3-title {
    font-size: 30px;
  }

  .section3-card {
    flex: 0 0 calc((100% - 18px) / 2); /* 2 visible */
  }

  .section3-info h3 {
    font-size: 20px;
  }

  .section3-info p {
    font-size: 13px;
  }
}

/* =========================================
   ✅ Mobile (<=767px)
========================================= */
@media screen and (max-width: 767px) {
  .section3-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* Hide nav buttons on mobile */
  .section3-nav {
    display: none !important;
  }

  /* Turn off carousel clip so normal list feel */
  .section3-carousel {
    overflow: visible;
  }

  /* Make track column and stop transforms */
  .section3-track {
    flex-direction: column;
    transform: none !important;
    transition: none !important;
    gap: 18px;
  }

  /* Full width card */
  .section3-card {
    width: 100%;
    flex: none;
  }

  /* IMPORTANT: hide clones => only 3 cards show */
  .section3-clone {
    display: none !important;
  }

  .section3-card img {
    height: 190px;
  }

  .section3-info {
    padding: 18px;
  }

  .section3-info h3 {
    font-size: 18px;
  }

  .section3-info p {
    font-size: 12px;
  }
}

/* section 4 */
/* Section Styles */
/* =========================
   SECTION 4 (VIDEO + FORM)
========================= */
.home-section-4 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
  min-height: 100vh;
  overflow: hidden;
}

.home-section-4 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  gap: 50px;
}

/* Left side text */
.left-content {
  flex: 1;
  z-index: 2;
}

.left-content h2 {
  font-size: 48px;
  font-weight: bold;
  color: #8C0A0A;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.left-content p {
  font-size: 18px;
  color: white;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Right side form container */
.content-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

/* Form Container - Simple solid background */
.form-container {
  background: rgba(230, 230, 230, 0.95); /* ✅ Light gray solid background */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
}

/* Form description text */
.form-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.5;
  text-shadow: none;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input fields - White background */
.form-container input,
.form-container textarea {
  padding: 15px;
  background: #ffffff; /* ✅ Pure white background */
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
  color: #E88B8B; /* ✅ Light coral/pink placeholder */
  opacity: 1;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #8C0A0A;
  box-shadow: 0 0 10px rgba(140, 10, 10, 0.2);
}

.form-container textarea {
  height: 120px;
  resize: vertical;
  border: 1px solid #8C0A0A; /* ✅ Red border for textarea */
}

/* Checkbox label */
.form-container label {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-container input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

/* Submit button */
.submit-btn {
  background: #8C0A0A;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #A51212;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 10, 10, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media screen and (max-width: 1024px) {
  .home-section-4 {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }

  .home-section-4 .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .left-content {
    text-align: center;
  }

  .left-content h2 {
    font-size: 36px;
  }

  .content-container {
    justify-content: center;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .form-container {
    max-width: 80%;
    margin-bottom: 0 !important;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .home-section-4 {
    padding: 30px 10px;
    padding-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .left-content p {
    font-size: 16px;
  }

  .form-container {
    max-width: 100%;
    padding: 30px 20px;
    margin-bottom: 0 !important;
  }

  .form-container p {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}
/* =========================
   SECTION 5 BASE
========================= */
/* =========================
   SECTION CTA WRAPPER
========================= */
.home-section5-cta{
  padding: 40px 20px;
  background-color: #FDE4AC;;
}

/* Main container */
.home-section5-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 26px;
  overflow: hidden;
  background: #8C0A0A; /* ✅ same button wala color */
  gap: 0;
}

/* =========================
   LEFT CONTENT (VIDEO BG)
========================= */
.home-section5-content{
  position: relative;
  overflow: hidden;
  background: #8C0A0A; /* ✅ ensure no color leak */
}

.home-section5-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ❌ Removed dark overlay (color change issue fix) */
/*
.home-section5-content::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
*/

/* =========================
   TEXT OVERLAY
========================= */
.home-section5-overlay{
  position: relative;
  z-index: 2;
  padding: 50px 50px;
  background: #8C0A0A; /* ✅ same button wala color */
  color: #ffffff;     /* ✅ all text white */
}

/* Heading */
.home-section5-overlay h2{
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Paragraph */
.home-section5-overlay p{
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 26px;
  color: #ffffff;
}

/* =========================
   BUTTON
========================= */
.home-section5-btn{
  display: inline-block;
  padding: 14px 28px;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.3s ease;
}

.home-section5-btn:hover{
  transform: translateY(-2px);
}

/* =========================
   RIGHT IMAGE
========================= */
.home-section5-image{
  margin: 0;
  padding: 0;
  background: #8C0A0A; /* ✅ safety */
}

.home-section5-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

/* Laptop <=1024px */
@media (max-width: 1024px){
  .home-section5-overlay{
    padding: 40px;
  }
  .home-section5-overlay h2{
    font-size: 32px;
  }
}

/* Tablet <=768px */
@media (max-width: 768px){
  .home-section5-wrapper{
    grid-template-columns: 1fr;
  }

  .home-section5-image{
    height: 320px;
  }

  .home-section5-overlay{
    padding: 36px 30px;
  }

  .home-section5-overlay h2{
    font-size: 28px;
  }
}

/* Mobile <=767px */
@media (max-width: 767px){
  .home-section5-cta{
    padding: 40px 14px;
  }

  .home-section5-overlay{
    padding: 28px 22px;
  }

  .home-section5-overlay h2{
    font-size: 24px;
  }

  .home-section5-overlay p{
    font-size: 14px;
  }
}


/* section 6  */


/* --- Main Section Container --- */
.home-section6-new {
  padding: 40px 20px;
  background: #FDE4AC;;
}

.home-section6-newWrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Main Heading with Gradient --- */
.home-section6-newTitle {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 120px; /* ✅ overlap avoid (more bottom gap) */
  letter-spacing: 1px;
  background:#8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  position: relative;
  z-index: 10; /* ✅ always above */
}

/* --- Stage --- */
.home-section6-newStage {
  position: relative;
  min-height: 560px;     /* ✅ thoda height extra */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-top: 45px;      /* ✅ cards/circle niche (heading se door) */
}

/* --- Central Circle Image --- */
.home-section6-newImage {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border: 10px solid #fff;
  background: #eee;
  z-index: 1;
}

.home-section6-newImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Cards --- */
.home-section6-newCard {
  position: absolute;
  width: 250px;
  background: #8C0A0A;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
  padding: 18px 16px;
  text-align: center;
  border-radius: 14px;
  transition: 0.3s ease;
  z-index: 2;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translate(var(--dx), var(--dy));
}

.home-section6-newCard:hover {
  transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) translateY(-6px);
}

/* Icon inside card */
.home-section6-newIcon {
  width: 54px;
  height: 54px;
  background: rgb(255, 255, 255);;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section6-newIcon i {
  font-size: 20px;
  color: #333;
}

/* Text inside card */
.home-section6-newNum {
  font-size: 28px;
  font-weight: 900;
  color: rgb(255, 255, 255);;
  line-height: 1.1;
}

.home-section6-newText {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgb(255, 255, 255);;
  line-height: 1.2;
}

/* =================================================
   ✅ EQUAL DISTANCE (same radius) - DESKTOP DEFAULT
   ================================================= */
.home-section6-cardTop  { --dx: 0px;    --dy: -280px; }
.home-section6-cardLeft { --dx: -320px; --dy: 140px; }
.home-section6-cardRight{ --dx: 320px;  --dy: 140px; }

/* =========================
   Laptop <= 1024px
   ========================= */
@media (max-width: 1024px) {
  .home-section6-newTitle {
    font-size: 30px;
    margin: 0 0 105px; /* ✅ overlap avoid */
  }

  .home-section6-newStage {
    min-height: 540px;
    margin-top: 40px;  /* ✅ push down */
  }

  .home-section6-newImage {
    width: 320px;
    height: 320px;
  }

  .home-section6-newCard {
    width: 230px;
  }

  /* ✅ equal radius points (scaled) */
  .home-section6-cardTop  { --dx: 0px;    --dy: -250px; }
  .home-section6-cardLeft { --dx: -285px; --dy: 125px; }
  .home-section6-cardRight{ --dx: 285px;  --dy: 125px; }
}

/* =========================
   Tablet <= 768px
   ========================= */
@media (max-width: 768px) {
  .home-section6-newTitle {
    font-size: 26px;
    margin: 0 0 90px; /* ✅ overlap avoid */
  }

  .home-section6-newStage {
    min-height: 520px;
    margin-top: 30px; /* ✅ push down */
  }

  .home-section6-newImage {
    width: 300px;
    height: 300px;
    border-width: 8px;
  }

  .home-section6-newCard {
    width: 220px;
    padding: 16px 14px;
  }

  /* ✅ equal radius points (scaled) */
  .home-section6-cardTop  { --dx: 0px;    --dy: -235px; }
  .home-section6-cardLeft { --dx: -265px; --dy: 115px; }
  .home-section6-cardRight{ --dx: 265px;  --dy: 115px; }
}

/* =========================
   Mobile <= 767px
   ========================= */
@media (max-width: 767px) {
  .home-section6-new {
    padding: 40px 14px;
  }

  .home-section6-newTitle {
    font-size: 24px;
    margin: 0 0 30px;
  }

  .home-section6-newStage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px; /* ✅ equal spacing */
    margin-top: 0;
  }

  .home-section6-newCard {
    position: static;
    width: 95%;
    max-width: 360px;
    transform: none !important;
  }

  .home-section6-newImage {
    position: static;
    width: 280px;
    height: 280px;
    border-width: 8px;
    transform: none;
  }

  .home-section6-cardTop { order: 1; }
  .home-section6-newImage { order: 2; }
  .home-section6-cardLeft { order: 3; }
  .home-section6-cardRight { order: 4; }
}

/* =========================
   FOOTER BASE
========================= */
.footer-main{
  /* ✅ blue gradient background */
  background: #8C0A0A;
   
  color: #fff;
  padding: 60px 18px 0;
}

.footer-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* laptop 4 col */
  gap: 38px;
  padding-bottom: 35px;
}

.footer-col{ min-width: 0; }

/* =========================
   COMMON
========================= */
.footer-title{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff; /* ✅ white */
}

.footer-text{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92); /* ✅ white-ish */
  margin: 0;
}

/* =========================
   LOGO
========================= */
.footer-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo img{
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;          /* optional: logo visibility */
  padding: 6px;
  border-radius: 10px;
}

/* =========================
   QUICK LINKS
========================= */
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li{ margin: 10px 0; }

.footer-list a{
  color: rgba(255,255,255,0.92); /* ✅ white */
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-list a:hover{
  color: #ffe6b0; /* hover golden */
  padding-left: 6px;
}

/* =========================
   CONTACT INFO
========================= */
.footer-info{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.footer-info-item{
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 10px;
}

.footer-info-label{
  font-weight: 800;
  color: #fff; /* ✅ white */
  margin-right: 6px;
  font-size: 14px;
}

.footer-info-value{
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

/* social */
.footer-social{
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* ✅ white icons */
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.18);
}

.footer-social a:hover{
  transform: translateY(-3px);
  background: rgba(0,0,0,0.35);
  color: #ffe6b0;
}

/* =========================
   NEWSLETTER (overflow fixed)
========================= */
.footer-form{
  display: grid;                 /* ✅ overflow fix */
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
  width: 100%;
}

.footer-form input{
  width: 100%;
  min-width: 0;                  /* ✅ MOST IMPORTANT */
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.18);
  color: #fff;
  outline: none;
}

.footer-form input::placeholder{
  color: rgba(255,255,255,0.78);
}

.footer-form button{
  white-space: nowrap;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #ffffff; /* golden */
  color: #0b3c5d;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.footer-form button:hover{
  transform: translateY(-2px);
  background: #fff2cc;
}

.footer-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

/* small laptop stacking */
@media (max-width: 1100px){
  .footer-form{
    grid-template-columns: 1fr;
  }
  .footer-form button{
    width: 100%;
  }
}

/* =========================
   BOTTOM
========================= */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.22);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p{
  margin: 5px 0;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

/* ✅ Developer Credit Styling */
.footer-developer{
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

.footer-dev-link{
  color: #FFD700; /* Gold color */
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-dev-link:hover{
  color: #FFA500; /* Lighter gold on hover */
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-1px);
}

/* Optional: Underline animation */
.footer-dev-link::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.3s ease;
}

.footer-dev-link:hover::after{
  width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet: 2 columns */
@media (max-width: 768px){
  .footer-wrapper{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .footer-title{ font-size: 20px; }
}

/* Mobile: 1 column */
@media (max-width: 767px){
  .footer-main{
    padding: 45px 14px 0;
  }

  .footer-wrapper{
    grid-template-columns: 1fr;
    gap: 22px;
  }
    .footer-col{
    text-align: center;
  }

  .footer-logo{
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
   .footer-logo img{
    margin: 0 auto;
    display: block;
  }
    .footer-social{
    justify-content: center;
  }


  .footer-form{
    grid-template-columns: 1fr;
  }

  .footer-form button{
    width: 100%;
  }

  .footer-bottom p{
    font-size: 12px;
  }

  .footer-developer{
    font-size: 12px;
  }
}

.footer-phone-link{
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-phone-link:hover{
  text-decoration: underline;
}

/* floating section css */
/* ✅ Floating Icons Container */
.floating-contact-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Individual Icon */
.floating-icon {
  width: 70px; /* Increased size of the icon */
  height: 70px; /* Increased size of the icon */
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px; /* Increased icon size */
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 2s ease-in-out infinite;
  cursor: pointer;
}

/* WhatsApp Icon */
.floating-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-icon.whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Call Icon */
.floating-icon.call {
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
}

.floating-icon.call:hover {
  background: linear-gradient(90deg, #1565c0 0%, #0b3c5d 50%, #1565c0 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.4);
}

/* Floating Animation */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Ripple Effect on Click */
.floating-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Tooltip (Optional) */
.floating-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: Arial, sans-serif;
}

.floating-icon:hover::after {
  opacity: 1;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .floating-contact-icons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-icon {
    width: 60px; /* Slightly smaller size on mobile */
    height: 60px; /* Slightly smaller size on mobile */
    font-size: 28px; /* Slightly smaller icon size */
  }

  .floating-icon::after {
    display: none; /* Mobile pe tooltip hide */
  }
}

@media (max-width: 480px) {
  .floating-contact-icons {
    bottom: 15px;
    right: 15px;
  }

  .floating-icon {
    width: 55px; /* Even smaller for very small screens */
    height: 55px; /* Even smaller for very small screens */
    font-size: 24px; /* Even smaller icon size */
  }
}
