@font-face {
    font-family: 'PPMori-Regular';
    src: url('../fonts/PPMori-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PPMori-Extralight';
    src: url('../fonts/PPMori-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PPMori-SemiBold';
    src: url('../fonts/PPMori-SemiBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


* {
    padding: 0px;
    margin: 0px;
}


a {

    text-decoration: none;
}


ul li {
    list-style: none;
}


body {
    font-family: 'PPMori-Regular', Arial, sans-serif;
}


.pt-50{
    padding-top: 50px;
}

.pt-50{
    padding-bottom: 50px;
}


:root {
    --main-color:#FA0302;
    --blue-color:#12276A;
    --yellow-color:#FAB918;
    --shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
}

h1,
h2 
{
    font-family: 'PPMori-SemiBold', sans-serif;
    font-weight: bold;
}

p {
    font-family: 'MyriadPro-Regular', sans-serif;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 0px;
} 


.centrix{
    display: flex;
    align-items: center;
}

/* headercss */

/* navbar-menu Styles */
.navbar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 0px 120px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 15px -20px;
}

.calllbox{
background-color: #f9f6e8;
    box-shadow: var(--shadow);
    border-radius:20px;
    padding:45px 20px;
}

.calllbox li{
    padding:10px 0px;
} 

.calllbox li a{
    color:black;
    padding-left:10px;
    font-size:20px;
}

.navbar-menu .logo a img {
   width: 100%;
   height: 100px;
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0px;
}

.navbar-menu ul li {
    margin: 0 15px;
}

.navbar-menu ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    transition: 0.3s;
    font-weight:bold;
}

.franchisecontactbox{
    width:80%;
    margin:0 auto;
    
}

.navbar-menu ul li a:hover {
    color: #ff6600;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background: rgb(0, 0, 0);
    margin: 5px;
    transition: 0.4s;
}


/* slidercss */

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .swiper-button-prev,.swiper-button-next{
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    border-radius:50%;
  }


  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    font-size: 30px !important;
  }

  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 30px !important;
  }


  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    display:none !important;
  }


  /* aboutcss */

  .aboutsection h2{
     
    position: relative;
    color: var(--main-color);

  }
  .aboutsection h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 50px;
    height: 3px;
    background-color: #12276A;
}
.aboutsection p{
  font-size: 20px;
  padding: 10px 0px;
}


.miantext h2{
    padding:10px 0px;
    text-align:center;
    position: relative;
    color: var(--main-color);  
}

.miantext h2::after {
    content: "";
    position: absolute;
   top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
    width: 50px;
    height: 3px;
    background-color: #12276A;
}


.calllbox h3{
    text-align:center;
    color:#12276A;
}

.aboutimg img{
        height: 300px;
    border-radius: 20px;
    object-fit: cover;
 border-radius: 20px;
}


.galleryimg img{ 
    background-color:white;
    padding: 5px;  
    border-radius: 10px;
}



.bg-color{
    /* background: linear-gradient(to top, rgba(255, 0, 0, 0.192), rgba(0, 0, 0, 0)); Dark fade effect */
    padding: 40px 0px; 
    background-color: var(--blue-color);
}

.paratextbox ul {
  padding: 20px 0px;
}
.paratextbox ul li{
  padding:5px 0px;
}
.paratextbox ul  li {
  font-size: 18px;
  color: #000000;
  
}

.franchiselist ul h4{
    color:#ffffff;
}

.franchiselist ul li{
    padding:10px 0px;
}

.franchiselist ul li a{
  color: #ffffff;
  border: 1px solid var(--yellow-color);
  border-radius:20px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

.franchiselist ul li a:hover{
  color: var(--main-color);
  border: 1px solid  transparent;
  background-color: white;
  box-shadow: var(--shadow);
}

.mystoretext p{
  font-size: 20px;
  font-weight: bold;
  color:black;
  margin: 0px;

}

.mystorebox{
  margin: 10px 0px;
  background: linear-gradient(to bottom, rgba(4, 0, 255, 0.192), rgba(0, 0, 0, 0));    border-radius: 10px;
  padding: 30px 20px;
  transition: all 1s ease-in-out;
}



.mystorebox:hover{
  box-shadow: var(--shadow);
  background: linear-gradient(to top, rgba(255, 0, 0, 0.192), rgba(0, 0, 0, 0));
}

.testibox{
  border: 1px solid var(--blue-color);
  border-radius: 10px;
  padding: 20px 10px;
  text-align: justify;
}





.testibox:hover{
  box-shadow: var(--shadow);
  border: 1px solid var(--yellow-color);
}

.testibox h6{
    color:var(--main-color);
}

/* footer Styles */
.footer-section{
    text-align: center;
}

.mystorebox img{
  width:60px;
}
  
.footer-section h2
 {
    padding-top: 40px;
    margin-bottom: 15px;
    font-size: 25px;
    color: var(--main-color); /* Tomato color */
}

.footer-section p {
    font-size: 16px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6347; /* Tomato color */
}



.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--main-color);
    font-size: 14px;
    color: #ccc;
}

.footer-bottom p a{
    color:#ffffff;
}
.footerlogo{
    margin:35px 0px;
}

.footerlogo img{
    width: 120px;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.social-icons a img{
    width:50px;
    background: linear-gradient(135deg, #fa02026e, #faba185e, #12276a65);
    
    border-radius: 50%;
    padding: 5px;
    box-shadow: var(--shadow);

}

.social-icons a img:hover{
  background-color: #ffffff;
}

.footerbox{
  background-color: var(--blue-color);
}

.timeline {
  position:relative;
  display:flex;
  gap: 20px;
  text-align: center;
}
.timeline:before{
     content: "";
    position: absolute;
    top: -12px;
    width: 100%;
    height: 6px;
    background-color: #12276A;
}
.step {
  width: 100%;
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.step:before {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-color);
  padding: 8px 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
}
.hidden-info {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.step .hidden-info {
  opacity: 1;
  transform: translateY(0);
  font-weight: bold;
}







/* formcss */

/* From Uiverse.io by ammarsaa */ 

.contactform{
    width:100%;
}
.form {
    display: flex;
    flex-direction: column;
    gap:20px;
    padding: 20px 40px;
    border-radius: 20px;
    position: relative;
    background-color: #f9f6e8 ;
    box-shadow: var(--shadow);

  }
  
  
  
  .inputflex {
    display: flex;
    width: 100%;
    gap: 10px;
  }
  
  
  .form label {
    position: relative;
    width: 100%;
  }
  
  .form label .input {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    padding: 20px 05px 05px 10px;
    outline: 0;
    border: none;
    border-radius:20px;
    box-shadow: var(--shadow);
  }
  
  .form label .input + span {
    color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 12.5px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,
  .form label .input:valid + span {
    color: var(--main-color);
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .input {
    font-size: medium;
  }
  
  .submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    background-color: var(--blue-color);
  }
  
  .submit:hover {
    background-color: var(--main-color);
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }





/* btncss */

.buttons{
  margin-top: 30px;
}
  
  .buttons button {
    width: 100px;
    height:40px;
    background-color: var(--blue-color);

    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  
  .buttons button:before, .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color:var(--main-color);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .buttons button span:before, .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: var(--yellow-color);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button a {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
    color: #ffffff;
  }
  
  .buttons button a:before, .buttons button a:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
  }
  
  .buttons button a:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button a:after {
    content: attr(data-text);
    top: 150%;
    color: #44d8a4;
  }
  
  .buttons button:hover:before, .buttons button:hover:after {
    width: 100%;
  }
  
  .buttons button:hover span {
    z-index: 1;
  }
  
  .buttons button:hover span:before, .buttons button:hover span:after {
    height: 100%;
  }
  
  .buttons button:hover a:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button:hover a:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  
  .buttons button.start a:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button.start a:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
  }
  
  @keyframes start {
    from {
      top: -50%;
    }
  }
  
  .buttons button.start:hover:before, .buttons button.start:hover:after {
    display: none;
  }
  
  .buttons button.start:hover span {
    display: none;
  }
  
  .buttons button:active {
    outline: none;
    border: none;
  }
  
  .buttons button:focus {
    outline: 0;
  }