* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.site-header {
  display: flex;
  width: 102%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: rgb(17, 0, 170);
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-grow: 1;
  justify-content: center;
  font-weight: bold;
}

.nav-links a {
  text-decoration: none;
  color: black;
}

.header-actions {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

.header-actions a {
  text-decoration: none;
  color: black;
}

/* ✅ Mobile phone number default hidden */
.mobile-phone {
  display: none;
  color: white;
}

/* 📱 Mobile View Only */
@media screen and (max-width: 768px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .logo {
    font-size: 20px;
  }

  .mobile-phone {
    display: block;
    font-size: 16px;
    color: rgb(255, 255, 255);
  }

  .mobile-phone span {
    font-weight: bold;
  }
}



.hero-section {
  background-image: url('asset/img.jpg');
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  width: 102%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.search-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.tab {
  background-color: #eee;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  transition: background-color ;
}

.tab.active {
  color: red;
  border-bottom: 3px solid red;
}


.tab-icon {
  width: 42px;
  height: 22px;
  margin-bottom: 6px;
  object-fit: contain;
}

.tab span {
  font-size: 14px;
}
.form-area .options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.inputs input {
  padding: 10px;
  font-size: 14px;
  /* flex: 1 1 200px; */
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-btn {
  background-color: #c00;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

/* 📱 Mobile Responsive */
@media screen and (max-width: 768px) {
  .tabs {
    flex-direction: row;
  }

  .inputs {
    flex-direction: column;
  }

  .form-area .options {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }
  .hero-section{
    margin-top: -2%;
  }
}



  .service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  border-radius: 8px;
}

.service-box {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
  display: block;
}

.service-title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

.plus-icon {
  font-size: 18px;
  color: #555;
}

/* Responsive for small devices */
@media (max-width: 600px) {
  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 80%;
    margin-bottom: 20px;
  }
}




.upgrade-banner {
  background-image: url('asset/1\ img.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
  margin: 0px 10px 0px 10px;
}

.upgrade-overlay {
  background: white;
  max-width: 360px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.upgrade-content .small-text {
  font-size: 12px;
  letter-spacing: 1px;
  color: #c00;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.upgrade-content h2 {
  font-size: 20px;
  color: #c00;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

.upgrade-btn {
  background: none;
  border: 2px solid #c00;
  color: #c00;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upgrade-btn:hover {
  background: #c00;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .upgrade-banner {
    justify-content: center;
    padding: 20px;
  }

  .upgrade-overlay {
    max-width: 100%;
  }

  .upgrade-content h2 {
    font-size: 18px;
  }
}



.container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 0px 20px 0px 20px;
      border-radius: 8px;
    }

    .card {
      width: 48%;
      background-color: white;
      border: 1px solid #ddd;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card-content {
      padding: 20px;
    }

    .card-content h4 {
      font-size: 12px;
      color: #555;
      margin-bottom: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .card-content h2 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .card-content button {
      background-color: red;
      color: white;
      padding: 10px 20px;
      border: none;
      font-size: 14px;
      cursor: pointer;
      margin-top: 10px;
    }

    @media screen and (max-width: 768px) {
      .card {
        width: 100%;
      }
    }



    .topics-section {
  padding: 40px 20px;
  background-color: #f3f4f6;
  font-family: sans-serif;
}

.topics-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.topic-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
}

.topic-card img {
  width: 100%;
  height: auto;
  display: block;
}

.topic-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin: 16px 16px 8px;
  color: #111;
}

.topic-card p {
  font-size: 14px;
  margin: 0 16px 16px;
  color: #333;
}

.topic-card a {
  display: block;
  margin: 0 16px 16px;
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}



.recommend-section {
  max-width: 400px;
  margin: auto;
}

.recommend-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.recommend-card {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  background-color: #fff;
}

.recommend-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.recommend-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.recommend-card a {
  font-size: 14px;
  color: #004080;
  text-decoration: none;
}

.recommend-card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .recommend-section {
    padding: 10px;
  }

  .recommend-card {
    padding: 10px;
  }

  .recommend-section h2 {
    font-size: 20px;
    text-align: center;
  }
}



.footer {
  background-color: #d71900;
  width: 102%;
  color: white;
  padding: 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-section .footer-toggle {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ffffff55;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.footer-links li {
  margin: 5px 0;
  font-size: 14px;
  cursor: pointer;
}

.footer-icons h4 {
  margin-top: 10px;
  font-size: 16px;
}

.icons {
  font-size: 20px;
  margin: 10px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  margin-top: 20px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile view toggle behavior */
@media (max-width: 768px) {
  .footer-links {
    display: none;
  }

  .footer-toggle.open + .footer-links {
    display: block;
  }
}



.footer-icons {
  text-align: left;
  margin-top: 30px;
  padding-left: 20px; /* optional: for spacing from edge */
}

.icons {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-icon {
  height: 24px;
  width: auto;
}





 .footer-cont {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-top: 5px solid red;
      background-color: white;
      flex-wrap: wrap;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 24px;
      color: #d0021b;
      font-weight: bold;
    }

    .logo-arrow {
      font-size: 26px;
      transform: rotate(-20deg);
    }

    .group-info {
      font-size: 14px;
      color: #555;
    }

    .group-info b {
      color: #333;
    }

    .alliance-info {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #222;
      gap: 8px;
    }

    .alliance-info img {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 768px) {
      .footer-cont {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
    }










 
  
  /* Pop-up Button */
.open-popup-btn {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-popup-btn:hover {
  background: #0056b3;
}

/* Pop-up Modal */
.popup {
  padding: 20px;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}

.popup-content {
  background: rgb(255, 255, 255);
  margin-top: 60px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transform: scale(0.8); /* Initially small */
  transition: transform 0.3s ease-in-out;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup.show .popup-content {
  transform: scale(1); /* Zoom-in effect */
}
.close-btn {
  color: black;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Typography & Layout */
h2 {
  color: #003580;
  margin-bottom: 10px;
}

.subtext {
  color: #e74c3c;
  font-size: 14px;
}

.phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #003580;
}

.agent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px 0;
}

.note {
  font-size: 12px;
  color: gray;
}

/* Call Button */
.call-btn {
  display: block;
  width: 100%;
  background: #003580;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  border: 3px solid #222;
}



  


@media (max-width: 768px) {
  .open-popup-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    background-color: blue;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
  .popup {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-content {
    width: 100%;  /* Adjust width for mobile */
    max-width: 370px;  /* Max limit */
    padding: 20px;
    max-height: none;
}
.popup.show .popup-content {
    transform: scale(1);
}
} 


.call-container {
    position: relative;
    display: inline-block;
}
/* Vibrating Circles */
.ring-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 140, 221, 0.5);
    transform: translate(-50%, -50%);
    animation: ringEffect 1.5s infinite;
}

.ring-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.ring-circle:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

/* Ringing Animation */
@keyframes ringEffect {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}


  