@import url('https://fonts.googleapis.com/css2?family=Alberta+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* RESET + FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
.videos-header h2 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Albert Sans', sans-serif;
}


/* HEADER */
header{
  background: #f8f7f3;
  border-bottom: 1px solid #eee;
}

.container{
  max-width: 1200px;
  margin: auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo img{
  height: 45px;
  object-fit: contain;
}

/* NAV */
nav{
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-slider {
 
  width: 100%;
  height: 66vh;
  overflow: hidden;

}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.content {
  position: absolute;
  left: 8%;
  top: 60%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.tag {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #eee;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #c40000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

nav {
  display: flex !important;
  align-items: center !important;
}

.menu-left {
  display: flex !important;
  list-style: none !important;
  gap: 30px !important;
}

.menu-left li {
  position: relative !important;
}

.menu-left a {
  text-decoration: none !important;
  color: #111 !important;
  font-weight: 500 !important;
}

/* ===== DESKTOP MEGA DROPDOWN ===== */
.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 420px !important;
  background: #fff !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
  padding: 25px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(15px) !important;
  transition: 0.3s ease !important;
  z-index: 99 !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.dropdown-menu strong {
  display: block !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
}

.dropdown-menu ul {
  list-style: none !important;
  padding: 0 !important;
}

.dropdown-menu ul li {
  margin-bottom: 6px !important;
}

.dropdown-menu ul li a {
  font-size: 14px !important;
  color: #444 !important;
}

.dropdown-menu ul li a:hover {
  color: #c40000 !important;
}

/* ===== MOBILE MENU ===== */
@media(max-width: 768px){

  nav {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #fff !important;
    flex-direction: column !important;
    padding: 20px !important;
    transition: 0.3s ease !important;
    z-index: 999 !important;
  }

  nav.active {
    left: 0 !important;
  }

  .menu-left {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .menu-left li {
    border-bottom: 1px solid #eee !important;
  }

  .menu-left a {
    display: block !important;
    padding: 14px 0 !important;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    box-shadow: none !important;
    padding: 10px 0 15px !important;
    display: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-menu.show {
    display: grid !important;
  }

  .dropdown-menu strong {
    margin-top: 10px !important;
  }
}

/* MENU CENTER */
.menu-left{
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0 auto;

}

.menu-left li a{
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}


.contact-btn{
  border: 2px solid #000;
  color: #000;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover{
  background: #000;
  color: #fff;
}

/* DROPDOWN */
.dropdown{
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-46%);
  background: #fff;
  display: none;
  gap: 40px;
  padding: 19px;
  min-width: 345px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
}
/* DESKTOP DROPDOWN */
.dropdown:hover .dropdown-menu{
  display: flex;
}

.dropdown:hover .dropdown-menu{
  display: flex;
}

.dropdown-menu .col h4{
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
}

.dropdown-menu ul{
  list-style: none;
}

.dropdown-menu ul li{
  margin-bottom: 8px;
}

.dropdown-menu ul li a{
  text-decoration: none;
  font-size: 14px;
  color: #444;
  transition: 0.3s;
}

.dropdown-menu ul li a:hover{
  color: #ff0000;
  padding-left: 5px;
}

/* MOBILE MENU */
.menu-toggle{
  display: none;
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 768px){

  /* nav full screen menu */
  nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.active{
    right: 0;
  }

  /* logo on top */
  .mobile-logo{
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .mobile-logo img{
    max-width: 140px;
  }

  /* main menu items */
  .menu-left{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .menu-left li a{
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  /* dropdown menu inside menu */
  .dropdown-menu{
    position: static;          /* make it part of menu flow */
    display: none;             /* hide initially */
    width: 100%;               /* full width */
    padding-left: 15px;        /* indent for sub items */
    box-sizing: border-box;
  }

  .dropdown-menu.show{
    display: block;            /* show when clicked */
  }

  .dropdown-menu .col{
    padding: 10px 0;
  }

  .dropdown-menu h4{
    margin-bottom: 8px;
  }

  .dropdown-menu ul li a{
    padding: 6px 0;
    font-size: 14px;
  }

  /* contact button */
  .menu-right{
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }

  .contact-btn{
    display: inline-block;
  }
}

/* BASIC HEADER */
header{
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 10;
}

.logo img{
  max-width: 140px;
}

/* MENU TOGGLE - HAMBURGER */
.menu-toggle{
  display: none;
}

/* NAV STYLING DESKTOP */
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MOBILE MENU */
@media (max-width: 768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
  }

  nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.active{
    right: 0;
  }

  /* MOBILE LOGO */
  .mobile-logo{
    padding: 11px 0px !important;
    border-bottom: 1px solid #eee;
  }

  .mobile-logo img{
    max-width: 140px;
  }

  /* MENU ITEMS */
  .menu-left{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .menu-left li a{
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  /* DROPDOWN MENU */
  .dropdown-menu{
    position: static;       /* menu ke andar */
    display: none;          /* initially hidden */
    width: 100%;
    padding-left: 15px;
    box-sizing: border-box;
  }

  .dropdown-menu.show{
    display: block;
  }

  .dropdown-menu .col{
    padding: 10px 0;
  }

  .dropdown-menu h4{
    margin-bottom: 8px;
  }

  .dropdown-menu ul li a{
    padding: 6px 0;
    font-size: 14px;
  }

  /* CONTACT BUTTON */
  .menu-right{
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }

  .contact-btn{
    display: inline-block;
  }
}
/* BASIC HEADER */
header{
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 10;
}

.logo img{
  max-width: 140px;
}

/* HAMBURGER */
.menu-toggle{
  display: none;
}

/* NAV DESKTOP */
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MOBILE MENU */
@media (max-width: 768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
  }

  nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.active{
    right: 0;
  }

  /* MOBILE LOGO */
  .mobile-logo{
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .mobile-logo img{
    max-width: 140px;
  }

  /* MENU ITEMS */
  .menu-left{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    list-style: none;
  }

  .menu-left li a{
    display: block;
    padding: 10px 0;
    font-size: 16px;
    text-decoration: none;
    color: #000;
  }

  /* DROPDOWN MENU */
  .dropdown-menu{
    display: none;
    flex-direction: column;
    padding-left: 15px;
    list-style: none;
    width: 100%;
  }

  .dropdown-menu.show{
    display: flex;
  }

  .dropdown-menu li strong{
    display: block;
    margin: 8px 0 4px 0;
    font-size: 15px;
  }

  .dropdown-menu li ul{
    padding-left: 15px;
  }

  .dropdown-menu li ul li a{
    font-size: 14px;
    padding: 4px 0;
  }

  /* CONTACT BUTTON */
  .menu-right{
    margin-top: 20px;
    padding: 0 20px;
    text-align: left;
  }

  .contact-btn{
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    background: #4CAF50;
    border-radius: 4px;
    width: fit-content;
  }
}

@media (max-width: 768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
  }

  nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;

    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.active{
    right: 0;
  }

  .menu-left{
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .menu-right{
    margin-top: 30px;
    padding: 0 20px;
  }

  /* Dropdown mobile */
  .dropdown-menu{
    position: static;
    display: none;
  }

  .dropdown-menu.show{
    display: block;
  }
}

@media (min-width: 768px){
.mobile-logo{
display: none;
}}
@media (max-width: 768px){

  nav{
    width: 100%  !important;
    right: -100%  !important;
  }

  nav.active{
    right: 0  !important;
  }

  .mobile-logo{
    padding: 11px 0px  !important;
    border-bottom: 1px solid #eee  !important;
  }

  .mobile-logo img{
    max-width: 80px  !important;
  }

  .menu-left{
    align-items: flex-start  !important ;
    text-align: left  !important;
  }

  .menu-left li a{
    padding: 12px 0  !important;
    display: block  !important;
  }

  .menu-right{
    margin-top: 20px  !important;
    text-align: left  !important;
  }

  .contact-btn{
    display: inline-block !important;
  }
}

.hero-slider{

  width: 100%;
  height: 70vh;
  overflow: hidden;

}

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active{
  opacity: 1;
}


.overlay{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.25);
}

.content{
  position: absolute;
  top: 60%;
  left: 7% !important;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.tag{
  background: rgba(0,0,0,0.6);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

h1{
  font-size: 48px;
  margin: 15px 0;
  line-height: 1.2;
}

p{
  font-size: 16px;
  margin-bottom: 1px;
}

.btn{
  display: inline-block;
  padding: 12px 25px;
  background: #ff0000; /* RED BUTTON */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover{
  background: #cc0000;
}

/* NAV BUTTONS */
.prev, .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.prev{
  left: 20px;
}

.next{
  right: 20px;
}

/* DOTS */
.dots{

  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot{
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active{
  background: #ff0000; /* RED DOT */
}

/* RESPONSIVE */
@media(max-width:768px){
  h1{
    font-size: 32px;
  }
  .tag {
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    display: none !important;
}
}
.eco-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: url("mn.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}

/* dark overlay */
.eco-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.eco-content {
  position: relative;
  max-width: 850px;
  color: #fff;
  z-index: 2;
}

/* small badge */
.eco-content .badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* main heading */
.eco-content h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
}

/* red highlight instead of green */
.eco-content .highlight {
  color: #d32f2f; /* red */
  font-weight: 700;
}

/* button */
.eco-content .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.eco-content .btn:hover {
  background: #d32f2f;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .eco-section {
    padding: 40px 20px;
  }

  .eco-content h1 {
    font-size: 23px;
  }
}


.footer {
  background: #ffffff;
  padding: 60px 40px;

}

.footer-container {

  display: grid;
  grid-template-columns: 5.5fr 1fr 1fr;
  gap: 60px;
}

/* Brand section */
.footer-brand .logo {

  margin-bottom: 20px;
}
/* Default: mobile pe grid + 1 column */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;           /* ya minmax(275px, 1fr) bhi chalega */
  gap: 40px;
}

/* Tablet aur badi screens pe kuch aur (ya grid hi nahi) */

.contact-box {


  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 12px;
}

.address {
  margin: 20px 0 8px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.map-link {
  color: #c62828;
  font-size: 14px;
  text-decoration: underline;
}

/* Columns */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #c62828;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


.footer-bottom {
  border-top: 1px solid #eee;
  padding: 18px 40px;
  text-align: center;

}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.footer-bottom a {
  color: #c62828; /* red */
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 16px 20px;
  }
}


.testimonial-section {
         /* light mint-green-ish bg */

  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
}

.testimonial-card {
  max-width: 1278px;
  margin: 0 auto;


  padding: 50px 40px 40px;

  position: relative;

}

.stars {
  color: red;               /* green stars jaise screenshot mein */
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.quote {
  font-size: 22px;
  line-height: 1.45;
  color: #333;
  margin: 0 0 24px;
  font-weight: 400;
}

.author {
  font-size: 17px;
  color: #555;
  margin: 0;
  font-weight: 500;
}

.dots {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #d0e0d0;
  border-radius: 50%;
  transition: all 0.3s;
}

.dot.active {
  background: red;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .testimonial-section {
    padding: 40px 15px;
  }
  
  .testimonial-card {
    padding: 40px 25px 30px;
    border-radius: 12px;
  }
  
  .quote {
    font-size: 19px;
  }
  
  .stars {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .author {
    font-size: 16px;
  }
}


.footer {
  background: #f8f9fa;          /* light background, change kar sakte ho */
  padding: 60px 20px 8px;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px 60px;
}

.footer-brand {
  flex: 1 1 240px;
  min-width: 250px;
}

.footer-brand .logo {
  max-width: 95px;
  margin-bottom: 24px;
}




.social-icons {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.social-link {
  margin: 0 20px;
  display: inline-block;
  transition: transform 0.2s;
}

.social-link:hover {
  transform: scale(1.15);
}

.social-link img {
  width: 28px;
  height: 28px;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.social-link:hover img {
  filter: grayscale(0%);
}

/* ── Mobile Responsive ── */
@media (max-width: 767px) {
  .footer {
    padding: 50px 15px 5px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  /* Hide Pages & Popular Products on mobile */
  .footer-pages,
  .footer-popular {
    display: none;
  }

  .social-icons {
    margin-top: -26px;
    padding-top: 20px;
  }

  .social-link {
    margin: 0 18px;
  }

  .social-link img {
    width: 20px;          /* mobile pe thoda bada feel */
    height: 20px;
  }
}

/* Desktop tweaks for social (optional - agar upar shift karna ho to remove kar do) */
@media (min-width: 768px) {
  .social-icons {
    margin-top: 20px;
  }
}




.news-section {
  padding: 25px 5%;
  background: #fff;
}

.news-header h1 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
}

.news-tabs {
  display: flex;
  gap: 25px;
  list-style: none;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.news-tabs li {
  font-size: 14px;
  cursor: pointer;
  color: #555;
}

.news-tabs li.active {
  color: #c40000;
  text-decoration: underline;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

.news-meta {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.news-meta span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fdeaea;
  color: #c40000;
}
@media (min-width: 769px){
  .shop{
display: none !important;
  }
}
.news-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000 !important;
}

.news-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.news-card a {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-header h1 {
    font-size: 28px;
  }
}

*{
  box-sizing:border-box;
 
}

.branches-section{
  padding:60px 3% !important;
  background:#ffffff; /* grey removed */
}

.branches-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

/* CARD */
.branch-card{
  background:#ffffff;
  border-radius:16px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.branch-card h2{
  font-size:22px;
  margin-bottom:15px;
}

.branch-card p{
  font-size:14px;
  line-height:1.6;
  color:#333;
  margin-bottom:12px;
}

.branch-card strong{
  color:#000;
}

/* MAP */
.map-box{
  margin-top:20px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #eee;
}
/* Full Screen Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #ffffff; /* White BG */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Line Container */
.line-loader {
  width: 200px;
  height: 4px;
  background: #eee;
  overflow: hidden;
  position: relative;
}

/* Moving Red Line */
.line-loader::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: red;
  animation: slide 1s linear infinite;
}

@keyframes slide {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
.map-box iframe{
  width:100%;
  height:260px;
  border:0;
}

/* RESPONSIVE */
@media(max-width:900px){
  .branches-grid{
    grid-template-columns:1fr;
  }

  .branch-card{
    padding:24px;
  }
}

@media(min-width:900px){
.hero-image {
  flex: 1 !important;
  text-align: right !important;
}

.slide-inner {
  max-width: 1200px !important;

  padding: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
}

.content {
  position: absolute;
  top: 44%;
  left: 15%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 498px;
}
.dots {
  position: absolute !important;
  bottom: 50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 10px !important;
}
}
