/* ==========================
   GENERAL RESET
========================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body{
  background:#f8f8f8;
  color:#222;
  line-height:1.6;
  overflow-x:hidden;
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ==========================
   TOP BAR
========================== */
.top-bar{
  background: #d8c3ff; /* light purple */
  color: #222;
  font-size:14px;
  padding:8px 0;
}
.top-flex{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.top-flex div{
  display:flex;
  align-items:center;
  gap:5px;
}
.top-flex div i{
  color:#25D366;
}

/* ==========================
   HEADER
========================== */
.main-header{
  background:#ffffff;
  border-bottom:1px solid #ccc;
  position:sticky;
  top:0;
  z-index:999;
  padding:10px 0;
}
.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.logo-area{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-area .logo-img{
  height:50px;
  width:auto;
}
.brand-name{
  color:#4b0082; /* deep purple */
  font-size:22px;
  font-weight:700;
}
.nav-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  align-items:center;
}
.nav-links a{
  color:#4b0082;
  text-decoration:none;
  padding:8px 12px;
  transition:0.3s;
}
.nav-links a:hover{
  color:#9b30ff;
}

/* ==========================
   HERO
========================== */
.hero{
  height:90vh;
  position:relative;
  display:flex;
  align-items:center;
  text-align:center;
  justify-content:center;
  color:#222;
  background: linear-gradient(135deg, #d8c3ff, #e6e6e6) no-repeat center center/cover;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}
.hero-content h2{
  color:#4b0082;
  font-size:48px;
  margin-bottom:15px;
}
.hero-content p{
  color:#555;
  font-size:20px;
  margin-bottom:25px;
}
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}
.hero-buttons a{
  font-weight:700;
  padding:12px 25px;
  border-radius:40px;
  text-decoration:none;
  transition:0.3s ease;
}
.btn-primary{
  background:#4b0082;
  color:#fff;
}
.btn-primary:hover{
  box-shadow:0 0 25px rgba(75,0,130,0.6);
  transform:translateY(-3px);
}
.btn-outline {
  background: #25D366;
  color: #fff !important;
  border: none;
}
.btn-outline:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}
.btn-b2b{
  background:gold;
  color:#111;
}
.btn-b2b:hover{
  background:#ffd700;
  box-shadow:0 0 25px rgba(255,215,0,0.7);
  transform:translateY(-3px);
}
.hero-badges{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}
.hero-badges span{
  background:rgba(255,255,255,0.5);
  padding:8px 15px;
  border-radius:20px;
  font-weight:600;
  color:#4b0082;
  box-shadow: 0 0 15px rgba(75,0,130,0.3);
}

/* ==========================
   SECTIONS
========================== */
.section{padding:80px 0;}
.alt-bg{background:#f4f4f8;}
.section-title{
  text-align:center;
  margin-bottom:50px;
  font-size:32px;
  color:#4b0082;
}

/* ==========================
   LEAD FORM
========================== */
.lead-form{
  display:grid;
  gap:15px;
  max-width:600px;
  margin:auto;
  background: #fff;
  padding:30px;
  border-radius:20px;
  box-shadow: 0 0 30px rgba(75,0,130,0.2);
}
.lead-form input, .lead-form select{
  padding:14px;
  border-radius:10px;
  border:1px solid #ccc;
  width:100%;
}
.lead-form button{
  width:auto;
  background:#4b0082;
  color:#fff;
}

/* ==========================
   CARDS (Services/Destinations)
========================== */
.grid-4{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}
.grid-4 .card{
  position:relative;
  height:220px;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  text-align:center;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  transition:all 0.4s ease;
}
.grid-4 .card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:rgba(255,255,255,0.2);
  z-index:1;
  transition:0.4s ease;
}
.grid-4 .card span{
  position:relative;
  z-index:2;
  color:#4b0082;
  font-weight:700;
  font-size:18px;
  margin-bottom:15px;
}
.grid-4 .card:hover{
  transform:translateY(-10px) scale(1.05);
  box-shadow:0 0 70px rgba(75,0,130,0.75);
}

/* ==========================
   TESTIMONIALS / SUCCESS STORIES
========================== */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 30px rgba(75,0,130,0.1);
  transition: 0.4s;
  color: #222;
}

.testimonial-card p {
  color: #333;
  font-size: 15px;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #4b0082;
  font-weight: 600;
}

.testimonial-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(75,0,130,0.3);
}

/* ==========================
   TEAM
========================== */
.team-card {
  width: 220px;
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 0 25px rgba(75,0,130,0.1);
  color: #222;
}
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: 0.4s;
}
.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #4b0082;
}
.team-card p {
  font-size: 14px;
  color: #555;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px rgba(75,0,130,0.5);
}
.team-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(75,0,130,0.5);
}

/* ==========================
   CONTACT FORM
========================== */
.contact-form{
  display:grid;
  gap:15px;
  max-width:600px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 0 30px rgba(75,0,130,0.2);
}
.contact-form input, .contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ccc;
  width:100%;
}
.contact-form button{
  width:auto;
  background:#4b0082;
  color:#fff;
}

/* ==========================
   FOOTER
========================== */
.main-footer{
  background:#d8c3ff;
  color:#222;
  text-align:center;
  padding:25px 0;
}
.social-links a{
  color:#4b0082;
  font-size:20px;
  transition:0.3s;
}
.social-links a:hover{
  color:#9b30ff;
}

/* ==========================
   FLOATING BUTTONS
========================== */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:5px;
  z-index:999;
}
.apply-sticky{
  position:fixed;
  right:20px;
  top:50%;
  background:gold;
  color:#111;
  padding:15px 20px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  transform:translateY(-50%);
  z-index:999;
  transition:0.3s;
}
.apply-sticky:hover{
  box-shadow:0 0 30px rgba(255,215,0,0.8);
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:768px){
  .hero-content h2{font-size:32px;}
  .hero-buttons{flex-direction:column;}
  .header-flex{flex-direction:column; gap:15px;}
  .nav-links{justify-content:center;}
  .top-flex{flex-direction:column; text-align:center;}
}

/* ==========================
   OFFICE GALLERY FIX
========================== */
.gallery-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;   /* allows responsive but keeps horizontal */
}

.gallery-grid img{
  width:280px;      /* fixed proper size */
  height:200px;     /* equal height */
  object-fit:cover; /* no stretching */
  border-radius:18px;
  transition:0.4s ease;
  box-shadow:0 0 35px rgba(75,0,130,0.35);
}

.gallery-grid img:hover{
  transform:scale(1.08);
  box-shadow:0 0 60px rgba(75,0,130,0.7);
}

/* ==========================
   TEAM SECTION FIX
========================== */
.team-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:35px;
  flex-wrap:wrap;   /* responsive but horizontal */
}

.team-card{
  width:220px;
  text-align:center;
  background:#fff;
  padding:25px 20px;
  border-radius:20px;
  transition:0.4s;
  box-shadow:0 0 35px rgba(75,0,130,0.35);
  color:#222;
}

.team-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
  transition:0.4s;
}

.team-card h3{
  font-size:18px;
  margin-bottom:5px;
  color:#4b0082;
}

.team-card p{
  font-size:14px;
  color:#555;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 60px rgba(75,0,130,0.8);
}

.team-card:hover img{
  transform:scale(1.1);
  box-shadow:0 0 25px rgba(75,0,130,0.8);
}

.trust-box{
  background:#fff;
  color:#4b0082;
  padding:25px;
  border-radius:20px;
  transition:0.4s;
  text-align:center;
  box-shadow:0 0 35px rgba(75,0,130,0.35);
}

.trust-box:hover{
  box-shadow:0 0 70px rgba(75,0,130,0.8);
  transform:translateY(-10px);
}

/* ==========================
   GOOGLE REVIEWS SLIDER
========================== */

.reviews{
  padding:80px 20px;
  background:linear-gradient(135deg,#f5f3ff,#e0d4ff);
  text-align:center;
  overflow:hidden;
}

.reviews h2{
  color:#4b0082;
  margin-bottom:40px;
}

.reviews-wrapper{
  overflow:hidden;
  width:100%;
}

.reviews-track{
  display:flex;
  gap:30px;
  animation:scrollReviews 25s linear infinite;
}

.review-card{
  min-width:300px;
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 0 35px rgba(75,0,130,0.35);
  transition:0.4s;
}

.review-card p{
  color:#333;
  font-size:15px;
  margin-bottom:10px;
}

.review-card h4{
  color:#4b0082;
  font-size:14px;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 60px rgba(75,0,130,0.7);
}

/* Animation */
@keyframes scrollReviews{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* ==========================
   HERO SECTION
========================== */
.hero-content h2 {
    color: #ffd700; /* Golden heading */
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6); /* keep subtle shadow for readability */
}

.hero-content p {
    color: #ffd700; /* Golden paragraph below heading */
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6); /* subtle shadow for contrast */
}

/* ==========================
   OUR SERVICES SECTION
========================== */
.grid-4 .card {
    box-shadow: 0 0 0 rgba(0,0,0,0); /* remove glowing effect */
}

.grid-4 .card span {
    color: #ffd700; /* content in golden */
    font-weight: 700;
}

/* ==========================
   POPULAR STUDY DESTINATIONS
========================== */
.destination-card {
    box-shadow: 0 0 0 rgba(0,0,0,0); /* remove glow */
}

.destination-card span {
    color: #ffd700; /* content golden */
    font-weight: 700;
}

/* ==========================
   OUR SERVICES SECTION
========================== */
.grid-4 .service-card,
.grid-4 .destination-card {
    background-size: cover;
    background-position: center;
    box-shadow: none;      /* Remove glow shadow */
}

.grid-4 .service-card::before,
.grid-4 .destination-card::before {
    background: rgba(0,0,0,0); /* Remove the dark overlay */
}

.grid-4 .card span {
    color: #ffd700; /* Bright golden text */
    font-weight: 700;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* optional subtle shadow for contrast */
}

/* ==========================
   HERO PARALLAX
========================== */
.hero {
  background-attachment: fixed; /* Parallax effect */
  background-size: cover;
  background-position: center;
}

/* ==========================
   SERVICES & DESTINATIONS PARALLAX
========================== */
.service-card,
.destination-card {
  background-attachment: fixed; /* subtle parallax */
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

/* Optional subtle hover zoom for better effect */
.service-card:hover,
.destination-card:hover {
  transform: scale(1.05);
}

/* ==========================
   OFFICE IMAGES SIZE UPDATE
========================== */
.gallery-grid img {
  width: 375px; /* increase approx 25% from 300px */
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(106,13,173,0.4);
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(106,13,173,0.8);
}

/* ================= PREMIUM B2B HERO ================= */

.b2b-hero-premium {
  position: relative;
  height: 85vh;
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.b2b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.b2b-hero-content-premium {
  position: relative;
  max-width: 800px;
  color: #fff;
  z-index: 2;
}

.b2b-hero-content-premium h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.b2b-hero-content-premium p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ================= PREMIUM SECTION SPACING ================= */

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 34px;
  margin-bottom: 25px;
  text-align: center;
}

.section p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ================= CARD IMPROVEMENT ================= */

.card {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.card {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ================= FORM POLISH ================= */

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

/* ================= LUXURY EXECUTIVE BOX GRID ================= */

.b2b-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Executive Card */

.b2b-info-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  position: relative;
}

.b2b-info-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.b2b-info-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

/* Elegant hover */

.b2b-info-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
  border-color: rgba(201,162,39,0.6);
}

/* ================= LUXURY BENEFITS ================= */

.luxury-bg {
  background: #f8f8f8;
}

.luxury-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.luxury-benefit {
  padding: 35px;
  border-left: 3px solid #c9a227;
  background: #fff;
  border-radius: 12px;
  transition: 0.4s ease;
}

.luxury-benefit h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.luxury-benefit p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
}

.luxury-benefit:hover {
  transform: translateX(8px);
}

/* ================= PARTNER TYPES ================= */

.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.partner-item {
  background: #111;
  color: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.4s;
}

.partner-item:hover {
  background: linear-gradient(45deg, #c9a227, #f5d76e);
  color: #111;
}

/* ===== FOUNDER MESSAGE ===== */
.founder-message {
  padding: 60px 20px;
  background: #0a0a0a;
  color: #fff;
}
.founder-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.founder-img-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
}
.founder-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  filter: blur(20px);
  transition: transform 0.3s, opacity 0.3s;
  z-index: -1;
}
.founder-img-wrapper:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffd700;
  transition: transform 0.3s;
}
.founder-img-wrapper:hover .founder-img {
  transform: scale(1.05);
}

/* TEXT */
.founder-text {
  max-width: 650px;
  text-align: left;
}
.founder-text h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 20px;
}
.founder-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f5f5f5;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .founder-flex {
    flex-direction: column;
    text-align: center;
  }
  .founder-text { text-align: center; }
  .founder-text h2 { font-size: 28px; }
}
