/* =========================
   RESET + FONT
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

/* LOGO */
.logo img {
  height: 65px;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.nav-links .active {
  color: #b79b4a;
}

.nav-links .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #b79b4a;
  bottom: -8px;
  left: 0;
}

/* =========================
   HERO SLIDER (FIXED HEIGHT)
========================= */
.hero {
  position: relative;
  height: 70vh;        /* ✅ reduced from 90vh */
  min-height: 500px;   /* ✅ prevents too small layouts */
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}

/* =========================
   HERO CONTENT POSITION
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;

  margin-left: 12%;
  margin-top: 140px;  /* ✅ adjusted for smaller slider */

  color: white;
}

/* =========================
   ANIMATIONS
========================= */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* STAGGER EFFECT */
.hero-content .tag {
  animation-delay: 0.2s;
}

.hero-content h1 {
  animation-delay: 0.5s;
}

.hero-content p {
  animation-delay: 0.8s;
}

.hero-content .buttons {
  animation-delay: 1.1s;
}

/* KEYFRAMES */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TEXT STYLING
========================= */

/* TAG */
.tag {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 500;
}

.tag::after {
  content: "";
  width: 50px;
  height: 2px;
  background: white;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}

/* TITLE */
.hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 35px;
  color: #e5e5e5;
}

/* =========================
   BUTTONS (PREMIUM STYLE)
========================= */
.buttons {
  display: flex;
  gap: 20px;
}

/* BASE BUTTON */
.btn {
  padding: 16px 30px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.dark {
  background: linear-gradient(135deg, #0d2b45, #133a5e);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* SECONDARY BUTTON */
.light {
  background: white;
  color: #333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* HOVER EFFECTS */
.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.light:hover {
  transform: translateY(-3px);
  background: #f5f5f5;
}
/* =========================
   NAV HOVER EFFECTS
========================= */

/* container fix */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ✅ hover color */
.nav-links a:hover {
  color: #b79b4a;
}

/* ✅ underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #b79b4a;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* active link already styled, but ensure it shows */
.nav-links .active {
  color: #b79b4a;
}

.nav-links .active::after {
  width: 100%;
}


/* =========================
   DROPDOWN STYLING
========================= */
.dropdown {
  position: relative;
}

/* dropdown container */
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  width: 260px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;

  overflow: hidden;
  z-index: 1000;
}

/* about dropdown smaller */
.dropdown-menu.small {
  width: 200px;
}

/* dropdown items */
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
  white-space: normal;
}

/* remove bottom border on last item */
.dropdown-menu a:last-child {
  border-bottom: none;
}

/* hover inside dropdown */
.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #b79b4a;
}

/* ✅ SHOW dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* =========================
   HAMBURGER MENU
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .hero-content {
    margin-left: 8%;
    margin-top: 120px;
    max-width: 550px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .nav-links a {
    margin: 0 12px;
  }
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 768px) {

  .nav-container {
    padding: 15px 5%;
  }

  .logo img {
    height: 55px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 95px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 95px);

    background: white;

    flex-direction: column;
    align-items: flex-start;

    padding: 30px;

    gap: 0;

    box-shadow: -5px 0 20px rgba(0,0,0,0.12);

    transition: 0.4s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
    margin: 0;
  }

  /* dropdown mobile */

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;

    width: 100%;
    box-shadow: none;

    display: none;
    margin-bottom: 10px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 20px;
    background: #fafafa;
  }

  /* hero */

  .hero {
    height: 80vh;
    min-height: 650px;
  }

  .hero-content {
    margin-left: 6%;
    margin-right: 6%;
    margin-top: 110px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 220px;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .hero-content {
    margin-top: 90px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .tag {
    font-size: 11px;
  }

  .btn {
    width: 100%;
  }

  .nav-links {
    width: 100%;
  }
}
/* =========================
   SERVICES OVERVIEW
========================= */

.services-overview {
  padding: 100px 0;
  background: #ffffff;
}

.services-container {
  width: 85%;
  margin: auto;
}

.services-header {
  text-align: center;
  max-width: 850px;
  margin: auto auto 70px;
}

.services-header h2 {
  font-size: 42px;
  color: #081521;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-header p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* GRID */

.services-grid {

  display: grid;

  grid-template-columns:
      repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.service-card {

  background: white;

  padding: 45px 35px;

  border-radius: 14px;

  text-align: center;

  border: 1px solid #edf0f4;

  transition: 0.35s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.05);
}

.service-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}

/* ICON */

.service-icon {

  width: 85px;
  height: 85px;

  margin: 0 auto 25px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #081521,
      #12304d
    );

  color: white;

  font-size: 34px;
}

.service-card h3 {

  color: #081521;

  margin-bottom: 18px;

  font-size: 24px;
}

.service-card p {

  color: #666;

  line-height: 1.8;

  margin-bottom: 25px;
}

.service-card a {

  color: #b79b4a;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

.service-card a:hover {

  letter-spacing: 1px;
}
/* =========================
   SERVICES TABLET
========================= */

@media (max-width: 1024px) {

  .services-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  .services-header h2 {
    font-size: 34px;
  }
}

/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 768px) {

  .services-overview {
    padding: 70px 0;
  }

  .services-container {
    width: 90%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }
}
/* =========================
   WHY CHOOSE US
========================= */

.why-us {
  padding: 100px 0;
  background: #f8fafc;
}

.why-container {
  width: 85%;
  margin: auto;
}

.why-header {
  text-align: center;
  max-width: 850px;
  margin: auto auto 70px;
}

.section-tag {
  display: inline-block;

  color: #b79b4a;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 15px;
}

.why-header h2 {
  font-size: 42px;
  color: #081521;

  margin-bottom: 20px;

  line-height: 1.2;
}

.why-header p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* =========================
   STATS GRID
========================= */

.stats-grid {

  display: grid;

  grid-template-columns:
      repeat(4, 1fr);

  gap: 25px;
}

.stat-card {

  background: white;

  padding: 45px 30px;

  border-radius: 12px;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.stat-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}

.stat-number {

  font-size: 52px;

  font-weight: 700;

  color: #b79b4a;

  margin-bottom: 15px;
}

.stat-card h3 {

  font-size: 18px;

  color: #081521;
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #081521;
  color: #fff;
  padding-top: 70px;
}

.footer-container {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns:
      2fr 1fr 1fr 1.3fr;

  gap: 50px;

  padding-bottom: 50px;
}

.footer-column h3 {
  margin-bottom: 22px;
  font-size: 20px;
  color: #b79b4a;
}

.footer-column p {
  color: #c8c8c8;
  line-height: 1.8;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

/* LINKS */

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #c8c8c8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #b79b4a;
  padding-left: 5px;
}

/* CONTACT */

.contact-list li {
  color: #c8c8c8;
}

/* SOCIALS */

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255,255,255,0.08);

  color: white;
  border-radius: 50%;

  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #b79b4a;
  transform: translateY(-4px);
}

/* BOTTOM BAR */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;

  padding: 20px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 14px;
}
/* =========================
   FOOTER TABLET
========================= */

@media (max-width: 1024px) {

  .footer-container {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 40px;
  }
}

/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 768px) {

  .footer-container {

    width: 90%;

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-column {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    margin: auto auto 20px;
    display: block;
  }
}
/* =========================
   WHY US TABLET
========================= */

@media (max-width: 1024px) {

  .stats-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 34px;
  }
}

/* =========================
   WHY US MOBILE
========================= */

@media (max-width: 768px) {

  .why-us {
    padding: 70px 0;
  }

  .why-container {
    width: 90%;
  }

  .stats-grid {

    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 30px;
  }

  .stat-number {
    font-size: 44px;
  }
}
.trust-section{
  padding:100px 0;
  background:#fff;
}

.trust-container{
  width:85%;
  margin:auto;
}

.trust-header{
  text-align:center;
  max-width:800px;
  margin:auto auto 60px;
}

.trust-header h2{
  font-size:42px;
  margin-bottom:20px;
  color:#081521;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.trust-card{
  padding:35px;
  background:#f8fafc;
  border-radius:12px;
  text-align:center;
  transition:.3s;
}

.trust-card:hover{
  transform:translateY(-8px);
}

.trust-card i{
  font-size:40px;
  color:#b79b4a;
  margin-bottom:20px;
}

.trust-card h3{
  margin-bottom:15px;
}
.partners{
  padding:90px 0;
  background:white;
}

.partners-container{
  width:85%;
  margin:auto;
  text-align:center;
}

.partners-container h2{
  margin:15px 0 50px;
  font-size:38px;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:25px;
}

.partner-logo{
  background:#f8fafc;
  padding:35px;
  border-radius:10px;
  font-weight:600;
  color:#081521;
}
.cta-section{

  background:
  linear-gradient(
    135deg,
    #081521,
    #12304d
  );

  color:white;

  text-align:center;

  padding:100px 20px;
}

.cta-content{
  max-width:800px;
  margin:auto;
}

.cta-content h2{
  font-size:48px;
  margin-bottom:20px;
}

.cta-content p{
  font-size:18px;
  color:#ddd;
  margin-bottom:35px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}
.contact-section{
  padding:100px 0;
  background:#f8fafc;
}

.contact-container{
  width:85%;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.contact-info h2{
  font-size:42px;
  margin:15px 0 25px;
}

.contact-item{
  margin-bottom:20px;
  color:#555;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{

  padding:15px;

  border:1px solid #ddd;

  border-radius:8px;

  font-size:15px;
}

.contact-form textarea{
  resize:none;
}
@media(max-width:768px){

  .trust-grid,
  .partners-grid,
  .contact-container{
    grid-template-columns:1fr;
  }

  .cta-content h2{
    font-size:34px;
  }

  .trust-header h2,
  .contact-info h2{
    font-size:30px;
  }

  .partners-container h2{
    font-size:30px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }
}
