   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 60px;
}

body {
    font-family: DM Sans,sans-serif;
    background-color: #f2f5f7;
    color: #333;
}
a {
  text-decoration: none;
  color: #333;
}
/* =========================== 📱 aleat bar   =========================== */
.alert {
    padding: 16px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideFadeIn 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 6px solid #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 6px solid #dc3545;
}

/* Slide + Fade Animation */
@keyframes slideFadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFadeOut {
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #28a745;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ================================  Nav  bar =========================================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 65px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  border-radius: 35px;
  margin-top: 20px;
  background: #fffffff5;
}

.container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  width: 180px;
}
.logo a {
  text-decoration: none;
  color: rgb(56, 56, 56);
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(56, 56, 56);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #007bff;
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #007bff;
  transform: scale(1.1);
}

.nav-links li a.active {
  color: #007bff;
}

.nav-links li a.active::after {
  width: 100%;
}

.buttonheder {
  background: linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  background: rgb(56, 56, 56);
  height: 3px;
  width: 28px;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.4s ease;
}

/* Hamburger Active Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile */
@media screen and (max-width: 768px) {

  .navbar{
    width:95%;
    height:65px;
  }

  .logo img{
    width:140px;
  }
  
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 95px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    width: 95%;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;

    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    padding:10px;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger Animation */
  .nav-links.open li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.4s;
  }
}

main {
  background-color: #ffffff;
}

#about{
  background-color: hwb(220 98% 0%);
}

/* ================================  Footer bar =========================================== */
.footer {
  background-color: #333; /* Dark background for the footer */
  color: #fff; /* White text for contrast */
  text-align: center; /* Center align text */
  padding: 30px 0; /* Padding for vertical spacing */
  font-size: 0.9rem; /* Slightly smaller text size */
}

.footer p {
  margin: 0; /* Remove default margins */
}


/* ================================  header bar =========================================== */
.container-homebar{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:100px 8%;
    position:relative;
    overflow:hidden;
    background:linear-gradient(to bottom,#f9f9f9,#e9f8fc);
}

.hero-content{
    flex:1;
    max-width:600px;
    z-index:2;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.container-homebar::after {
  content: "";
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(#0f1c150d 1px,#0000 1px),linear-gradient(90deg,#0f1c150d 1px,#0000 1px);
  background-size: 50px 50px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 30%,#0000 95%);
  mask-image: linear-gradient(#000 30%,#0000 95%);
}

.hero-badge{
    background:#e7f5ff;
    color:#0077ff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.hero-content h1{
    font-size:55px;
    line-height:1.2;
    margin:20px 0;
    color:#222;
}

.hero-content p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
    align-items: center;
}

.book-btn{
    padding:12px 35px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    color:white;
    font-size:16px;
    font-weight:600;
    background:linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
    transition:.3s;
}

.book-btn:hover{
    transform:translateY(-4px);
}

.call-btn-hero{
    text-decoration:none;
    padding:12px 35px;
    border-radius:50px;
    background:linear-gradient(105deg, #0f2b3d 0%, #1e6b5e 100%);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.call-btn-hero:hover{
    transform:translateY(-4px);
}

.hero-image img{
    width:100%;
    max-width:400px;
    z-index:2;
    position:relative;

    animation:floating 4s ease-in-out infinite;
}

@keyframes floating{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }
}

.circle-bg{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #b7e3ff,
        #dff5ff
    );

    animation:rotateCircle 18s linear infinite;
}

@keyframes rotateCircle{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@media(max-width:768px){

    .container-homebar{
        flex-direction:column-reverse;
        text-align:center;
        padding:120px 20px 60px;
        gap:30px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-image img{
        max-width:320px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .circle-bg{
        width:280px;
        height:280px;
    }
}

.from-enquriy-group {
  padding: 10px;
  margin-top: 20px;
  margin-left: 80px;
  margin-right: 80px;
  color: aliceblue;
  text-align: left;
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  height: 65px;
  gap: 12px;
}

.input-with-icon {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 12px;
  background-color: #fff;
  color: #333;
  width: 100%;
  max-width: 350px;
}

.input-with-icon .icon {
  margin-right: 10px;
  font-size: 1rem;
  color: hsl(0, 0%, 22%);
}

.input-with-icon input, 
.input-with-icon select {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  color: #1b1b1b;
  padding: 5px 0;
  background: transparent;
}

.input-with-icon input::placeholder, 
.input-with-icon select {
  color: hsl(0, 0%, 22%);
}

.input-with-icon select{
  appearance: none; /* Removes default dropdown arrow */
  background: transparent;
  margin-bottom: 0px;
}

/* Button styles */
.from-enquriy-group button {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: hsl(211, 88%, 62%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  width: 50%;
}

.from-enquriy-group button:hover {
  background-color: #0056b3;
}

/* Make sure input/select fields align correctly */
.input-with-icon select, 
.input-with-icon input {
  display: inline-block;
  width: 100%;
}

/* Call button styles */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  animation: zoomInOut 1.5s infinite;
  z-index: 1000;
}

.call-button i {
  color: white;
}

.call-button:hover {
  background-color: hsl(211, 100%, 29%);
}

/* Zoom in-out animation */
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container-homebar {
     justify-content:flex-start;
    }
    .container-homebar {
      flex-direction: column;
      margin-top: 60px;
    }
  
    .contanta-hesed, .from-enquriy-group {
      margin-left: 1px;
      margin-right: 1px;
    }
  
    .from-enquriy-group {
        grid-template-columns: 1fr;
      
    }
    .from-enquriy-group {
        width: 75%;
    }
    .from-enquriy-group button {
        width: 50%;
         padding: 15px 20px;
    }
  }


  .submit-button-wrapper {
  position: relative;
  display: inline-block;
}

button[type="submit"] {
  position: relative;
  padding-right: 40px;
}

.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* ================================  SWervice bar =========================================== */
/* General Styling */
.service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
  text-align: center;
}

.service-title {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 30px;
  position: relative;
}

.service-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #1e293b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-radius: 2px;
}

/* Grid Styling */
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Service Item */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.service-img-web {
  width: 100%;
  max-width: 70px;
  height: 70px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-item:hover .service-icon {
  color: #0056b3;
}

/* Service Name */
.service-name {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
  .service-title {
    font-size: 2rem;
  }

  .service-img-web {
    width: 100%;
  max-width: 55px;
  height: 55px;
  }

  .service-name {
    font-size: 0.9rem;
  }
  .service-item {
  padding: 5px;
}
}

@media (max-width: 480px) {
  .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
}
  .service-title {
    font-size: 1.8rem;
  }

  .service-img-web {
    width: 100%;
  max-width: 40px;
  height: 40px;
  }

  .service-name {
    font-size: 0.8rem;
  }
}

.loader-overlay-web {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCFCFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .loader-image-web {
    width: 250px;
  }
  @media (max-width: 768px) {
    .loader-image-web {
    width: 200px;
  }
}
/* ================================  Fechar service bar =========================================== */
 /* Main Section */
  .featured-services {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #e9f8fc);
    text-align: center;
  }
  
  /* Container for Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping to the next row if space is limited */
  gap: 20px;
  justify-content: center; /* Center items within the container */
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  display: flex;
  flex-direction: row;
  background-color: #fafdff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: calc(33.33% - 20px); /* Default width for 3 items per row with gap */
  text-align: left;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  flex: 1 1 calc(33.33% - 20px); /* Flexible width for responsiveness */
  max-width: 500px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
  margin-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Service Header */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.service-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* Price Section */
.price-section {
  margin-bottom: 10px;
}

.price {
  display: flex;
  align-items: center;
}

.original-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discount-price {
  font-size: 1rem;
  color: #ff5722;
  font-weight: bold;
}

/* Button */
.select-button {
  background: linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  margin-right: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  margin-top: 5px;
}

.select-button:focus {
  outline: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .service-card {
    flex: 1 1 calc(100% - 20px); /* Two cards per row on medium screens */
  }

  .service-image img {
    width: 100px;
    height: 100px;
  }

  .service-name {
    font-size: 0.9rem;
  }

  .price-section {
    font-size: 1rem;
  }

  .select-button {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 calc(100% - 20px); /* Single card per row on small screens */
  }

  .service-image {
    margin-right: 15px;
  }

  .service-image img {
    width: 100px;
    height: 100px;
  }

  .service-name {
    font-size: 0.8rem;
  }

  .select-button {
    padding: 10px;
  }
}
  .loader-overlay-web {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCFCFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .loader-image-web {
    width: 250px;
  }
  @media (max-width: 768px) {
    .loader-image-web {
    width: 200px;
  }
}

/* ================================  about bar =========================================== */
.about-section {
  padding: 80px 20px;
  background-color: hwb(220 98% 0%);
  color: #333;
}

.about-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.2rem;
  color: #555;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #007bff;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2rem;
  }

  .about-header p {
    font-size: 1rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

     /* ===============================
   ABOUT EXTRA SECTIONS
================================ */
.about-extra {
    background:linear-gradient(to bottom, #e9f8fc, #f9f9f9);
    border-radius: 14px;
    padding: 25px 30px;
}

.about-extra h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

.about-extra p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-extra a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.about-extra a:hover {
    text-decoration: underline;
}


/* ===============================
   FRANCHISE BOX (HIGHLIGHT)
================================ */
.franchise-box {
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border: 2px solid #ff7a00;
    position: relative;
}

.franchise-box::before {
    content: "Business Opportunity";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff7a00;
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.franchise-box h2 {
    color: #ff7a00;
}

.franchise-box ul {
    margin: 15px 0 10px;
    padding-left: 0;
    list-style: none;
}

.franchise-box ul li {
    font-size: 15px;
    color: #333;
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.franchise-box ul li::before {
    content: "✔";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* ===============================
   CTA BUTTON
================================ */
.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #ff7a00, #ff9f43);
    color: #fff !important;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255,122,0,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,122,0,0.45);
    background: linear-gradient(135deg, #ff9f43, #ff7a00);
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .about-extra {
        padding: 20px;
    }

    .about-extra h2 {
        font-size: 20px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   GLOBAL ANIMATION SETUP
================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

[data-animate].show {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   ABOUT TEXT ANIMATION
================================ */
.about-text h2 {
    position: relative;
}

.about-text h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff7a00, #ff9f43);
    display: block;
    margin-top: 6px;
    border-radius: 4px;
}

/* ===============================
   WHY CHOOSE US LIST STYLE
================================ */
.about-extra ul li {
    transition: transform 0.3s ease, color 0.3s ease;
}

.about-extra ul li:hover {
    transform: translateX(6px);
    color: #ff7a00;
}

/* ===============================
   NUMBERS CARD STYLE
================================ */
.stats-box {
    flex: 1;
    min-width: 180px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stats-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff7a00;
}

.stats-label {
    font-size: 14px;
    color: #555;
}

/* ===============================
   FRANCHISE BOX GLOW
================================ */
.franchise-box {
    animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 0 rgba(255,122,0,0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(255,122,0,0.45);
    }
}

/* ===============================
   BUTTON RIPPLE EFFECT
================================ */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}


/* ================================  Contact bar =========================================== */
/* General Section Styling */
  .contact-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
    color: #333;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Header Section */
  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
    color: #0078d7;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .contact-header h1::after {
    content: "";
    width: 50%;
    height: 4px;
    background: #0078d7;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    border-radius: 2px;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  /* Contact Content */
  .contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-item-web {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .contact-item-web:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
  
  .contact-item-web h2 {
    font-size: 1.8rem;
    color: #0078d7;
    margin-bottom: 15px;
  }
  
  .contact-item-web p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-header h1 {
      font-size: 2.5rem;
    }
  
    .contact-header p {
      font-size: 1rem;
    }
  
    .contact-item-web h2 {
      font-size: 1.5rem;
    }
  
    .contact-item-web p {
      font-size: 0.9rem;
    }
  }
  /* ================================  faq bar =========================================== */
  .faq-section {
  padding: 80px 20px;
  background-color: hwb(220 98% 0%);
  color: #333;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-answer {
  padding: 15px;
  border-top: 1px solid #ddd;
  line-height: 1.6;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: #666;
}

@media (max-width: 768px) {
  .faq-section h1 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}

 .warranty-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #1e293b;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.warranty-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.warranty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.warranty-card .icon-box {
  font-size: 50px;
  margin-bottom: 15px;
}

.warranty-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0f172a;
}

.warranty-card p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 20px;
}

.warranty-card.premium {
  border: 2px solid #08f;
}

   /* Full Desktop Section */
.warranty-check-section {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f9f9f9, #e9f8fc);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Two Column Layout */
.warranty-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Panel */
.warranty-left h1 {
  font-size: 48px;
  color: #020617;
  margin-bottom: 15px;
}

.warranty-left p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.feature-item span {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
}

/* Contact Section */
.contact-box {
  margin-top: 25px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
}

.call-support,
.whatsapp-support {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.call-support {
  background: linear-gradient(
        105deg,
        rgba(28, 58, 77, 1) 0%,
        rgba(48, 103, 140, 1) 50%,
        rgba(20, 53, 71, 1) 100%
    );
  color: white;
}

.whatsapp-support {
  background: linear-gradient(105deg, #0f2b3d 0%, #1e6b5e 100%);
  color: white;
}

/* Right Card UI */
.warranty-card-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* Header */
.warranty-header {
  text-align: center;
  margin-bottom: 25px;
}

.warranty-header img {
  width: 100px;
  margin-bottom: 10px;
}

.warranty-header h2 {
  font-size: 28px;
}

.warranty-header p {
  font-size: 14px;
  color: #64748b;
}

/* Form */
.warranty-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.warranty-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
}

.warranty-form button {
  padding: 14px 24px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(
        105deg,
        rgba(28, 58, 77, 1) 0%,
        rgba(48, 103, 140, 1) 50%,
        rgba(20, 53, 71, 1) 100%
    );
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Result Box */
.warranty-result {
  margin-top: 30px;
  padding: 24px;
  border-radius: 18px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  text-align: center;
}

.result-grid p {
  margin: 8px 0;
  font-size: 15px;
}

.call-btn {
  display: inline-block;
  margin-top: 15px;
  background: #22c55e;
  padding: 12px 26px;
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-size: 14px;
}

/* Terms */
.terms-box {
  margin-top: 35px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.terms-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.terms-box li {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Hidden */
.hidden {
  display: none;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .warranty-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

/* ========================= */
/* ✅ Tablet Responsive (1024px) */
/* ========================= */
@media (max-width: 1024px) {

  .warranty-left h1 {
    font-size: 38px;
  }

  .warranty-container {
    gap: 40px;
  }

  .warranty-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .warranty-card-box {
    padding: 30px 25px;
  }
}

/* ========================= */
/* ✅ Mobile Responsive (768px) */
/* ========================= */
@media (max-width: 768px) {

  .warranty-check-section {
    padding: 60px 15px;
  }

  .warranty-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .terms-box li {
   text-align: left;
}

  .warranty-left h1 {
    font-size: 30px;
  }

  .warranty-left p {
    font-size: 16px;
  }

  .features {
    align-items: center;
  }

  .feature-item {
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .warranty-form {
    flex-direction: column;
  }

  .warranty-form button {
    width: 100%;
  }

  .warranty-card-box {
    padding: 28px 20px;
  }

  .warranty-header h2 {
    font-size: 22px;
  }

}

/* ========================= */
/* ✅ Small Mobile (480px) */
/* ========================= */
@media (max-width: 480px) {

  .section-title {
    font-size: 22px;
  }

  .warranty-left h1 {
    font-size: 24px;
  }

  .warranty-left p {
    font-size: 14px;
  }

  .feature-item {
    font-size: 14px;
    padding: 14px 16px;
  }

  .contact-box {
    padding: 16px;
  }

  .warranty-card-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .warranty-form input {
    font-size: 14px;
    padding: 12px;
  }

  .city-popup-box {
    max-width: 95%;
  }

  .city-popup-header h2 {
    font-size: 20px;
  }
}

/*------------------------------------------------- Footer style -------------------------------------*/
.premium-footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: hsl(0, 0%, 100%);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.social-icons img {
  width: 25px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.store-links img {
  width: 130px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-location {
  text-align: center;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  border-top: 1px solid #1e293b;
  margin-top: 15px;
  color: #64748b;
}
  /* ========== NEW DIGITAL SOLUTIONS SECTION (Web Design, Dev, Ecomm, API, SMS, Hosting) ========== */
        .digital-section {
            background: linear-gradient(to bottom, #e9f8fc, #f9f9f9);
            padding: 4rem 2rem;
        }
        .digital-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }
        .digital-sub {
            text-align: center;
            color: #4a6272;
            margin-bottom: 3rem;
            font-size: 1rem;
        }
        .digital-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        .digital-card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 14px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,119,182,0.1);
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .digital-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(0, 85, 110, 0.2);
            border-color: #0096c7;
        }
        .digital-icon {
    font-size: 2.8rem;
    background: linear-gradient(145deg, #e6f4ff, #cde9f5);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border-radius: 30px;
    transition: 0.3s ease;
}

.digital-icon i{
    background: linear-gradient(
        105deg,
        rgba(28, 58, 77, 1) 0%,
        rgba(48, 103, 140, 1) 50%,
        rgba(20, 53, 71, 1) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        .digital-card:hover .digital-icon{
    transform: translateY(-5px) rotate(5deg);
}
        .digital-card h3 {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: #1c3a4d;
        }
        .digital-card p {
            font-size: 0.85rem;
            color: #4b6a7c;
            line-height: 1.4;
        }
        .link-tag {
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #0096c7;
            transition: 0.2s;
        }
        .digital-card:hover .link-tag {
            color: #005f8c;
            letter-spacing: 0.3px;
        }
        @media (max-width: 680px) {
            .digital-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .digital-card {
                padding: 1.2rem;
            }
        }
        
        
.brands-section{
    background:#e9f8fc;
    overflow:hidden;
}

.brands-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;

    animation: scrollBrands 25s linear infinite;
}

.brands-track img{
    width:140px;
    height:70px;
    object-fit:contain;

    filter: grayscale(100%);
    opacity:0.7;

    transition:.3s;
}

.brands-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@keyframes scrollBrands{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .brands-track{
        gap:35px;
    }

    .brands-track img{
        width:90px;
        height:50px;
    }

}

.partners-section{
    padding:70px 20px;
    background:#f9f9f9;
}

.partners-section h2{
    text-align:center;
    font-size:34px;
    font-weight:700;
    margin-bottom:40px;
    color:#222;
}

.partners-grid{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
}

.partners-grid img{
    height:90px;
    width:auto;
    object-fit:contain;
    padding:15px 25px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}
@media(max-width:768px){

    .partners-grid{
        gap:20px;
    }

    .partners-grid img{
        height:65px;
        padding:10px 15px;
    }

}