  v/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  background: #0a2540;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
}

/* HEADER */

.sticky{
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.container {
  width: 90%;
  margin: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  min-height: 60px;
}


 

/* LOGO SECTION */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 85px;
    height: auto;
}

.logo h1 {
    font-size: 29px;
    font-weight: 700;
    color: #0b2c5f;
    margin: 0;
}
/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
  gap:28px;
}

nav a {
  color: #333;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  font-size:15px;
  transition:0.3s;
}

nav a:hover {
  color: #ff6600;
}

/* APPLY BUTTON */
.apply-btn {
  background: #ff6600;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight:600;
  transition:0.3s;
}

/* HIDE MOBILE MENU ON DESKTOP */

.mobile-menu{
    display:none;
}

.menu-toggle{
    display:none;
}
/* HERO */
/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  min-height:90vh;
}

.hero-desktop{
  display:block;
  width:100%;
  height:90vh;
  object-fit:cover;
}

.hero-mobile{
  display:none;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-content{
  text-align:center;
  color:#fff;
  max-width:700px;
  padding:20px;
}

.hero h1{
  font-size:52px;
  margin-bottom:20px;
  line-height:1.1;
}

.hero p{
  font-size:20px;
  margin-bottom:25px;
}

/* MOBILE HERO */

@media(max-width:768px){

  .hero{
    min-height:85vh;
  }

  .hero-desktop{
    display:none;
  }

  .hero-mobile{
    display:block;
    width:100%;
    height:85vh;
    object-fit:cover;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:17px;
    line-height:1.6;
  }

}
.hero-overlay {
  background: rgba(0,0,0,0.15);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  position: relative;
  top: -80px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: #ff6600;
  padding: 12px 25px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

/* SECTION BACKGROUND */
.benefits-pro {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title span {
  color: #007bff;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.benefits-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .benefits-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-pro-grid {
    grid-template-columns: 1fr;
  }
}
/* CARD */
.benefit-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.benefit-box:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ICON */
.icon-box {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
  color: white;
}

/* COLORS */
.blue { background: #007bff; }
.purple { background: #6f42c1; }
.teal { background: #20c997; }
.green { background: #28a745; }
.orange { background: #fd7e14; }
.pink { background: #e83e8c; }
.yellow { background: #ffc107; color:black; }
.red { background: #dc3545; }
.cyan { background: #17a2b8; }
.dark { background: #343a40; }

/* TEXT */
.benefit-box h3 {
  margin-bottom: 10px;
  color: #0a2540;
}

.benefit-box p {
  font-size: 14px;
  color: #555;
}

/* CTA */
.benefits-cta {
  margin-top: 60px;
  text-align: center;
  background: #0a2540;
  color: white;
  padding: 40px;
  border-radius: 15px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff6b00;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}


/* UNIVERSITY CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.uni-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.uni-card:hover {
  transform: translateY(-8px);
}

.uni-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin-bottom: 8px;
  color: #0a2540;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

/* FORM */
/* =========================
   INQUIRY FORM SECTION
========================= */

.inquiry{
    padding:90px 20px;
    background:#f8f9fc;
}

.inquiry-container{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.inquiry h2{
    font-size:46px;
    color:#0b2c5f;
    margin-bottom:40px;
    font-weight:700;
}

.inquiry form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.inquiry input,
.inquiry select,
.inquiry textarea{
    width:100%;
    padding:16px 18px;
    font-size:16px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    box-sizing:border-box;
    background:#fff;
    outline:none;
    transition:0.3s ease;
}

.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus{
    border-color:#ff6600;
    box-shadow:0 0 0 3px rgba(255,102,0,0.12);
}

.inquiry select{
    height:58px;
    appearance:none;
    cursor:pointer;
}

.inquiry textarea{
    min-height:140px;
    resize:none;
}

.inquiry button{
    background:#ff6600;
    color:#fff;
    border:none;
    padding:16px;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s ease;
}

.inquiry button:hover{
    background:#e65c00;
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

    .inquiry h2{
        font-size:34px;
    }

}
/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* OFFER GRID */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   OFFER SECTION (STARTUP LEVEL)
========================= */
/* ===== OFFER SECTION ===== */
/* ===== OFFER BOX IMAGE STYLE ===== */

.offer-box {
  padding: 0;
  overflow: hidden;
  background: white;
  border-radius: 12px; 
}

/* IMAGE */
.offer-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.offer-box h3 {
  padding: 15px 20px 5px;
}

.offer-box p {
  padding: 0 20px 20px;
}

/* HOVER EFFECT */
.offer-box:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.offer-box {
  transition: all 0.3s ease;
}

.offer-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 768px) {
.menu-toggle{
    display:flex;
}

.mobile-menu{
    display:block;
}

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .logo-right {
    height: 60px;
  }
}

/* =========================
   ABOUT PREMIUM SECTION
========================= */

.about-premium{
    position: relative;
    padding: 100px 8%;
    background: linear-gradient(to bottom, #f5f9ff, #ffffff);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container{
    max-width: 1300px;
    margin: auto;
}

.about-header{
    text-align: center;
    margin-bottom: 70px;
}

.about-header h4{
    color: #0066ff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 18px;
}

.about-header h2{
    font-size: 48px;
    color: #0b1f3a;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-header p{
    font-size: 18px;
    color: #666;
}

/* ABOUT CONTENT */

.about-content{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 90px;
}

.about-text p{
    font-size: 17px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-btn{
    display: inline-block;
    padding: 15px 35px;
    background: #0066ff;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover{
    background: #004dcc;
    transform: translateY(-3px);
}

.about-images{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-images img{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.about-images img:hover{
    transform: scale(1.03);
}

/* STATS */

.stats-section{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.stat-card{
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.stat-card:hover{
    transform: translateY(-10px);
}

.stat-card h2{
    font-size: 42px;
    color: #0066ff;
    margin-bottom: 10px;
}

.stat-card p{
    color: #555;
    font-size: 16px;
}

/* WHY SECTION */

.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 40px;
    color: #0b1f3a;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.why-card{
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.why-card:hover{
    transform: translateY(-8px);
}

.why-card h3{
    color: #0066ff;
    margin-bottom: 15px;
    font-size: 22px;
}

.why-card p{
    color: #555;
    line-height: 1.8;
}

/* JOURNEY */

.journey-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.journey-box{
    background: linear-gradient(135deg,#0066ff,#004dcc);
    color: white;
    text-align: center;
    padding: 30px 15px;
    border-radius: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.journey-box:hover{
    transform: scale(1.05);
}

/* MOBILE RESPONSIVE */

@media(max-width:991px){

    .about-content{
        grid-template-columns: 1fr;
    }

    .stats-section{
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns: 1fr 1fr;
    }

    .journey-grid{
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px){

    .about-header h2{
        font-size: 34px;
    }

    .stats-section{
        grid-template-columns: 1fr;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }

    .journey-grid{
        grid-template-columns: 1fr;
    }

    .about-text p{
        font-size: 16px;
    }

}

/* =========================
   RESOURCES PAGE
========================= */

.resource-container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */

.resource-hero{
    height: 90vh;
    background: linear-gradient(rgba(11,31,58,0.45),rgba(11,31,58,0.45)),
    url('images/resources-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    filter: brightness91.05);
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-text{
    max-width: 700px;
    color: white;
}

.hero-text h1{
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    color: #e5e5e5;
}

/* BUTTONS */

.hero-buttons,
.cta-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn{
    background: #0066ff;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover{
    transform: translateY(-5px);
    background: #0051cc;
}

.secondary-btn{
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.secondary-btn:hover{
    background: white;
    color: #0B1F3A;
}

/* ELIGIBILITY */

.eligibility-section{
    padding: 100px 0;
    background: #ffffff;
}

.eligibility-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-tag{
    display: inline-block;
    padding: 10px 20px;
    background: #eaf2ff;
    color: #0066ff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.eligibility-content h2{
    font-size: 46px;
    color: #0B1F3A;
    line-height: 1.3;
    margin-bottom: 25px;
}

.eligibility-content p{
    color: #666;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 35px;
}

.eligibility-points{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point{
    background: #f7faff;
    padding: 18px 22px;
    border-radius: 16px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.eligibility-image img{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* DOCUMENTS SECTION */

.documents-section{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom,#f5f9ff,#ffffff);
    overflow: hidden;
}

.blur-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blur1{
    width: 300px;
    height: 300px;
    background: rgba(0,102,255,0.15);
    top: 0;
    left: 0;
}

.blur2{
    width: 250px;
    height: 250px;
    background: rgba(0,200,150,0.15);
    bottom: 0;
    right: 0;
}

.section-heading{
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2{
    font-size: 48px;
    color: #0B1F3A;
    margin: 25px 0;
}

.section-heading p{
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.documents-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.doc-card{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.doc-card:hover{
    transform: translateY(-10px);
}

.doc-icon{
    font-size: 45px;
    margin-bottom: 20px;
}

.doc-card h3{
    color: #0B1F3A;
    font-size: 20px;
}

/* CTA */

.resource-cta{
    padding: 100px 0;
    background: linear-gradient(135deg,#0B1F3A,#0066ff);
    text-align: center;
    color: white;
}

.resource-cta h2{
    font-size: 50px;
    margin-bottom: 20px;
}

.resource-cta p{
    font-size: 18px;
    margin-bottom: 35px;
    color: #e5e5e5;
}

.white-btn{
    border-color: white;
}

/* MOBILE */

@media(max-width:991px){

    .hero-text h1{
        font-size: 48px;
    }

    .eligibility-grid{
        grid-template-columns: 1fr;
    }

    .documents-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hero-text h1{
        font-size: 38px;
    }

    .eligibility-content h2,
    .section-heading h2,
    .resource-cta h2{
        font-size: 34px;
    }

    .documents-grid{
        grid-template-columns: 1fr;
    }

}

/* =========================
   DESTINATION PAGE
========================= */

.destination-container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   HERO SECTION
========================= */

.destination-hero{
    height: 32vh;
    padding: 20px 0;
    background: linear-gradient(rgba(11,31,58,0.75),rgba(11,31,58,0.75)),
    url('images/destination-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content{
    position: relative;
    z-index: 2;
    top: -40px;
}

.hero-content h1{
    font-size: 45px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p{
    font-size: 15px;
    max-width: 500px;
    margin: auto;
    line-height: 1.8;
    color: #e5e5e5;
}

/* =========================
   FEATURED DESTINATIONS
========================= */

.featured-destinations{
    overflow: hidden;
    padding: 100px 0;
    background: #f5f9ff;
}

.section-heading{
    text-align: center;
    margin-bottom: 60px;
}

.section-tag{
    display: inline-block;
    background: #eaf2ff;
    color: #0066ff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading h2{
    font-size: 48px;
    color: #0B1F3A;
    margin-top: 25px;
    font-weight: 700;
}

/* SLIDER */

.destination-slider{
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideMove 35s linear infinite;
}

.destination-slider:hover{
    animation-play-state: paused;
}

@keyframes slideMove{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* SLIDE CARD */

.slide-card{
    min-width: 320px;
    height: 430px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    transition: 0.4s ease;
    background: #ddd;
}

.slide-card:hover{
    transform: translateY(-10px);
}

.slide-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    background: linear-gradient(transparent,rgba(0,0,0,0.88));
    color: white;
}

.slide-overlay h3{
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.slide-overlay p{
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.6;
}

/* =========================
   CATEGORY SECTION
========================= */

.category-section{
    padding: 100px 0;
    background: white;
}

.category-block{
    margin-bottom: 100px;
}

.category-block h2{
    font-size: 42px;
    color: #0B1F3A;
    margin-bottom: 45px;
    font-weight: 700;
}

/* COUNTRY GRID */

.country-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* COUNTRY CARD */

.country-card{
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.country-card:hover{
    transform: translateY(-12px);
}

.country-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.country-content{
    padding: 28px;
}

.country-content h3{
    font-size: 28px;
    color: #0B1F3A;
    margin-bottom: 12px;
    font-weight: 600;
}

.country-content p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 991px){

    .hero-content h1{
        font-size: 48px;
    }

    .section-heading h2{
        font-size: 38px;
    }

    .category-block h2{
        font-size: 34px;
    }

    .country-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .slide-card{
        min-width: 280px;
        height: 380px;
    }

}

@media(max-width: 768px){

    .destination-hero{
        height: 70vh;
        padding: 0 20px;
    }

    .hero-content h1{
        font-size: 36px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .section-heading h2{
        font-size: 30px;
    }

    .category-block h2{
        font-size: 28px;
    }

    .country-grid{
        grid-template-columns: 1fr;
    }

    .slide-card{
        min-width: 240px;
        height: 330px;
    }

    .slide-overlay h3{
        font-size: 24px;
    }

}

/* ============================= */
/* STUDENT TESTIMONIALS SECTION */
/* ============================= */

body{
  margin:0;
  padding:0;
  font-family: Arial, sans-serif;
  background:#f5f9ff;
}

/* SECTION */

.testimonials-section{
  padding:80px 20px;
  background:#f5f9ff;
}

.container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  color:#0b2c5f;
  margin-bottom:15px;
  font-weight:700;
}

.section-title p{
  font-size:17px;
  color:#666;
  max-width:700px;
  margin:auto;
  line-height:1.7;
}

/* GRID */

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:30px;
}

/* CARD */

.testimonial-card{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */

.testimonial-card img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:50%;
  border:4px solid #0b2c5f;
  margin-bottom:18px;
}

/* NAME */

.testimonial-card h3{
  font-size:24px;
  color:#0b2c5f;
  margin-bottom:8px;
}

/* COUNTRY */

.testimonial-card span{
  display:block;
  color:#0077ff;
  font-weight:600;
  margin-bottom:18px;
  font-size:15px;
}

/* TEXT */

.testimonial-card p{
  color:#555;
  font-size:15px;
  line-height:1.8;
}

/* MOBILE */

@media(max-width:768px){

  .section-title h2{
    font-size:32px;
  }

  .testimonial-card{
    padding:30px 20px;
  }

}


/* =========================
PREMIUM MOBILE UI IMPROVEMENTS
========================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
  background:#ffffff;
}

img{
  max-width:100%;
}

header.sticky{
  backdrop-filter: blur(14px);
}

.nav{
  max-width:1280px;
  margin:auto;
}

.hero{
  background:url('images/hero.jpg') center center/cover no-repeat;
}

.btn,
.apply-btn{
  box-shadow:0 10px 25px rgba(255,102,0,0.18);
}

@media (max-width: 768px){

.top-bar{
  display:none;
}

.sticky{
  position:fixed;
  width:100%;
  top:0;
  left:0;
}

.nav{
  padding:14px 18px;
  min-height:72px;
}

.logo img{
  width:68px;
}

.nav-links,
.nav .apply-btn{
  display:none;
}

.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#f5f7fb;
  padding:10px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  height:2px;
  width:100%;
  background:#0b2c5f;
  border-radius:10px;
  transition:0.3s;
}

.mobile-menu{
  position:fixed;
  top:72px;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(18px);
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transform:translateY(-120%);
  opacity:0;
  visibility:hidden;
  transition:all 0.35s ease;
  z-index:998;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border-bottom-left-radius:24px;
  border-bottom-right-radius:24px;
}

.mobile-menu.active{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
}

.mobile-menu a{
  text-decoration:none;
  color:#10213d;
  font-size:17px;
  font-weight:600;
  padding:14px 16px;
  border-radius:16px;
  background:#f7f9fc;
  text-align:center;
}

.mobile-menu .apply-btn{
  display:block;
  margin-top:6px;
  background:#ff6600;
  color:#fff;
}

.hero{
  min-height:100vh;
  margin-top:72px;
  background-position:center;
}

.hero-overlay{
  background:linear-gradient(to bottom, rgba(3,12,30,0.60), rgba(3,12,30,0.58));
}

.hero-content{
  top:0;
  padding:24px;
  max-width:100%;
}

.hero h1{
  font-size:46px;
  line-height:1.08;
  letter-spacing:-1px;
  margin-bottom:18px;
}

.hero p{
  font-size:20px;
  line-height:1.7;
  color:rgba(255,255,255,0.92);
  margin-bottom:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:320px;
  min-height:58px;
  border-radius:16px;
  font-size:20px;
  font-weight:700;
}

.container{
  width:92%;
}

.section-title{
  font-size:30px;
  line-height:1.2;
}

.section-subtitle{
  font-size:16px;
  line-height:1.7;
}

.benefits-pro,
section{
  overflow:hidden;
}

.benefits-pro-grid{
  grid-template-columns:1fr;
  gap:18px;
}

.card,
.benefit-card,
.destination-card,
.resource-card{
  border-radius:22px;
}

}
