/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* THEME COLORS */
:root{
  --primary: #3bba9c;
  --dark: #2E3047;
  --grey: #707793;
   --font: 'Arial', sans-serif;
}
/* .blend{
  background:  linear-gradient(to bottom, rgb(45, 75, 68) 20%, rgba(46, 48, 71, 0) 100%),   linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
} */
body{
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  box-shadow: 0 0 20px var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
  box-shadow: 0 0 20px var(--grey);
}

#splash{
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}



#splash img{
  width: 120px;
  animation: scaleIn 1.1s ease;
}
#splash.fade-out{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

@keyframes scaleIn{
  from{transform: scale(0.8); opacity: 0;}
  to{transform: scale(1); opacity: 1;}
}

/* HERO */
.hero{
  position: relative;
  height: 100vh;

  background:
    linear-gradient(to bottom, rgb(45, 75, 68) 20%, rgba(46, 48, 71, 0) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));

  padding: 10px 0 150px;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.header{
  padding: 10px 40px;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
  height: 100px;
}

/* MENU BUTTON */
.menu-circle{
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-circle.active{
  background: var(--grey);
  transform: rotate(90deg);
}

.menu-lines{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-lines span{
  width: 2px;
  height: 14px;
  background: var(--primary);
}

/* NAVBAR */
.navbar{
  position: absolute;
  right: 120px;
  top: 50px;
  display: none;
  gap: 25px;
  z-index: 4;
}

.navbar.active{
  display: flex;
}

.navbar a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color .3s ease, text-shadow .3s ease;
}

.navbar a:hover{
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* MOBILE NAV */
@media (max-width: 768px){
  .navbar{
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(0,0,0,0.85);
    padding: 15px 25px;
    border-radius: 12px;
  }
}

/* HERO CONTENT */
.hero-content{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 150px;
  line-height: 50px;
}

.hero-content h1{
  font-size: 40px;
  font-weight: lighter;
}

.hero-content h2{
  font-size: 60px;
  font-weight: bold;
  text-shadow: 0 0 15px var(--primary);
}

.hero-left{
  flex: 50%;
}

.hero-right{
  flex: 35%;
  display: flex;
  justify-content: center;
}

.hero-right img{
  width: 100%;
  max-width: 300px;
}

/* MOBILE HERO */
@media (max-width: 768px){
  .hero-content{
    flex-direction: column;
    padding: 40px;
  }
  .hero-left, .hero-right{
    text-align: center;
    flex: 100%;
  }
  .hero-right img{
    max-width: 250px;
  }
}
@media (max-width: 768px){
  .hero-content h2{
    text-shadow: 0 0 25px var(--primary), 0 0 40px var(--primary);
  }
}

    /* Why Choose Us */
.why-choose {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background:   var(--grey); 
    background:  linear-gradient(to top, rgb(45, 75, 68) 20%, rgba(46, 48, 71, 0) 100%),   linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  overflow: hidden;
}

.signature-img {
  position: absolute;
  bottom: 40px;
  left: 70px;
  width: 200px;    /* Choti signature */
  opacity: 0.9;
  z-index: 2;
}


.why-choose .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.why-choose .content {
  position: relative;
  top: -20px;
  z-index: 2;
  max-width: 750px;
  margin-left: auto;   /* Right side push */
  margin-right: 50px;  /* Thora gap from right */
  margin-top: 0;       /* Top pe laye */
  text-align: center;   /* Right aligned text */
}



.why-choose p {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
 
}

@media (max-width: 768px) {
  .why-choose .content {
    text-align: center;
    margin: 0 auto;
  }
.why-choose p {
  font-size: 17px;
  line-height: 1.5;

 
}

  .signature-img {
    left: 50%;
    transform: translateX(-50%);
     transform: translateY(10%);
    bottom: 0px;
    width: 200px;
    height: 170px;
  }
}




.global-section{
   background:   var(--grey); 
    background:  linear-gradient(to top, rgb(45, 75, 68) 5%, rgba(46, 48, 71, 0) 50%),   linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  width: 100%;
  padding: 20px 0;
}

.global-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.global-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  /* gap: 60px; */
}

.global-image{
  width: 100%;
 max-width: 450px;
  display: block;
}

.global-image img{
  display: block;
}
.global-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  margin-left: 50px;
  text-transform: capitalize;
  line-height: 1.4;

}

.global-text h2 span {
  color: #fff;
text-shadow: 0 0 15px #3bba9c, 0 0 30px #3bba9c;
}
.global-text p{
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: 50px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .global-container{
    flex-direction: column;
    text-align: center;
    gap:1px;
  }

  .global-text p{
    max-width: 100%;
  }

  .global-text h2{
    font-size: 35px;
  }
  .global-image img{
    display: none;
  }
}

@media (max-width: 480px){
  .global-section{
    padding: 60px 0;
  }

  .global-text h2{
    font-size: 30px;
  }

  .global-text p{
    font-size: 16px;
  }

  .global-image img{
    display: none;
  }
}




.mission {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  background:   linear-gradient(to top, rgba(46, 48, 71, 0) 90%, rgb(45, 75, 68) 100%),   linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%),  url('../img/Amex_Experts_Mission.png') no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
}

.mission-content {
  position: relative;
  top: -20px;
  z-index: 2;
  max-width: 750px;
  margin-left: 500px;   /* Right side push */
  margin-right: 50px;  /* Thora gap from right */
  margin-top: 0;       /* Top pe laye */
  text-align: left;   /* Right aligned text */
}

.mission-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  margin-left: 30px;
  text-transform: capitalize;
  line-height: 1.4;

}

.mission-content h2 span {
  color: #fff;
text-shadow: 0 0 15px #3bba9c, 0 0 30px #3bba9c;
}


.mission-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #eaeaea;
  padding: 25px 30px;
  border-radius: 14px;
  background: rgba(0,0,0,0.55); /* fallback */
  backdrop-filter: blur(3px);

}
/* ---------------------- SMALL SCREEN FIXES ---------------------- */
@media (max-width: 768px) {

  .mission {
    background: 
      linear-gradient(to bottom, rgb(33, 119, 99), rgba(0,0,0,0.3)),
      #2E3047;   /* solid fallback color */
    padding: 100px 20px;
  }

  /* BG image hat gaya. Sirf gradient + theme background */

  .mission-content {
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
    top: 0;
  }

  .mission-content h2 {
    margin-left: 0;
    font-size: 36px;
  }

  .mission-content p {
    padding: 20px 15px;
    font-size: 17px;
  }
}




.services-section {
  padding: 80px 0;
  background: black;
   background:  linear-gradient(to top, rgba(46, 48, 71, 0) 40%, rgb(45, 75, 68) 100%),   linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

.services-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-box {
  background: #0d1220;
  padding: 35px 20px;
  border-radius: 15px;
  text-align: center; /* professional look */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  border: 1px solid rgba(255,255,255,0.08);
}

.service-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #3bba9c;
}

.service-box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* subtle hover */
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(59,186,156,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}





.roadmap{
    background:  linear-gradient(to top, rgb(45, 75, 68) 10%, rgba(46, 48, 71, 0) 40%),   linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    
}
.roadmap{
  width: 100%;
  overflow: hidden;
  padding: 0px 0;
}

.roadmap-svg{
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px){
  .roadmap{
    padding: 0px 30px;
  }

  svg text{
    font-size: 26px;
  }

  svg circle{
    r: 32;
  }
}




.contact-section {
    display: flex;
     font-family: var(--font);
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
  
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-left {
    flex: 1;
    padding-right: 40px;
}

.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  margin-left: 30px;
  text-transform: capitalize;
  line-height: 1.4;

}

.contact-left h2 span {
  color: #fff;
text-shadow: 0 0 15px #3bba9c, 0 0 30px #3bba9c;
}

.contact-left p {
    margin-bottom: 12px;
    color: white;
     margin-left: 30px;
     
}

.contact-left a {
    color: var(--primary);
    text-decoration: none;
}

.contact-left a:hover {
    text-decoration: underline;
}

.contact-right {
    flex: 1;
    text-align: center;
}

.contact-right img {
    max-width: 100%;
    border-radius: 12px;
}
.contact-item i {
    margin-right: 8px;
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 23px;
}

.contact-item i:hover {
    transform: rotate(20deg);
}

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }
    .contact-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-right{
      width: 250px;
    }
}




.footer {
  background: #000;
  color: #fff;
  padding: 60px 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
 flex-wrap: wrap;  /*  responsive ke liye */
}

.footer-col {
  flex: 1;
  min-width: 150px;
  margin: 0 20px;
}

.big-col {
  flex: 2; /* first column wider */
}

.footer h5 {
  color: #3bba9c;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  line-height: 35px;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #3bba9c;
}

.footer-social a {
  color: #3bba9c;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 14px;
}






