@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap");

/* ================= Global ================= */
* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
  color: white;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  background: #323335;
  font-family: 'Nunito', sans-serif;
}

/* ================= Fonts ================= */
@font-face {
  font-family: Antro_Vectra;
  src: url('Antro_Vectra.otf');
}

h1, h2 {
  font-family: Antro_Vectra;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-align: center;
  margin-top: 2rem;
}

/* ================= Headings ================= */
.heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1rem 0;
}

.heading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.2rem;
  width: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgb(255, 206, 27),
    rgb(255, 206, 27) 10px,
    black 10px,
    black 20px
  );
  z-index: -1;
  border-radius: 5px;
}

.heading span {
  font-size: clamp(2rem, 3vw, 3rem);
  color: rgb(255, 206, 27);
  background: #000;
  padding: 0.5rem 1.5rem;
  border: 0.1rem solid #aaa;
  border-radius: 0.5rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* ================= Buttons ================= */
.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: clamp(0.8rem, 1vw, 1rem) clamp(2rem, 3vw, 2.8rem);
  background: rgb(255, 206, 27);
  color: black;
  cursor: pointer;
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  border-radius: 5px;
}

.btn:hover {
  transform: scale(1.1);
}

/* ================= Header ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5%;
  z-index: 10000;
  background: #181818;
}

.logo { margin-left: 25px; }
.logo img { height: 120px; width: auto; display: block; }
.navbar { display: flex; gap: 18px; align-items: center; }
@media (max-width: 768px) { .logo img { height: 70px; } .navbar { display: none; } }
.header .logo {
  font-weight: bolder;
  color: #fff;
  font-size: clamp(2.5rem, 3vw, 3rem);
}

.header .logo span {
  color: rgb(125, 224, 51);
}

.header .navbar a {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: clamp(1.5rem, 1.5vw, 1.7rem);
  color: #fff;
}

.header .navbar a:hover {
  background: rgb(165, 147, 29);
}

#menu-btn {
  font-size: clamp(2.5rem, 3vw, 3rem);
  color: #fff;
  cursor: pointer;
  display: none;
}

/* ================= Mobile Nav ================= */
.mobile-nav {
  display: none;
  justify-content: space-around;
  align-items: center;
  background: #111;
  padding: 0.6rem 0;
  border-top: 1px solid #333;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-nav .nav-item {
  flex: 1;
  text-align: center;
  color: #aaa;
  font-size: 0.75rem;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-nav .nav-item i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.mobile-nav .nav-item.active,
.mobile-nav .nav-item:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .navbar { display: none; }
  .mobile-nav { display: flex; }
  .logo img { height: 70px; }
}

/* ================= Hero Section ================= */
.hero, .home-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero img, .home-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.home-slider .swiper-slide .content {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero, .home-slider { height: 60vh; }
  .home-slider .swiper-slide .content { top: 42%; }
}

@media (max-width: 768px) {
  .hero, .home-slider { height: 50vh; }
  .home-slider .swiper-slide .content { top: 38%; }
}

/* ================= Swiper ================= */
.swiper-slide {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center center !important;
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.swiper-pagination-bullet {
  height: 2rem;
  width: 2rem;
  background: #fff;
  border-radius: 4px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: lavender;
}

/* ================= About ================= */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 8rem);
  justify-content: center;
  align-items: center;
}

.about .image,
.about .swiper {
  flex: 1 1 42rem;
  max-width: 90%;
}

.about .image img {
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
}

.about .content {
  flex: 2;
  padding-left: 2rem;
  max-width: 90%;
}

.about .content span {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: rgb(255, 206, 27);
}

.about .content .title {
  font-size: clamp(2rem, 4vw, 4rem);
  color: #fff;
  margin-top: 0.5rem;
}

.about .content p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: #aaa;
  padding: 1rem 0;
  line-height: 1.8;
}

.about .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.about .content .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
}

.about .content .box-container .box h3 i {
  padding-right: 1.5rem;
  color: rgb(255, 206, 27);
}

/* ================= Features ================= */
.features .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.features .box-container .box {
  background: #141414;
  flex: 1 1 300px;
  margin: 10px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.features .box-container .box:hover .image img {
  transform: scale(1.1);
}

.features .box-container .box .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features .box-container .box .content {
  padding: 2rem;
  text-align: center;
}

.features .box-container .box .content img {
  height: 9rem;
  margin-bottom: 1rem;
  filter: invert(1);
}

.features .box-container .box .content h3 {
  font-size: 2rem;
  color: rgb(255, 206, 27);
}

.features .box-container .box .content p {
  line-height: 2;
  font-size: 1.5rem;
  color: #aaa;
  padding: 1rem 0;
}

/* ================= Pricing ================= */
.pricing {
  padding: 4rem 2rem;
  background: #141414;
  text-align: center;
}

.plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.plan h3 {
  color: #ffcc00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.plan .price {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.plan .price span {
  color: #ffcc00;
  font-weight: bold;
}

.plan .list {
  margin: 1rem 0;
  text-align: left;
  padding: 0 1rem;
}

.plan .list p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.plan .list i {
  color: #ffcc00;
  margin-right: 0.5rem;
}

.plan-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.plan-buttons a.btn {
  background: #ffcc00;
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.plan-buttons a.btn:hover { background: #ffdd33; }

.plan-buttons a.read-more {
  color: #ffcc00;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ================= Footer ================= */
.modern-footer {
  background: #181818;
  color: #f5f5f5;
  padding: 60px 20px 40px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-top h4 {
  color: #ffcc00;
  margin-bottom: 16px;
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.footer-links a,
.footer-hours p,
.footer-contact p,
.footer-social a {
  display: block;
  color: #ddd;
  margin-bottom: 12px;
  font-size: 1.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover { color: #ffcc00; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.footer-social a i { font-size: 1.4rem; }
.footer-social a:hover { transform: scale(1.2); }

.footer-bottom {
  border-top: 1px solid #262628;
  text-align: center;
  padding-top: 18px;
  font-size: 1.1rem;
  color: #7a7a7a;
}

/* ================= Modal ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  color: #fff;
  text-align: left;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

.close {
  color: #ff5555;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
}

/* ================= Responsive ================= */
@media (max-width: 1440px) { .home .slide .content h3 { font-size: 4.5rem; } }
@media (max-width: 1024px) { .heading span { font-size: 2.5rem; } .home .slide .content h3 { font-size: 3.5rem; } }
@media (max-width: 768px) {
  .about { flex-direction: column; padding: 2rem 1rem; }
  .about .content { padding-left: 0; }
  .features .box-container .box,
  .pricing .plan { flex: 1 1 100%; }
  .plan { width: 90%; }
}
@media (max-width: 480px) {
  .home .slide .content h3 { font-size: 2.5rem; }
  .about .content .title { font-size: 1.8rem; }
  .about .content p { font-size: 1rem; }
  .btn { padding: 0.6rem 1.5rem; font-size: 1.2rem; }
  .header .logo { font-size: 2rem; }
}

@font-face { font-family: Antro_Vectra; src: url('Antro_Vectra.otf'); }
  h1, h2 { font-family: Antro_Vectra; }
  h2 { font-size: 4em; }


  

  /* footer { background:#181818; color:#ccc; padding:2rem; display:flex; flex-wrap:wrap; gap:2rem; }
  footer a { color:#ffcc00; text-decoration:none; margin-right:1rem; display:inline-block; }
  footer div { flex:1 1 200px; } */
  .about-slider {
  width: 90%;          /* smaller width */
  max-width: 450px;    /* cap the width */
  margin: 20px auto;   /* center horizontally and add top/bottom spacing */
  border-radius: 12px;
  overflow: hidden;
}

.about-slider .swiper-slide img {
  width: 50%;
  /* height: 500px;         */
  object-fit: cover;     /* crop nicely */
  border-radius: 12px;
}

@media (max-width: 768px) {
  .about-slider {
    width: 95%;         /* almost full width for mobile */
  }
  .about-slider .swiper-slide img {
    height: 350px;      /* smaller height on mobile */
  }
}

/* HERO IMAGE — Trim and sharpen */
.home-slider .swiper-slide {
  position: relative;
  height: 65vh; /* tighter than before */
  overflow: hidden;
}

.home-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* trims from top for a tighter crop */
  display: block;
}

/* Text overlay positioning */
.home-slider .swiper-slide .content {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
}

/* Responsive height tweaks */
@media (max-width: 1024px) {
  .home-slider .swiper-slide {
    height: 55vh;
  }
}

@media (max-width: 768px) {
  .home-slider .swiper-slide {
    height: 45vh;
  }
  .home-slider .swiper-slide .content {
    top: 40%;
  }
}


/* ===== Pricing Section Fix ===== */
.pricing {
  padding: 4rem 2rem;
  background: #141414;
  text-align: center;
}

.pricing .information {
  margin-bottom: 2rem;
}

.plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.plan h3 {
  color: #ffcc00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.plan .price {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.plan .price span {
  color: #ffcc00;
  font-weight: bold;
}

.plan .list {
  margin: 1rem 0;
  text-align: left;
  padding: 0 1rem;
}

.plan .list p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.plan .list i {
  color: #ffcc00;
  margin-right: 0.5rem;
}

.plan-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.plan-buttons a.btn {
  background: #ffcc00;
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.plan-buttons a.btn:hover {
  background: #ffdd33;
}

.plan-buttons a.read-more {
  color: #ffcc00;
  text-decoration: none;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .plan {
    width: 90%;
  }
}

.modern-footer {
  background: #181818;
  color: #f5f5f5;
  padding: 60px 20px 40px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-top h4 {
  color: #ffcc00;
  margin-bottom: 16px;
  font-size: 2rem;  /* bigger headings */
  letter-spacing: 0.5px;
  font-weight: 700;
}

.footer-links a,
.footer-hours p,
.footer-contact p,
.footer-social a {
  display: block;
  color: #ddd;
  margin-bottom: 12px;
  font-size: 1.9rem;  /* bigger text for readability */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffcc00;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  width: 50px;  /* bigger icons */
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.footer-social a i {
  font-size: 1.4rem;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #262628;
  text-align: center;
  padding-top: 18px;
  font-size: 1.1rem;  /* bigger bottom text */
  color: #7a7a7a;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-links a,
  .footer-hours p,
  .footer-contact p,
  .footer-social a {
    font-size: 1.1rem;
  }
  .footer-social a {
    width: 45px;
    height: 45px;
  }
  .footer-social a i {
    font-size: 1.2rem;
  }
}

/* === Hero Slide Image Trim === */
.home-slider .swiper-slide img {
  width: 100%;
  height: 70vh;         /* good height for desktops */
  object-fit: cover;    /* crop, don’t stretch */
  object-position: top; /* trim from top */
  display: block;
}

/* Adjust text overlay placement */
.home-slider .swiper-slide .content {
  top: 45%; /* raise text a little */
}

/* === Responsive scaling for smaller screens === */
@media (max-width: 1024px) {
  .home-slider .swiper-slide img {
    height: 60vh; /* slightly shorter on tablets/laptops */
  }
}

@media (max-width: 768px) {
  .home-slider .swiper-slide img {
    height: 50vh; /* smaller height on phones */
  }
  .home-slider .swiper-slide .content {
    top: 40%; /* lift content higher for smaller screens */
  }
}
.hero {
  height: 75vh; /* adjust lower if you want more trimming */
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* trims from the top */
}

.about .content h2,h3 {
  font-size: 2.8rem;   /* try 2.8rem for a bold hero look */
  font-weight: 700;    /* makes it stand out */
  text-transform: uppercase;
  color: #fff;         /* adjust if your background is light */
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffcc00
}

/* optional — scale down on smaller screens */
@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

/* Hide scrollbar on mobile view but keep scroll functionality */
@media (max-width: 768px) {
  html, body {
    -ms-overflow-style: none;  /* Hide scrollbar in IE/Edge */
    scrollbar-width: none;     /* Hide scrollbar in Firefox */
    overflow-y: scroll;        /* Allow scroll but hide scrollbar */
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;             /* Hide scrollbar in Chrome, Safari, Opera */
  }
}

