* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  transition: 0.4s ease;
}

img {
  max-width: 100%;
}

:root {
  --primary: #00214a;
  --secondary: #123b6d;
  --accent: #f17f38;
  --accent-hover: #ff9a5c;
  --white: #ffffff;
  --light-bg: #f4f7fb;
  --dark-bg: #081420;
  --dark-card: #102235;
  --text: #1e1e1e;
  --text-light: #ffffff;
  --card-bg: #ffffff;
  --section-bg: #f4f7fb;
  --border-color: rgba(0, 0, 0, 0.06);

  --navbar-height: 70px;

  --section-padding: 80px;
}
.section-padding {
  padding: var(--section-padding) 0;
}

/* start-navbar */
.custom-navbar {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: 0.4s ease;
  background: transparent;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.custom-navbar.scrolled {
  background: rgba(0, 33, 74, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  top: 0;
  padding: 50px 0;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  transition: 0.3s;
}

.custom-navbar.scrolled .logo-img {
  width: 70px;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  padding: 10px 8px !important;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.4s;
}

.nav-link:hover::after {
  width: 100%;
}

.active-link {
  color: var(--accent) !important;
}
.active-link::after {
  width: 100%;
}
/* theme */
.theme-btn {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s ease;
  font-size: 18px;
}

.theme-btn:hover {
  background: var(--accent);
  transform: translateY(-4px) rotate(10deg);
  border-color: var(--accent);
}

.custom-navbar.scrolled .theme-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* dark-mode */

.dark-mode .theme-btn {
  background: rgba(255, 255, 255, 0.08);

  color: #fff;
}

.dark-mode .theme-btn:hover {
  background: var(--accent);
}

/* button */
.main-btn {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.4s;
  border: none;
  position: relative;
  overflow: hidden;
}

.main-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(241, 127, 56, 0.35);
}

.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

.main-btn:hover::before {
  left: 100%;
}

.secondary-btn {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.4s;
}

.secondary-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* end-navbar */
/* start-hero-section */

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(1, 17, 37, 0.58) 0%,
    rgba(0, 14, 31, 0.741) 35%,
    rgba(0, 16, 36, 0.259) 60%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: 40px;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  color: #fff;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: #fff;
  margin: 25px 0;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.section-title {
  padding-bottom: var(--section-padding);
}
.about-title {
  padding-bottom: 5px !important;
}

.section-title span {
  color: var(--accent);
  font-weight: 600;
}

.section-title h2 {
  font-size: 48px;
  color: var(--primary);
  margin-top: 10px;
}
.section-title h2.contact-heading {
  color: var(--white);
}
/* end-hero-section */

/* start-about-section */

.about-image img {
  width: 100%;
  border-radius: 30px;
}

.about-text {
  margin: 25px 0;
  line-height: 1.9;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  color: var(--accent);
}

.stats-wrapper {
  margin-top: 80px;
}

.stats-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.stats-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stats-card i {
  font-size: 35px;
  color: var(--accent);
  transition: 0.4s;
}

.stats-card:hover i {
  transform: scale(1.2);
}

.stats-card h3 {
  font-size: 50px;
  margin: 15px 0;
}
/* =========================================================
REAL GALLERY
========================================================= */

.real-gallery {
  position: relative;
  margin-top: 100px;
}

.real-gallery::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(rgba(241, 127, 56, 0.18), transparent);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: -1;
}

/* =========================================================
GRID
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  grid-auto-rows: 160px;
  gap: 24px;
}

/* =========================================================
CARD
========================================================= */

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 109, 18, 0.2);
  transition: 0.4s;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgb(255, 109, 18);
}

/* =========================================================
LAYOUT
========================================================= */

.gallery-card.tall {
  grid-column: 1;
  grid-row: span 2;
}

.gallery-card.small {
  grid-row: span 1;
}

.gallery-card.big {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
}

.gallery-card.wide {
  grid-column: 3 / span 2;
  grid-row: 3;
}

/* =========================================================
IMAGE
========================================================= */

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* =========================================================
OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05));
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.infinite-scroll {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
  z-index: 1;
}

.infinite-scroll::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 300px;
  background: radial-gradient(
    rgba(241, 127, 56, 0.28),
    rgba(241, 127, 56, 0.08),
    transparent
  );
  filter: blur(80px);
  z-index: -1;
}

.scroll-title span {
  color: var(--accent);
  font-weight: 600;
}

.scroll-title h3 {
  color: #fff;
  font-size: 42px;
  margin-top: 12px;
}

.carousal-container {
  width: 100%;
  overflow: hidden;
}

.carousal-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.down {
  animation: scrollReverse 30s linear infinite;
}

.partner-card {
  flex: 0 0 auto;
  width: 240px;
  height: 170px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(17, 44, 78, 0.95),
    rgba(9, 25, 48, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
}

.partner-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); */
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.partner-card:hover img {
  transform: scale(1.08);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}
/* end-about-section */

/* start-why-us-section */

.why-us {
  background: var(--light-bg);
}

.why-us .col-lg-3,
.why-us .col-md-6 {
  display: flex;
}

.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 290px;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 45px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: 0.4s;
}

.why-card:hover i {
  transform: scale(1.15);
}

.why-card h3 {
  margin-bottom: 16px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card p {
  margin: 0;
  line-height: 1.8;
  color: #666;
}

/* end-why-us-section */

/* start-testimonials-section */

.testimonials {
  overflow: hidden;
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(17, 44, 78, 0.95),
    rgba(9, 25, 48, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 32px;
  text-align: center;
  max-width: 900px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-card img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 25px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}

.testimonial-card h4 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
}

.testimonial-card span {
  color: var(--accent);
  font-weight: 500;
}

.slider-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.slider-arrow:hover {
  background: var(--accent);
  transform: scale(1.08);
}
.slider-arrow i {
  color: #fff;
  font-size: 18px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(241, 127, 56, 0.08);
  top: -80px;
  right: -80px;
  filter: blur(40px);
}

/* end-testimonials-section */

/* start-contact-section */
.contact {
  background: linear-gradient(to bottom, #061f38, #0d2342);
}

.contact-form-box {
  background: linear-gradient(
    145deg,
    rgba(17, 44, 78, 0.95),
    rgba(9, 25, 48, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 50px;
  margin-bottom: 20px;
}

.contact-form-box h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 35px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  outline: none;
  transition: 0.4s;
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(241, 127, 56, 0.12);
}

.contact-form-box .main-btn {
  height: 60px;
  font-size: 18px;
}

.location-box {
  background: linear-gradient(
    145deg,
    rgba(17, 44, 78, 0.95),
    rgba(9, 25, 48, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.location-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.location-info {
  display: flex;
  gap: 18px;
  padding: 24px;
  min-height: 180px;
}

.location-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.location-info h4 {
  color: #fff;
  margin-bottom: 10px;
}

.location-info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.map-frame {
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-top: auto;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
  transition: 0.4s;
}

.location-box:hover iframe {
  transform: scale(1.02);
}

/* end-contact-section */

/* start-footer-section */

.footer {
  background: linear-gradient(to bottom, #07111d, #040b14);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(rgba(241, 127, 56, 0.12), transparent);
  top: -120px;
  right: -100px;
  filter: blur(80px);
}

.footer-brand h3 {
  color: #fff;
  font-size: 34px;
  margin: 20px 0 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  max-width: 320px;
}
.footer-logo-img {
  width: 90px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
}

.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 28px;
  font-size: 22px;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.65);
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 70px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-policy {
  display: flex;
  gap: 25px;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.footer-policy a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}
/* end-footer-section */

/* start-hero-animation */
.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.hero-content p {
  animation-delay: 0.3s;
}

.hero-buttons {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* end-hero-animation */

/* start-contact-model */

.custom-contact-modal {
  background: linear-gradient(
    145deg,
    rgba(17, 44, 78, 0.98),
    rgba(9, 25, 48, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  padding: 40px 30px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  z-index: 5;
}
.modal-logo {
  width: 90px;
  margin-bottom: 25px;
}

.custom-contact-modal h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}
.custom-contact-modal p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 35px;
}

.modal-socials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-socials a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.4s;
}
.modal-socials a:hover {
  background: var(--accent);

  transform: translateY(-4px);
}

.modal-socials i {
  font-size: 20px;
}
