/* =========================================================
   Root Variables
========================================================= */
:root {
  --font-primary: "Inter 18pt", sans-serif;
  --font-secondary: "Outfit", sans-serif;
  --color-primary: #680cf6;
  --color-secondary: #000000;
  --color-accent: #383838;
  --color-white: #ffffff;
}

/* =========================================================
   Global Reset
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
blockquote,
pre {
  margin: 0 !important;
}

/* 🔹 Hide calendar icon in date input (Chrome, Edge, Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

/* 🔹 Hide clock icon in time input (Chrome, Edge, Safari) */
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

/* 🔹 Optional: make sure the cursor still looks normal */
input[type="date"],
input[type="time"] {
  cursor: text;
}


/* =========================================================
   Container & Layout
========================================================= */
.container {
  width: 100%;
  max-width: 1350px !important;
  padding: 0 20px !important;
}
.container-xl {
  width: 100%;
  max-width: 1500px !important;
  padding: 0 20px !important;
}
.row {
  margin: 0 -15px !important;
  padding: 0 !important;
}
.row > * {
  padding: 0 15px !important;
}

/* =========================================================
   Links & Lists
========================================================= */
a {
  display: inline-block;
  text-decoration: none !important;
  text-transform: capitalize;
}
ul,
ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

/* =========================================================
   Utility Classes - Spacing
========================================================= */
.px-20 {
  padding: 0 20px;
}
.ps-20 {
  padding: 0 0 0 20px;
}
.pe-20 {
  padding: 0 20px 0 0;
}
.p-10 {
  padding: 10px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-40 {
  padding: 40px !important;
}
.py {
  padding: 120px 0;
}
.pt {
  padding: 120px 0 0 0;
}
.pb {
  padding: 0 0 120px 0;
}
.mx-20 {
  margin: 0 20px;
}
.me-20 {
  margin: 0 20px 0 0;
}
.ms-20 {
  margin: 0 0 0 20px;
}
.w-fit {
  width: fit-content !important;
}

/* Gap Utilities */
.gap-6 {
  gap: 6px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-13 {
  gap: 13px;
}
.gap-16 {
  gap: 16px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-60 {
  gap: 60px;
}
.gap-64 {
  gap: 64px;
}
.gap-x-30 {
  gap: 30px 0;
}

/* =========================================================
   Buttons
========================================================= */
.theme-btn {
  display: inline-block;
  width: fit-content;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 28px;
  transition: all 0.3s ease;
}
.theme-btn:hover {
  background: var(--color-white); /* invert colors on hover */
  color: var(--color-primary);
  transform: translateY(-3px); /* slight lift effect */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* subtle shadow */
}
.theme-btn:hover svg path {
  fill: var(--color-primary); /* change SVG color on hover */
}
/* =========================================================
   Typography Utilities
========================================================= */
.tf-2xl {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 5.25rem;
}
.tf-xl {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.75rem;
}
.tf-lg {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
}
.tf-md {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
}
.tf-base {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
}
.tf-sm {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

/* =========================================================
   Text Colors
========================================================= */
.text-primary {
  color: var(--color-primary) !important;
}
.text-secondary {
  color: var(--color-secondary) !important;
}
.text-accent {
  color: var(--color-accent) !important;
}
.text-white {
  color: var(--color-white) !important;
}

/* =========================================================
   Header & Navigation
========================================================= */
.header {
  margin-bottom: -132px;
}

.header[data-aos] {
  transform: none !important;
  opacity: 1 !important;
}

  /* Custom active menu style */
  .menu-active {
    color: #ff6600; /* your custom highlight color */
    border-bottom: 2px solid #fff !important; /* optional underline */
  }

  /* Hover effect (optional) */
  .navbar-nav a {
    border-bottom: 2px solid transparent; /* optional underline */

  }



/* Floating Bar */
.floating-bar {
  background-color: #15121b;
  height: 32px;
}
.social-links a:not(:last-child) {
  border-right: 1px solid #ffffff50;
}

/* Navigation Header */
.nav-header {
  background: linear-gradient(
    90deg,
    rgba(104, 12, 246, 1) 80%,
    rgba(52, 0, 132, 1) 15%
  );
  height: 100px;
  width: 100%;
}
.navbar-nav {
  gap: 40px;
}
.nav-cta {
  background: #340084;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
  height: 100px;
}

/* Offcanvas Menu */
.offcanvas {
  transform: none !important;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  top: 132px !important;
  height: fit-content !important;
  padding: 0 !important;
}
.offcanvas.show {
  opacity: 1;
}
.offcanvas-body {
  padding: 0 !important;
}
.offcanvas-body li {
  border-bottom: 1px solid #ffffff2f;
  padding: 10px 20px;
  background-color: #15121b;
}
.offcanvas-body li:hover {
  background-color: var(--color-primary);
}

.navbar-toggler {
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 5px;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.call-now {
  gap: 12px;
}
.phone-details {
  gap: 6px;
}
.phone-details .call-title {
  font-weight: 700;
  text-transform: capitalize;
}
.phone-details .call-link {
  font-weight: 500;
  line-height: 1;
}

/* =========================================================
   Hero Section
========================================================= */
.hero-section {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0)
    ),
    url("../images/hero-banner-img.webp") no-repeat center top/cover;
  height: 100vh;
}
.prefix {
  position: relative;
  padding-left: 21px;
  font-weight: 500;
}
.prefix::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../images/prefix-icon.svg");
}
.hero-content {
  width: 775px;
  gap: 16px;
  margin-top: 132px;
}
.hero-content .theme-btn {
  margin-top: 16px;
}

/* =========================================================
   About Section
========================================================= */
.about {
  background: url(../images/about-banner-overlay.png) no-repeat center
    center/cover;
}
.about-left-img {
  border-radius: 10px;
}
.about-check-list {
  gap: 10px;
}
.about-check-list p {
  font-weight: 600;
}
.or {
  font-weight: 700;
  font-style: italic;
}
.dial-link {
  font-weight: 900;
}
.btn-group {
  margin-top: 24px;
}
.about-right-description {
  width: 100%;
  max-width: 660px;
}

/* =========================================================
   Services Section
========================================================= */
.services {
  background-color: #f6f0ff;
}
.services .row > * {
  padding: 0 15px !important;
}
.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 40px 56px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: linear-gradient(90deg, #8a2be2, #5b00ff);
}

/* =========================================================
   Why Choose Us
========================================================= */
.why-choose {
  position: relative;
}
.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/wc-overlay-bg.png") no-repeat top center/contain;
  opacity: 1;
  z-index: -1;
}
.why-choose::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/wc-second-overlay-bg.png") no-repeat bottom
    center/contain;
  opacity: 1;
  z-index: -1;
}
.choose-card {
  height: 100%;
}
.choose-icon {
  width: 85px;
  height: 85px;
  background: var(--color-primary);
  border-radius: 50px;
}
.choose-details {
  width: 350px;
}

/* =========================================================
   Team Section
========================================================= */
.our-team {
  background-color: #f6f0ff;
}
.team-card {
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  width: 466px;
}
.team-img img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.team-socials-links a {
  width: 42px;
  height: 42px;
  background-color: #680cf61a;
  border-radius: 50px;
  margin-bottom: 14px;
}
.team-socials-links i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
}

/* =========================================================
   Swiper
========================================================= */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-wrapper {
  padding-bottom: 52px;
}
.swiper-pagination {
  line-height: 0;
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  background: var(--color-primary);
  width: 12px;
  height: 12px;
}

/* =========================================================
   Achievements
========================================================= */
.our-achievements {
  background-color: #181818;
}
.achievement-grid {
  position: relative;
}
.achievement-grid::before,
.achievement-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.achievement-grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.achievement-grid::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.achievement-card {
  text-align: center;
  padding: 40px 20px;
}

/* Testimonials */
.our-testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/testimonial-bg-overlay.png") no-repeat center
    center/cover;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.testimonial-card {
  border-radius: 10px;
}

/* =========================================================
   Contact / Get in Touch
========================================================= */
.get-in-touch {
  background-color: #181818;
}
.contact-form {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #ffffff1a;
}
.form-control {
  padding: 16px 20px !important;
  border: 1px solid #ffffff1a !important;
  border-radius: 10px !important;
  background-color: #ffffff0d !important;
  color: #9f9f9f !important;
}
.contact-form .form-control:focus {
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
  background-color: #ffffff0d !important;
  color: #ffffff !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9f9f9f !important;
  font-weight: 500;
}
form button {
  border: none;
  outline: none;
}

/* =========================================================
   Footer
========================================================= */
.footer-section {
  background: url("../images/footer-bg.jpg") no-repeat center center/cover;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background-color: #680cf633;
  border-radius: 50px;
}
.footer-location {
  max-width: 215px;
  display: inline-block;
}
.footer-bottom {
  border-top: 1px solid #ffffff33;
}
.footer-bottom a:hover {
  color: var(--color-primary) !important;
}
.privacy-policy {
  border-right: 2px solid #fff;
  padding-right: 17px;
}

/* =========================================================
   Media Queries
========================================================= */
/* ===== Media Queries ===== */
@media (min-width: 992px) and (max-width: 1250px) {
  .about-right {
    padding-left: 30px !important;
  }
} /* Small Desktop / Laptop: max-width 1366px */
@media (max-width: 1445px) {
  .choose-details {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 1366px) {
  .py {
    padding: 100px 0;
  }
  .pt {
    padding: 100px 0 0 0;
  }
  .pb {
    padding: 0 0 100px 0;
  }
  .navbar-nav {
    gap: 24px;
  }
  .tf-2xl {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
  .tf-xl {
    font-size: 2.75rem;
    line-height: 3.25rem;
  }
  .why-choose::after {
    display: none;
  }
} /* Tablet: max-width 1024px */
@media (max-width: 1024px) {
  .py {
    padding: 70px 0;
  }
  .pt {
    padding: 70px 0 0 0;
  }
  .pb {
    padding: 0 0 70px 0;
  }
  .tf-2xl {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .tf-xl {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
  .tf-lg {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .hero-section {
    height: 730px;
  }
}
@media (max-width: 991px) {
  .nav-header {
    min-height: 100px;
    height: 100%;
  }
  .gap-md-30 {
    gap: 30px;
  }
  .gap-md-20 {
    gap: 20px;
  }
  .gap-md-16 {
    gap: 16px;
  }
  .gap-md-13 {
    gap: 13px;
  }
  .gap-md-10 {
    gap: 10px;
  }
} /* Mobile: max-width 767px */
@media (max-width: 767px) {
  .py {
    padding: 50px 0;
  }
  .pt {
    padding: 50px 0 0 0;
  }
  .pb {
    padding: 0 0 50px 0;
  }
  .theme-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
  .tf-2xl {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
  .tf-xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .d-sm-hide {
    display: none !important;
  }
  .nav-header {
    background: var(--color-primary);
  }
  .offcanvas {
    top: 100px !important;
  }
  .header {
    margin-bottom: -100px;
  }
  .hero-content {
    margin-top: 100px;
  }
  .hero-section {
    height: 700px;
  }
  .hero-content .theme-btn {
    margin-top: 6px;
  }
  .gap-sm-30 {
    gap: 30px;
  }
  .gap-sm-20 {
    gap: 20px;
  }
  .gap-sm-16 {
    gap: 16px;
  }
  .gap-sm-12 {
    gap: 12px;
  }
  .gap-sm-10 {
    gap: 10px;
  }
  .gap-sm-6 {
    gap: 6px;
  }
  .gap-sm-13 {
    gap: 13px;
  }
  .testimonial-swiper {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .achievement-grid::after,
  .achievement-grid::before {
    display: none;
  }
  .achievement-card {
    padding: 30px 10px;
  }
}
@media (max-width: 480px) {
  .theme-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .dial-link {
    font-size: 12px;
  }
  .gap-xs-12 {
    gap: 12px;
  }
  .gap-xs-10 {
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .nav-header {
    background: linear-gradient(
      90deg,
      rgba(104, 12, 246, 1) 90%,
      rgba(52, 0, 132, 1) 10%
    );
    height: 100px;
    width: 100%;
  }
}
