body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
/* LOGO */
.logo-link {
  text-decoration: none
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 60px
}

.brand-name {
  font-size: 26px;
  font-weight: 800;
  color: #000e61;
  display: block;
}

.brand-sub {
  font-size: 24px;
  font-weight: 800;
  color: #ff1f01;
  display: block;
}




/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.social-icons .fb {
  background: #1877f2;
}

.social-icons .tw {
  background: #000;
}

.social-icons .in {
  background: #0a66c2;
}

.social-icons .ig {
  background: radial-gradient(circle at 30% 30%,
      #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-icons .pt {
  background: #e60023;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ================= CONTACT ================= */
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone {
  font-weight: 600;
  color: #000;
}

.phone i {
  color: #ff1f01;
  margin-right: 5px;
}

.btn-touch {
  background: #ff1f01;
  color: #fff;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover Lift + Glow */
.btn-touch:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 31, 1, 0.45);
}

/* Shine animation */
.btn-touch::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
}

.btn-touch:hover::before {
  left: 100%;
}

/* Subtle pulse (attract attention) */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 31, 1, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 31, 1, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 31, 1, 0);
  }
}

.btn-touch {
  animation: pulse 2.8s infinite;
}


.lang-box {
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  display: inline-block;
  font-size: 13px;
}

/* Google dropdown */
#google_translate_element select {
  font-size: 13px;
  padding: 4px 6px;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

/* Keep "Powered by Google Translate" visible */
.goog-te-gadget {
  font-family: Arial, sans-serif;
  color: #555;
}

/* Remove top floating bar only */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}



/* ================= NAVBAR ================= */
.main-nav {
  background: #000e61;
  height: 75px;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;

}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 15px 18px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.menu li a:hover {
  background: #ff1f01;
}

/* ================= DROPDOWN BASE ================= */
.dropdown {
  position: relative;
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow rotate */
.dropdown i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow rotate on hover */
.dropdown:hover i {
  transform: rotate(180deg);
}

/* ================= DROPDOWN LINKS ================= */
.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f8f8f8;
  color: #ff1f01;
  padding-left: 22px;
}

/* Divider (optional) */
.dropdown-menu li+li {
  border-top: 1px solid #f1f1f1;
}


/* ================= OVERLAY ================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.search-overlay.active {
  display: flex;
}

/* ================= PANEL ================= */
.search-panel {
  background: #fff;
  width: 90%;
  max-width: 680px;
  padding: 32px 36px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CLOSE ================= */
.search-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f2f2f2;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search {
  border: 1px solid white;
  border-radius: 25px;
  padding: 10px;
  background-color: red;
  width: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.nav-search i,
span {
  color: #fff;
}

.nav-search span {
  color: #fff;
  font-weight: 700;
}

.search-close i {
  font-size: 14px;
  color: #444;
}

.search-close:hover {
  background: #ff1f01;
  color: #fff;
}

/* ================= FORM ================= */
.search-form {
  display: flex;
  gap: 14px;
}

.search-form input {
  flex: 1;
  padding: 16px 18px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.search-form input:focus {
  border-color: #ff1f01;
  box-shadow: 0 0 0 3px rgba(255, 31, 1, 0.15);
}

/* ================= BUTTON ================= */
.search-btn {
  background: #ff1f01;
  color: #fff;
  border: none;
  padding: 0 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn:hover {
  background: #e01800;
}


/* ===== REMOVE UNDERLINE FROM LOGO TEXT ONLY ===== */
.logo-link,
.logo-link * {
  text-decoration: none !important;
  border-bottom: none !important;
}

.brand-name,
.brand-sub {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* If underline coming from pseudo elements */
.brand-name::after,
.brand-name::before,
.brand-sub::after,
.brand-sub::before {
  content: none !important;
  display: none !important;
}


@media (max-width: 1024px) {

  .header-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .social-icons {
    order: 3;
  }

  .header-contact {
    order: 2;
  }
}


@media (max-width: 768px) {

  /* Top header stack */
  .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-wrap {
    justify-content: center;
  }

  .social-icons {
    margin-top: 8px;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
  }

  /* Navbar menu wrap */
  .nav-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu li a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .nav-search {
    margin-top: 10px;
  }
}


@media (max-width: 480px) {

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 20px;
  }

  .logo-wrap img {
    height: 50px;
  }

  .nav-search {
    width: auto;
    padding: 8px 14px;
  }
}



/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 520px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Nav arrows */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 10;
}

.slide-nav:hover {
  background: #ff1f01;
}

.slide-nav.prev {
  left: 15px;
}

.slide-nav.next {
  right: 15px;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.slide-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slide-dots .dot.active {
  opacity: 1;
  background: #ff1f01;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .hero-slider {
    height: 60vh;
  }

  .slide-content {
    left: 6%;
    right: 6%;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 15px;
  }
}




/* ================= ABOUT PRO SECTION ================= */
.about-pro {
  padding: 90px 0;
  background: linear-gradient(180deg, #f6f8fb, #ffffff);
}

.about-pro-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.about-pro-left {
  flex: 1;
  position: relative;
}

.about-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.about-image-box img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-box:hover img {
  transform: scale(1.05);
}

/* STATS */
.about-stats {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #000e61;
  border-radius: 12px;
  padding: 18px 28px;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.stat {
  text-align: center;
  color: #fff;
}

.stat h3 {
  font-size: 26px;
  margin-bottom: 4px;
  color: #ff1f01;
}

.stat p {
  font-size: 13px;
  opacity: 0.9;
}

/* RIGHT CONTENT */
.about-pro-content {
  flex: 1;
}

.about-badge {
  display: inline-block;
  background: #ff1f01;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 14px;
}

.about-pro-content h2 {
  font-size: 38px;
  color: #000e61;
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-pro-content h2 span {
  color: #ff1f01;
}

.about-pro-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.about-pro-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* FEATURES */
.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.about-features i {
  color: #ff1f01;
  margin-right: 8px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
  .about-pro-flex {
    gap: 40px;
  }

  .about-pro-content h2 {
    font-size: 32px;
  }
}

@media(max-width:768px) {
  .about-pro-flex {
    flex-direction: column;
  }

  .about-pro-content {
    text-align: center;
  }

  .about-features {
    display: inline-block;
    text-align: left;
  }

  .about-stats {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

/* FEATURES */
.intro-features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.feature-no {
  position: absolute;
  top: -18px;
  left: 30px;
  background: #ff1f01;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature-box h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

.feature-box p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* ================= FEATURES RESPONSIVE ================= */

/* ---------- Large Tablets / Small Laptops ---------- */
@media (max-width: 1024px) {
  .intro-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 768px) {
  .intro-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .feature-box {
    padding: 28px;
  }

  .feature-no {
    left: 24px;
    top: -16px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .feature-box h4 {
    font-size: 17px;
  }

  .feature-box p {
    font-size: 14px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  .intro-features {
    gap: 24px;
    margin-top: 40px;
  }

  .feature-box {
    padding: 24px 20px;
  }

  .feature-no {
    left: 20px;
    top: -14px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13.5px;
    line-height: 1.55;
  }
}


/* ===== COMPANY NAME LINK STYLE ===== */
.company-link {
  color: #000e61;
  text-decoration: none;
}

.company-link strong {
  color: #000e61;
  font-weight: 700;
}

/* Optional hover effect (professional) */
.company-link:hover {
  color: #ff1f01;
}

.company-link:hover strong {
  color: #ff1f01;
}


/* ================= ULTRA PREMIUM FOOTER ================= */
.premium-footer {
  background:
    radial-gradient(circle at top right, rgba(255, 31, 1, 0.15), transparent 40%),
    linear-gradient(135deg, #000e61, #020c5a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft top glow line */
.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff1f01, transparent);
}

/* ================= TOP STRIP ================= */
.footer-top-strip {
  background: linear-gradient(135deg, #ff1f01, #ff3d20);
  padding: 35px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.footer-top-strip h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.footer-cta-btn {
  background: #fff;
  color: #ff1f01;
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.footer-cta-btn:hover {
  background: #000e61;
  color: #fff;
  transform: translateY(-3px);
}

/* ================= MAIN GRID ================= */
.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.3fr;
  gap: 55px;
  padding: 80px 0 70px;
}

/* ================= BRAND ================= */
.footer-brand h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.footer-brand .logo-wrap {
  align-items: flex-start;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 22px;
}

/* ================= SOCIAL ================= */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: 0.35s;
}

.footer-social a:hover::after {
  opacity: 1;
}

.footer-social a:hover {
  background: #ff1f01;
  transform: translateY(-6px) scale(1.05);
}

/* ================= TITLES ================= */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  font-weight: 700;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff1f01;
  display: block;
  margin-top: 8px;
}

/* ================= LINKS ================= */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14.5px;
  transition: 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "›";
  margin-right: 6px;
  color: #ff1f01;
  opacity: 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ================= CONTACT ================= */
.footer-contact p {
  font-size: 14.5px;
  margin-bottom: 12px;
  color: #ddd;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact i {
  color: #ff1f01;
  margin-top: 3px;
}

.footer-mini-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 28px;
  border-radius: 30px;
  background: #ff1f01;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(255, 31, 1, 0.45);
}

.footer-mini-btn:hover {
  background: #fff;
  color: #ff1f01;
  transform: translateY(-3px);
}

/* ================= BOTTOM ================= */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13.5px;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    margin: 8px auto 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

/* ================= FOOTER RESPONSIVE ================= */

/* ---------- Large Tablets / Small Laptops ---------- */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 600px;
  }
}

/* ---------- Mobile Landscape ---------- */
@media (max-width: 768px) {
  .footer-top-strip {
    padding: 28px 16px;
  }

  .footer-top-strip h3 {
    font-size: 20px;
  }

  .footer-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 55px 0;
    gap: 45px;
  }

  .footer-brand .logo-wrap {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto 22px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    margin: 8px auto 0;
  }

  .footer-contact p {
    justify-content: center;
  }
}

/* ---------- Mobile Portrait ---------- */
@media (max-width: 480px) {
  .footer-top-strip h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .footer-cta-btn {
    width: 100%;
    max-width: 260px;
  }

  .footer-brand h2 {
    font-size: 26px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 14px;
  }

  .footer-mini-btn {
    width: 100%;
    max-width: 240px;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }
}

/* ================= FLOATING BUTTONS ================= */

.floating-left {
  position: fixed;
  left: 20px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.call-btn {
  background: #25d366;
}

.mail-btn {
  background: #ff1f01;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* ================= SCROLL TOP ================= */

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ff1f01;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.scroll-top:hover {
  transform: translateY(-6px);
}

/* ================= MAIL MODAL ================= */

.mail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.mail-overlay.active {
  display: flex;
}

.mail-modal {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  animation: popup 0.35s ease;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f2f2f2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.mail-modal h3 {
  margin-bottom: 6px;
  color: #000e61;
}

.mail-modal p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.mail-modal form input,
.mail-modal form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.mail-modal textarea {
  resize: none;
  height: 90px;
}

.mail-modal form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #ff1f01;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.mail-modal form button:hover {
  background: #000e61;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .floating-left {
    left: 14px;
    bottom: 90px;
  }

  .scroll-top {
    right: 14px;
  }
}

/* ================= FLOATING BUTTONS RESPONSIVE ================= */

/* ---------- Tablets & Small Screens ---------- */
@media (max-width: 992px) {
  .floating-left {
    left: 16px;
    bottom: 100px;
    gap: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .scroll-top {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .floating-left {
    left: 12px;
    bottom: 80px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .scroll-top {
    right: 12px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  /* Mail popup spacing */
  .mail-modal {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .mail-modal h3 {
    font-size: 20px;
  }

  .mail-modal p {
    font-size: 13.5px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {
  .floating-left {
    left: 10px;
    bottom: 70px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .mail-modal {
    max-width: 92%;
    padding: 26px 20px;
  }

  .mail-modal form input,
  .mail-modal form textarea {
    font-size: 13.5px;
  }

  .mail-modal form button {
    padding: 11px;
    font-size: 14px;
  }
}

/* ---------- Very Small Devices ---------- */
@media (max-width: 360px) {
  .float-btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .mail-modal h3 {
    font-size: 18px;
  }
}




/* ================= HERO FIXED BACKGROUND ================= */

.hero-fixed {
  position: relative;
  min-height: 420px;
  background-image: url("img/home-conact-bg.png");
  /* <-- YOUR IMAGE */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65));
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: auto;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 26px;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #000e61;
  /* pinkish button like image */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ff1f01;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {
  .hero-fixed {
    min-height: 360px;
    background-attachment: scroll;
    /* mobile fix */
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

@media(max-width:480px) {
  .hero-content h1 {
    font-size: 20px;
  }
}


.pro-categories-static {
  padding: 120px 0;
  background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

/* HEADER */
.cat-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.cat-pill {
  display: inline-block;
  padding: 8px 22px;
  background: #000e61;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.cat-head h2 {
  font-size: 38px;
  color: #000e61;
  margin-bottom: 12px;
}

.cat-head p {
  font-size: 15px;
  color: #555;
}

/* GRID */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
.cat-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.cat-card:hover {
  transform: translateY(-14px);
}

/* IMAGE */
.cat-img {
  position: relative;
  overflow: hidden;
}

.cat-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s;
}

.cat-card:hover img {
  transform: scale(1.15);
}

/* BADGE */
.cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000e61;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.cat-badge.red {
  background: #ff1f01;
}

/* INFO */
.cat-info {
  padding: 26px;
}

.cat-info h4 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #111;
}

.cat-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.cat-info a {
  display: inline-block;
  padding: 9px 26px;
  border-radius: 30px;
  background: #000e61;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.cat-info a:hover {
  background: #ff1f01;
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-head h2 {
    font-size: 28px;
  }
}



.city-coverage {
  padding: 80px 0;
  background: linear-gradient(135deg, #000e61, #020c5a);
}

.city-head {
  text-align: center;
  margin-bottom: 45px;
}

.city-head h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 8px;
}

.city-head p {
  color: #cdd4ff;
  font-size: 15px;
}

/* GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* CITY ITEM */
.city-item {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 16px 18px;
  text-align: center;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ICON */
.city-item::before {
  content: "📍";
  margin-right: 6px;
}

/* HOVER */
.city-item:hover {
  background: #ff1f01;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 31, 1, 0.45);
}

/* ACTIVE FEEL */
.city-item:active {
  transform: scale(0.96);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px) {
  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:992px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-item {
    font-size: 14px;
    padding: 14px;
  }
}

@media(max-width:420px) {
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-section {
  padding: 90px 0;
  background: #f6f9ff;
}

.faq-head {
  text-align: center;
  margin-bottom: 45px;
}

.faq-badge {
  display: inline-block;
  background: #ff1f01;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-head h2 {
  font-size: 34px;
  color: #000e61;
  margin-bottom: 8px;
}

.faq-head p {
  color: #666;
  font-size: 15px;
}

/* FAQ BOX */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 14px;
  transition: 0.3s;
  color: #ff1f01;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
}

.faq-answer p {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .faq-head h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }
}




.contact-section {
  padding: 100px 0;
  background: #f5f8ff;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.contact-info {
  padding-right: 30px;
}

.contact-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #ff1f01;
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-info h2 {
  font-size: 34px;
  color: #000e61;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.info-box i {
  font-size: 20px;
  color: #ff1f01;
  margin-top: 4px;
}

.info-box h5 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #000;
}

.info-box span {
  font-size: 14px;
  color: #555;
}

/* RIGHT FORM */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.contact-form-box h3 {
  font-size: 22px;
  color: #000e61;
  margin-bottom: 25px;
}

/* FORM */
.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff1f01;
  box-shadow: 0 0 0 3px rgba(255, 31, 1, 0.15);
}

/* BUTTON uses your existing .btn-touch */


@media(max-width:992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media(max-width:600px) {
  .contact-info h2 {
    font-size: 26px;
  }

  .contact-form-box {
    padding: 30px 22px;
  }
}