* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  padding-top: 35px;
}

/* ***************Pop up message Section Start************ */

.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}
.outlet-box {
    border: 1px solid #333;
    padding: 10px;
    margin: 12px 0;
    border-radius: 8px;
    font-weight: bold;
    background: #f9f9f9;
}
.popup h2, h3{
  padding-bottom: 10px;
}
.blink {
    animation: blink 1s infinite;
}
@keyframes blink {
    0% { background-color: #f9f9f9; }
    50% { background-color: #ffd700; }
    100% { background-color: #f9f9f9; }
}
#closeBtn {
    margin-top: 15px;
    padding: 8px 16px;
    background: #ff3333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* ****************Navbar Section Start****************** */


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #d32f2f;
  /* background-color: rgba(241, 9, 9, 0.2); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo .logo-img {
  width: 60px;
  height: 60px;
  /* border-radius: 05px; */
  object-fit: cover;
}

.logo .logo-img2{
  width: 280px;
  height:60px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #ffcc80; 
}
.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 900px) {
.logo .logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.logo .logo-img2{
  width: 190px;
  height:45px;
}
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #d32f2f;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    padding-top: 100px;
    text-align: center;
    z-index: 998;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
    z-index: 999;
    position: relative;
  }
  .nav-links li {
    margin: 20px 0;
  }
}


/******************Hero Section Start*********************** */

.hero-img, .sub-hero-img{
  position: relative;
  z-index: 1;
}
.hero-img, .sub-hero-img{
  width:100%;
  height:50rem;
}
.hero-img{
  /* position: absolute; */
  /* top:0px; */
  top:12px;
}

.momo-hero1, .momo-hero2, .momo-hero3 {
  width: 100%;
  height:100%;
  /* max-height: 130vh; */
  /* object-fit: cover; */
  position: relative;
  z-index: 1;
}
.momo-hero3{
  display:none;
}

@media (max-width: 900px) {
  .hero-img{
  top:0px;
}
  .momo-hero1, .momo-hero2{
    display: none;
  }
  .momo-hero3{
    display: block;
  }
}


/*******************Vedio Section Start***************/

.vedio-section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 55rem;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0px;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.vedio-content {
  position: relative;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.4);
}
.vedio-content h1 {
  font-family: "Bauhaus 93", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffcc80; 
}
.vedio-content p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ffc107;  
}
.vedio-btn {
  background-color: #d32f2f;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.vedio-btn:hover {
  background-color: #ff5722;
}

@media (max-width: 768px) {
  .bg-video {
  width: 50%;
}
  .vedio-content h1 {
    font-size: 2.2rem;
  }

  .vedio-content p {
    font-size: 1rem;
  }

  .vedio-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/****************** Footer Section ******************/

.footer {
  background-color: #d32f2f;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 300px;
  height: 300px;
  border-radius: 25px;
  object-fit: cover;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 600;
  color: #ffcc80;
}

/* Navigation Links */
.footer-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.footer-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  font-size:17px;
  color: #ffcc80;
}

/* Social Icons */
.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.15s ease;
}

.footer-social a:hover {
  font-size: 21px;
  color: #ffcc80;

}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    gap: 20px;
  }

  .footer-nav {
    gap: 20px;
    flex-direction: column;
  }

  .footer-social {
    font-size: 18px;
  }
  .footer-copy {
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
}
}

/**************** Home Page and Menu Page Counter Start************* */

.menu-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../image/hero4.1.jpg')no-repeat center center/cover;

}

.menu-overlay {
  width: 100%;
  height: 100%;
  background: rgba(211, 47, 47, 0.2); 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.menu-counter {
  font-size: 10rem;
  font-weight: bold;
  color: #f0940a;
  margin-left: 1rem;
}

.menu-tagline1 {
  font-family: "Bauhaus 93", sans-serif;
  font-size: 2.5rem;
  margin-top: 1.8rem;
  color: #edc283;
  font-weight: 600;
  margin-left: 1rem;

}

.menu-tagline2 {
  font-family: "Bauhaus 93", sans-serif;
  font-size: 6rem;
  margin-top: 1.8rem;
  color: #f0940a;
  font-weight: 800;
  margin-left: 1rem;

}
@media (max-width: 768px) {
  .menu-counter {
  font-size: 9rem;
  margin-left: 0rem;
}

.menu-tagline1 {
  font-size: 2.5rem;
  margin-left: 0rem;

}

.menu-tagline2 {
  font-size: 4rem;
  margin-top: 1.8rem;
  color: #f0940a;
  font-weight: 800;
  margin-left: 0rem;

}
}

/* ********Menu Card Section Start on Menu Page ************/

.menu-card-section {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}

.menu-card-heading {
  color: #f0940a;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.menu-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 204, 128, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.menu-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 204, 128, 0.4);
}

.menu-card:hover img {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* **********Menu Page Carosil Section Start *************/

.carousel-section {
  background-color: #ae0404;
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
}

.carousel-heading {
  color:#f0940a;
  font-size: 2rem;
  margin-bottom: 40px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  align-items: flex-start;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}

.carousel-item img {
  height: 300px;
  width: 30rem;
  border-radius: 10px;
  object-fit: cover;
}

.carousel-item p {
  margin-top: 10px;
  color:#f9c474;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* carosil pause on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* animation on carosil */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-95%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item img {
    height: 180px;
    width: 18rem;
  }
  .carousel-item p {
    font-size: 0.9rem;
  }
}


/* ********founder page "Founder Section"  Start  ************/

 .founder-section {
      position: relative;
      background-image: url('../image/13.jpeg'); 
      background-size:cover;
      background-position: center;
      color: white;
      padding: 120px 20px;
      overflow: hidden;
    }

    .founder-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .founder-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      gap: 40px;
    }

    .founder-image img {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #ffcc80;
      box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .founder-image img:hover {
      transform: scale(1.05);
    }

    .founder-content {
      flex: 1;
      min-width: 280px;
    }

    .founder-content h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 2.5rem;
      color: #ffcc80;
      margin-bottom: 20px;
    }

    .founder-content p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .founder-container {
        flex-direction: column;
        text-align: center;
      }

      .founder-content h2 {
        font-size: 2rem;
      }

      .founder-image img {
        width: 200px;
        height: 200px;
      }
    }

/* ********Founder Page "My journey Section" Start *************/

.journey-section{
  padding: 6rem 2rem 6rem 2rem;
  background-color: #ae0404;
  color:#fff;
}
.journey-section h1{
  font-family: 'Dancing Script', cursive;
  margin-bottom:2.5rem;
  text-align: center;
  font-size: 5rem;
}
.journey-box{
  border: 15px solid #fff;
  padding: 5rem;
  border-radius: 5rem;
}
.journey-section h2{
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 3rem;
}
.journey-section p{
  font-size: 1.2rem;
  line-height: 2rem;
  padding-bottom: 0.8rem;
  text-align: justify;

}
.journey-section p span{
  font-weight: bold;
  font-size: 1.8rem;
  font-family: 'Dancing Script', cursive;

}

@media (max-width: 468px) {
  .journey-section{
  padding: 5rem 0 5rem 0;
}
.journey-box{
  border: 8px solid #fff;
  padding: 3rem 0.8rem 2rem 0.8rem;
  border-radius: 2rem;
}
.journey-section h1{
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.journey-section h2{
  font-size: 2rem;
}
.journey-section p{
  font-size: 1rem;
}
}


/* ********Founder Page "Carosil Section" Start *************/

/* 
.founder-journey {
  background-color: #ae0404;
  color: #fff;
  padding: 20px 20px 80px 20px;
  text-align: center;
}

.journey-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 4.5rem;
  color: #ffcc80;
  margin-bottom: 2rem;
}

.mySwiper{
  width:95%
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border:10px solid #f0940a;
  background-color: #f0940a;
  border-radius: 30px;
  padding-top:20px;
  
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  
}

.circle-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffcc80;
}

.year {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.quote {
  max-width: 700px;
  font-size: 1rem;
  font-style: italic;
  color: #fff;
  padding: 10px;
  position: relative;
  text-align: justify;

}

.quote::before {
  content: '“';
  font-size: 10rem;
  color: #ffcc80;
  position: absolute;
  left: -80px;
  top: -30px;
}
.quote::after {
  content: '”';
  font-size: 10rem;
  color: #ffcc80;
  position: absolute;
  right: 10px;
  bottom: -120px;
}

.mySwiper:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .mySwiper{
  width:100%
  }

  .journey-heading {
    font-size: 2.5rem;
  }
  .slide-content {
    gap:2rem;
  }
  .circle-image img {
  width: 250px;
  height: 250px;
  }
  .quote {
    font-size: 1.5rem;
    text-align: center;
  }
  .quote::before, .quote::after {
    display: none;
  }
  .founder-journey {
    padding-bottom: 20px;
  }

} */


/* **********Franchise Page Start ************/

    .franchise-counter {
      background: linear-gradient(to right, #ff512f, #dd2476);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }

    .franchise-counter h1 {
      font-family: 'Dancing Script', cursive;
      font-size: 60px;
      margin: 10px 0;
      /* color:black */
    }

    .franchise-counter p {
      font-size: 25px;
      font-style: italic;
    }

    .franchise-counter-number{
      font-size: 90px;
      font-weight: bold;
    }

    .Franchise-section{
      padding-top:5rem;
      background: #fff0e6;
    }

    .franchise-heading {
      text-align: center;
      margin-bottom: 2rem;
      color: #b71c1c;
    }

    .franchise-heading h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .franchise-boxes {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 20px;
      background: #fff0e6;
      /* max-width: 1000px; */
    }

    .franchise-box {
      width: 380px;
      /* width:50%; */
      padding: 30px;
      border-radius: 16px;
      background-color: white;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      perspective: 1000px;
      transform-style: preserve-3d;
      animation: flipIn 2s ease forwards;
    }

    .franchise-box:nth-child(1) {
      animation-delay: 0.3s;
      animation-name: slideLeftFlip;
    }

    .franchise-box:nth-child(2) {
      animation-delay: 0.6s;
      animation-name: slideRightFlip;
    }

    .franchise-box h2 {
      text-align: center;
      font-size: 22px;
      color: #b71c1c;
      margin-bottom: 30px;
      
    }  

    .franchise-box ul,
    .franchise-box p {
      font-size: 16px;
      line-height: 1.5;
      margin: 0;
      padding: 0;
      color: #b71c1c;
      text-align: center;
    }
    .franchise-box ion-icon{
      color:#e53935;
      font-size: 1.2rem;
    }

    .district-columns {
      display: flex;
      justify-content: space-around;
    }

    .district-columns ul {
      list-style: none;
      padding: 0;
      margin: 0;
      
    }

    @keyframes flipIn {
      0% {
        transform: rotateY(180deg);
        opacity: 0;
      }
      100% {
        transform: rotateY(0);
        opacity: 1;
      }
    }
    @keyframes slideLeftFlip {
      0% {
        transform: translateX(-100px) rotateY(180deg);
        opacity: 0;
      }
      100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
      }
    }

    @keyframes slideRightFlip {
      0% {
        transform: translateX(100px) rotateY(180deg);
        opacity: 0;
      }
      100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
      }
    }

    @media (max-width: 768px) {
      .franchise-boxes {
        flex-direction: column;
        align-items: center;
        padding: 60px 5px 60px 5px;
      }
       .franchise-box {
        width: 300px;
        padding: 30px 5px 30px 5px;
      }
      .franchise-box ul,
      .franchise-box p {
        font-size: 16px;
      }
    }


/* *******************************************************
                Training Page Start 
*********************************************************/

    /* Training Hero Section */

    .training-hero {
      position: relative;
      height: 100dvh;
      width:100%;
      overflow: hidden;
    }

    .training-hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;

    }
 

    .training-hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      padding: 30px;
      border-radius: 12px;
      z-index: 999;
    }

    .training-hero-content h1 {
      font-size: 36px;
    }

    /* Training Section */

    .training-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      padding: 60px 20px;
    }

    .training-section img {
      width: 100%;
      max-width: 450px;
      height: 38rem;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
      
    }

    .training-section img:hover {
      transform: scale(1.03);
    }

    .knowMore-training-btn {
      width: 100%;
      text-align: center;
      margin-top: 30px;
    }
    .knowMore-training-btn a {
      display: inline-block;
      background-color: #e53935;
      color: white;
      padding: 12px 28px;
      text-decoration: none;
      font-size: 18px;
      border-radius: 30px;
      transition: background-color 0.3s ease;
    }

    .knowMore-training-btn a:hover {
      background-color: #c62828;
      transform: scale(1.01);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

   
    @media (max-width: 768px) {
      
      .training-hero-content h1 {
        font-size: 24px;
      }

      .training-section {
        flex-direction: column;
      }

      .training-section img {
        height: auto;
        max-height: 30rem;
      }
    }

    /* Training Information  */

    .training-info-section{
      margin:5rem;
    }
    .training-info-detail{
      padding:3rem 0rem 3rem 0rem;
      background: linear-gradient(to right, #ff512f, #dd2476);
      text-align: center;
      color:wheat;
      border-radius: 20px;

    }
    .training-info-detail h1{
      font-size: 3rem;
      font-weight: 800;
      padding-bottom: 1rem;
    }
    .training-info-detail h2{
      font-size: 2rem;
      padding-bottom: 2rem;

    }
    .training-info-detail p{
      font-size: 1.5rem;
      padding-bottom: 1rem;

    }
    .training-info-detail p .icon {
      vertical-align: middle;
      font-size: 1.6rem;
    }
    @media (max-width: 768px) {
    .training-info-section{
      margin:3rem 5px 5rem 5px;
    }
    .training-info-detail h1{
      font-size: 1.5rem;
      padding:15px;
    }
    .training-info-detail h2{
      font-size: 1.2rem;
    }
    .training-info-detail  p{
      font-size: 1rem;
    }
    }


/* *******************************************************
                Contact Us Page Start 
*********************************************************/

.hero-contact-section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 55rem;
  overflow: hidden;

}
.contact-img {
  position: absolute;
  top: 0px;
  left: 0;
  width:100%;
  height:55rem;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-contact-content {
  position: relative;
  height: 100%;
  font-size: 3rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background:rgb(255, 82, 82,0.2);
  animation: bounceIn 1.5s ease;

}

.branch-heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #b71c1c;

}

.branch-heading h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.branch-heading p {
  font-size: 1.1rem;
  color: #444;
}

/* Branch section */
.Branch-Section{
  padding: 3rem 1rem;
  background: #fff0e6;    

}
.Our-Branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;

}
.comman-branch{
  color: #d32f2f;
  text-align: center;
  width:100%;
  padding: 20px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  perspective: 1000px;
  animation: flipIn 2s ease forwards;
  /* animation: bounceIn 2s ease forwards; */
  
  box-sizing: border-box;
}
.comman-branch h2{
  padding-bottom: 10px;
  font-size: 1.4rem;
}
.comman-branch h3{
  padding-bottom:15px;
  font-size: 1.2rem;
}
.comman-branch p{
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1rem;
  flex-wrap: wrap;
  word-break: break-word;
}
.comman-branch ion-icon {
  color: #d32f2f;
  font-size: 1.2rem;
}
@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.comman-branch:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
   .hero-contact-content{
    font-size: 1.6rem;
  }
  .hero-contact-content p{
    font-size: 1rem;
  }
    .branch-heading h1 {
    font-size: 2rem;
  }

  .branch-heading p {
    font-size: 1rem;
  }

  .comman-branch h2 {
    font-size: 1.2rem;
  }

  .comman-branch h3 {
    font-size: 1rem;
  }

  .comman-branch p {
    font-size: 0.95rem;
  }

  .comman-branch {
    padding: 15px;
  }
}
