@font-face {
  font-family: ClarityCity;
  src: url(./fonts/clarity-city/TrueType/ClarityCity-Medium.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --side-padding: 120px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "ClarityCity";
  margin: 0;
  background-color: #f1f1f1;
}

.section-padding {
  padding-inline: var(--side-padding);
}

@media (max-width: 1200px) {
  :root {
    --side-padding: 20px;
  }
}

.topbar {
  background-color: #ff3737;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  padding-block: 6px;
}

.topbar i,
.topbar span {
  color: white;
}

.topbar strong {
  margin-right: 4px;
  font-weight: 500;
}

.location-btn {
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  padding: 4px 12px;
}

.navbar {
  background-color: #252525;
  padding-block: 16px;
}

.navbar-brand img {
  width: 201px;
  height: 30px;
  object-fit: contain;
}

.nav-center {
  flex-grow: 1;
  justify-content: center;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons i {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.btn-login {
  position: relative;
  overflow: hidden;
  background: #ed1c24;
  color: white;
  padding: 6px 18px;
  border: none;
  font-weight: 500;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  transition: left 0.4s ease;
}

.btn-login:hover::before {
  left: 0;
}

.btn-login:hover {
  color: #000;
}

.btn-login span {
  position: relative;
  z-index: 2;
}

.internal-login {
  color: white;
  text-decoration: none;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 15px;
}

.nav-link:hover {
  color: #ed1c24 !important;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #252525;
  color: white;
  z-index: 9999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

.mobile-menu-content {
  padding-top: 60px;
  padding-inline: var(--side-padding);
}

.mobile-menu-content ul {
  list-style: none;
  padding-left: 0;
}

.mobile-menu-content ul li {
  margin: 20px 0;
}

.mobile-menu-content ul li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.mobile-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}

.modal-title {
  text-align: center;
  width: 100%;
}

.or-text {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin: 20px 0;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.social-login-btn img {
  width: 20px;
  height: 20px;
}

.social-login-btn.mb-2 {
  margin-bottom: 12px;
}

/* login button modal */

.login-main-btn {
  background-color: #ff3737;
  color: #fff;
  border: none;
}

.login-main-btn:hover {
  background-color: #e03030;
  color: #fff;
}

/* Hero Section */

.hero-section {
  background: url("./images/Group\ 244.png") no-repeat center center/cover;
  height: 450px;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 48px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 350px;
  }
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 280px;
  }
  .hero-title {
    font-size: 28px;
  }
}

/* services sections */

.services-section {
  padding-block: 80px;
}

.service-card {
  width: 437px;
  height: 260px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 85px;
  height: 85px;
  object-fit: contain;
  flex-shrink: 0;
}

.see-more {
  font-weight: 600;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.see-more span {
  transition: transform 0.3s ease;
}

.see-more:hover {
  color: #ff3737;
}

.see-more:hover span {
  transform: translateX(6px);
}

.service-card .d-flex.flex-column {
  height: 100%;
  min-height: 100%;
}

.btn-liquid {
  position: relative;
  overflow: hidden;
  background: #ff3737;
  color: white;
  padding: 12px 28px;
  border: none;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.3s ease;
  z-index: 1;
}

.btn-liquid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  transition: left 0.4s ease;
}

.btn-liquid:hover::before {
  left: 0;
}

.btn-liquid:hover {
  color: #000;
}

.btn-liquid span {
  position: relative;
  z-index: 2;
}

@media (max-width: 1400px) and (min-width: 992px) {
  .service-card {
    height: auto;
    min-height: 280px;
    flex-direction: row;
    padding: 20px;
  }

  .service-card .d-flex.flex-column {
    justify-content: space-between;
  }

  .see-more {
    margin-top: auto;
    padding-top: 10px;
  }
}

@media (max-width: 576px) and (min-width: 320px) {
  .service-card {
    height: auto;
    min-height: 280px;
    flex-direction: row;
    padding: 20px;
  }

  .service-card .d-flex.flex-column {
    justify-content: space-between;
  }

  .see-more {
    margin-top: auto;
    padding-top: 10px;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #f1f1f1;
  padding-block: 100px;
}

.why-img {
  width: 100%;
  max-width: 667px;
  height: auto;
  border-radius: 8px;
}

.icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.why-choose-us-section h2 {
  font-size: 36px;
}

.why-choose-us-section .btn-liquid {
  background: #ff3737;
  padding: 12px 28px;
  color: white;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  display: inline-block;
}

.why-choose-us-section .btn-liquid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  transition: left 0.4s ease;
}

.why-choose-us-section .btn-liquid:hover::before {
  left: 0;
}

.why-choose-us-section .btn-liquid:hover {
  color: black;
}

.why-choose-us-section .btn-liquid span {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .why-img {
    max-width: 100%;
    height: auto;
  }

  .icon-img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section h2 {
    font-size: 28px;
  }

  .why-choose-us-section .btn-liquid {
    padding: 10px 20px;
  }
}

/* Packages Section */

.packages-section {
  padding: 80px 120px;
  background-color: #f1f1f1;
  text-align: center;
}

.section-tag {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.package-card {
  flex: 0 0 31%;
  max-width: 31%;
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #222;
}

.package-card p {
  font-size: 18px;
  color: #666;
}

.package-card hr {
  border: none;
  border-top: 3px solid #222;
  margin: 20px 0;
}

.package-card .price {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
  color: #000;
}

.package-card .duration {
  font-size: 16px;
  font-weight: 400;
  color: #555;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.package-card ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.package-card ul li::before {
  content: "✔";
  color: red;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.package-card button {
  width: 100%;
  padding: 14px;
  background-color: #f44336;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.package-card button:hover {
  background-color: #d32f2f;
}

/* Responsive */
@media (max-width: 1200px) {
  .package-card {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 60px 40px;
  }

  .package-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .packages-section {
    padding: 40px 20px;
  }

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

  .package-card {
    padding: 24px;
  }

  .package-card .price {
    font-size: 28px;
  }

  .package-card ul li {
    font-size: 15px;
  }
}

/* BRANDS */

.brand-section {
  padding: 60px 0;
  background-color: #f1f1f1;
}

.brand-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.brand-section .text-danger {
  color: #ff3434 !important;
}

.brand-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.brand-slider {
  display: flex;
  gap: 40px;
  animation: scrollBrand 30s linear infinite;
  width: max-content;
}

.brand-logo {
  background-color: #e3e3e3;
  padding: 20px;
  min-width: 200px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.brand-logo:hover {
  transform: scale(1.05);
}

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

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .brand-logo {
    min-width: 150px;
    height: 80px;
    padding: 15px;
  }

  .brand-section h2 {
    font-size: 22px;
  }

  .brand-slider {
    gap: 20px;
  }
}

/* FOOTER */

.site-footer {
  background-color: #2a2a2a;
  color: #fff;
  padding: 30px 120px 20px; /* Reduced padding */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  gap: 30px; /* Reduced gap */
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  font-size: 20px; /* Smaller font */
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #ff3c3c;
  font-size: 24px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

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

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

.footer-col a:hover {
  color: #fff;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.footer-form input {
  width: 100%;
  max-width: 450px;
  height: 44px; /* Shorter input */
  padding: 0 16px;
  font-size: 13px;
  background: transparent;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer-form button {
  width: 100%;
  max-width: 450px;
  height: 44px; /* Shorter button */
  background-color: #ff3c3c;
  color: #fff;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background-color: #f1f1f1;
  color: black;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
}

.social-links i {
  font-size: 14px;
  background-color: #ff3c3c;
  color: #fff;
  padding: 6px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 16px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 25px auto 0; /* Smaller top margin */
  border-top: 1px solid #ccc;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #ccc;
  margin-left: 16px;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-footer {
    padding: 26px 60px 18px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-form input,
  .footer-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 20px 15px;
  }

  .footer-logo {
    font-size: 18px;
  }
}
