/* ================= GLOBAL RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, Arial, sans-serif;
}

html{scroll-behavior:smooth;}

body{
  background:url("images/bg-main.jpg") center/cover fixed no-repeat;
  color:#fff;
  line-height:1.7;
  letter-spacing:0.2px;
}

a{text-decoration:none;color:inherit;}
button{cursor:pointer;}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ================= HEADER ================= */
header{
  padding:20px 0;
  background:rgba(11,11,14,0.95);
  backdrop-filter:blur(6px);
  border-bottom:1px solid #222;
  position:relative;
  z-index:99999;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:65px;
  width:auto;
}

.menu{
  list-style:none;
  display:flex;
  gap:20px;
  font-size:14px;
  z-index:99999;
}

.menu li{position:relative;}

.menu li:hover{color:#d4a24c;}

.menu li ul{
  position:absolute;
  top:30px;
  left:0;
  background:#111;
  border:1px solid #333;
  border-radius:8px;
  min-width:200px;
  display:none;
  z-index:999999;
}

.menu li:hover ul{display:block;}

.menu li ul li{
  padding:10px;
}

.menu li ul li:hover{background:#222;}

.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* ================= MOBILE MENU ================= */
@media(max-width:900px){
.menu{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:#060608;
  flex-direction:column;
  display:none;
  padding:20px;
}
.menu li ul{
  position:relative;
  top:0;
  border:none;
}
.menu-toggle{display:block;}
}

.hero-modern{
  background: linear-gradient(135deg, #0f0f0f, #151515);
  padding: 90px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  background:rgba(245,200,107,0.12);
  color:#f5c86b;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:14px;
}

.hero-text h1{
  font-size:44px;
  line-height:1.2;
  margin-bottom:16px;
  color:#fff;
}

.hero-text h1 span{
  color:#f5c86b;
}

.hero-text p{
  font-size:16px;
  color:#ddd;
  max-width:520px;
}

.hero-actions{
  margin-top:25px;
}

.hero-points{
  margin-top:18px;
  list-style:none;
  padding:0;
}

.hero-points li{
  font-size:14px;
  color:#f5c86b;
  margin-bottom:6px;
}

.hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* Mobile */
@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p{
    margin:auto;
  }

  .hero-image{
    margin-top:30px;
  }
}


/* ================= BUTTONS ================= */
.btn{
  display:inline-block;
  padding:12px 30px;
  border-radius:8px;
  font-weight:600;
  font-size:15px;
}

.btn-gold{
  background:#d4a24c;
  color:#000;
}

.btn-outline{
  border:1px solid #d4a24c;
  color:#d4a24c;
}

/* ================= SECTIONS ================= */
section{
  padding:60px 0;
  background:rgba(0,0,0,0.6);
  position:relative;
  z-index:1;
}

section h2{
  text-align:center;
  font-size:28px;
  margin-bottom:15px;
}

section p{
  margin-bottom:18px;
  line-height:1.7;
  color:#cfcfcf;
  text-align:justify;
}

/* ================= GRID ================= */
.grid,
.country-grid,
.approach-grid{
  display:grid;
  gap:25px;
  margin-top:40px;
}

.grid{grid-template-columns:repeat(3,1fr);}

.country-grid{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  max-width:1100px;
  margin:40px auto 0;
}

.approach-grid{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

/* ================= CARDS ================= */
.card,
.country-card,
.approach-card{
  background:#111118;
  border:1px solid #222;
  border-radius:12px;
  padding:22px;
  text-align:center;
  color:#cfcfcf;
}

.card{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.approach-card:hover,
.country-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 18px rgba(212,162,76,0.4);
  color:#fff;
  transition:0.3s;
}

/* ================= BREADCRUMB ================= */
.breadcrumb{
  background:rgba(0,0,0,0.22);
  backdrop-filter:blur(5px);
  padding:12px 0;
}

.breadcrumb .container{
  padding:0;
}

.breadcrumb a,
.breadcrumb span{
  color:#ffffff;
  font-size:14px;
  font-weight:500;
}

.breadcrumb a:hover{
  color:#E44126;
}

/* ================= BANNER ================= */
.country-banner{
  height:320px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.banner-overlay{
  background:rgba(0,0,0,0.6);
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.banner-overlay h1{
  font-size:42px;
}

/* ================= FOOTER ================= */
.site-footer{
  background:url("images/footer.jpg") center/cover no-repeat;
  padding:60px 0 20px;
  color:#cfcfcf;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.footer-col h3{
  color:#d4a24c;
  margin-bottom:15px;
}

.footer-col ul{list-style:none;}

.footer-col ul li{margin-bottom:8px;}

.footer-col a{color:#cfcfcf;}

.footer-col a:hover{color:#d4a24c;}

.footer-bottom{
  border-top:1px solid #222;
  margin-top:40px;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

/* ================= CHAT ================= */
.chat-btn{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  background:#d4a24c;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  cursor:pointer;
  z-index:999999;
}

.chat-box{
  position:fixed;
  bottom:100px;
  right:25px;
  width:320px;
  background:#0b0b0e;
  border-radius:12px;
  display:none;
  flex-direction:column;
  z-index:999999;
}

.chat-header{
  background:#d4a24c;
  color:#000;
  padding:12px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
}

.chat-body{
  height:260px;
  padding:10px;
  overflow-y:auto;
}

.chat-input{
  display:flex;
  border-top:1px solid #333;
}

.chat-input input{
  flex:1;
  border:none;
  padding:10px;
  background:#111;
  color:#fff;
}

.chat-input button{
  background:#d4a24c;
  border:none;
  padding:10px 15px;
  font-weight:600;
}

.bot{
  background:#1b1b24;
  padding:8px;
  border-radius:6px;
  margin-bottom:6px;
}

.user{
  background:#d4a24c;
  color:#000;
  padding:8px;
  border-radius:6px;
  margin-bottom:6px;
  text-align:right;
}
/* ===== DARK GLASS CONTENT LAYER FIX ===== */

section {
  background: transparent !important;
}

section .container {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 40px 30px;
}

/* Grid cards stay glass */
.card,
.country-card,
.approach-card,
.faq-item,
.contact-info,
.study-card {
  background: rgba(17,17,24,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}
/* ================= GAP & ALIGNMENT FIX ================= */

/* Reduce excessive vertical gaps */
section {
  padding: 50px 0 !important;
}

/* Glass container spacing control */
section .container {
  padding: 35px 30px !important;
  margin: 0 auto !important;
}

/* Headings spacing */
section h2 {
  margin-bottom: 12px !important;
}

section p {
  margin-bottom: 14px !important;
}

/* Breadcrumb spacing fix */
.breadcrumb {
  margin-bottom: 25px !important;
}

/* Grid spacing fix */
.grid,
.country-grid,
.approach-grid {
  margin-top: 25px !important;
  gap: 22px !important;
}

/* Card internal spacing */
.card,
.country-card,
.approach-card {
  padding: 22px !important;
}

/* FAQ spacing */
.faq-box {
  margin-top: 25px !important;
}

.faq-item {
  margin-bottom: 12px !important;
}

/* Contact layout alignment */
.contact-grid {
  gap: 35px !important;
  align-items: flex-start;
}

/* Footer spacing */
.site-footer {
  padding-top: 50px !important;
}

.footer-bottom {
  margin-top: 25px !important;
}
/* ================= HOME PAGE ALIGNMENT FIX ================= */

/* HERO FIX */
.hero-section{
  height:85vh;
  display:flex;
  align-items:center;
}

.hero-overlay{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
  border-radius:16px;
  padding:60px 50px;
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.hero-overlay h1{
  font-size:46px;
  margin-bottom:15px;
}

.hero-overlay p{
  font-size:18px;
  margin-bottom:25px;
  color:#d4a24c;
}

/* SECTION GAP CONTROL */
section{
  padding:55px 0 !important;
}

/* GLASS CONTENT BOX */
section .container{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
  border-radius:16px;
  padding:35px 30px;
}

/* GRID CENTER FIX */
.grid{
  justify-content:center;
}

/* CARD TEXT BALANCE */
.card{
  line-height:1.6;
  font-size:15px;
}

/* FOOTER GLASS CONSISTENCY */
.site-footer{
  background:url("images/footer.jpg") center/cover no-repeat;
}

.site-footer .container{
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(6px);
  border-radius:18px;
  padding:40px 30px;
}

/* FOOTER BOTTOM FIX */
.footer-bottom{
  background:rgba(0,0,0,0.8);
  padding-top:15px;
  padding-bottom:15px;
  margin-top:30px;
}
/* ================= GLOBAL GAP REDUCTION ================= */

/* Reduce section height */
section{
  padding: 35px 0 !important;
}

/* Reduce glass box padding */
section .container{
  padding: 25px 25px !important;
}

/* Headings spacing */
section h2{
  margin-bottom: 8px !important;
}

/* Paragraph spacing */
section p{
  margin-bottom: 10px !important;
}

/* Grid spacing */
.grid,
.country-grid,
.approach-grid{
  margin-top: 18px !important;
  gap: 18px !important;
}

/* Card padding */
.card,
.country-card,
.approach-card{
  padding: 18px !important;
}

/* Breadcrumb gap */
.breadcrumb{
  margin-bottom: 15px !important;
  padding: 8px 0 !important;
}

/* Hero spacing */
.hero-overlay{
  padding: 45px 35px !important;
}

/* Footer spacing */
.site-footer{
  padding-top: 40px !important;
}

.site-footer .container{
  padding: 30px 25px !important;
}

.footer-bottom{
  margin-top: 18px !important;
  padding-top: 12px !important;
}
/* ===== FINAL SPACING CONTROL ===== */

/* Section spacing */
section {
  padding: 30px 0 !important;
}

/* Glass container spacing */
section .container {
  padding: 22px 22px !important;
}

/* Headings */
section h2 {
  margin-bottom: 6px !important;
}

/* Paragraphs */
section p {
  margin-bottom: 8px !important;
}

/* Grid spacing */
.grid {
  margin-top: 15px !important;
  gap: 15px !important;
}

/* Cards */
.card {
  padding: 16px !important;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Hero spacing */
.hero-overlay {
  padding: 40px 30px !important;
}

/* Footer spacing */
.site-footer {
  padding-top: 35px !important;
}

.site-footer .container {
  padding: 25px 22px !important;
}

.footer-bottom {
  margin-top: 15px !important;
  padding-top: 10px !important;
}
/* ===== FINAL DROPDOWN STABLE FIX ===== */

.menu li {
  position: relative;
}

.menu li ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;

  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;
  background: rgba(12,12,18,0.95);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);

  display: none;
  z-index: 999999;
}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  list-style: none;
  padding: 10px 18px;
}

.menu li ul li:hover {
  background: rgba(255,255,255,0.08);
}

.menu li ul li a {
  display: block;
  color: #d4a24c;
}
/* ===== SERVICES PAGE VISUAL FIX ===== */

/* Grid width control */
.country-grid {
  max-width: 1100px;
  margin: 25px auto 0;
}

/* Card structure */
.country-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image rounded properly */
.country-card img {
  border-radius: 12px 12px 0 0;
}

/* Content spacing */
.country-card .card-content {
  padding: 18px;
  flex: 1;
}

/* Title spacing */
.country-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* Paragraph spacing */
.country-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Breadcrumb spacing */
.breadcrumb {
  margin-bottom: 18px !important;
}
/* ===== SERVICES CARD LAYOUT FIX ===== */

/* Force 3 cards per row */
.country-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 25px auto 0;
}

/* Responsive */
@media(max-width: 900px){
  .country-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .country-grid{
    grid-template-columns: 1fr;
  }
}

/* Card box */
.country-card{
  display:flex;
  flex-direction:column;
  background: rgba(17,17,24,0.75);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  overflow:hidden;
  transition:0.3s;
  height:100%;
  text-decoration:none;
}

/* Image */
.country-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

/* Card content */
.country-card .card-content{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:1;
  text-align:center;
}

/* Title */
.country-card h3{
  font-size:18px;
  margin-bottom:8px;
  color:#d4a24c;
}

/* Text */
.country-card p{
  font-size:14px;
  line-height:1.5;
  color:#cfcfcf;
  margin:0;
}

/* Hover */
.country-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(212,162,76,0.4);
}
/* ===== ABOUT PAGE MISSION CARDS FIX ===== */

#mission .grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:25px;
}

@media(max-width:900px){
  #mission .grid{
    grid-template-columns:1fr;
  }
}

#mission .card{
  background: rgba(17,17,24,0.75);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:30px 25px;
  min-height:180px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  text-align:center;
}

/* Title inside card */
#mission .card h3{
  font-size:20px;
  font-weight:600;
  color:#d4a24c;
  margin-bottom:12px;
}

/* Paragraph text */
#mission .card p{
  font-size:15px;
  line-height:1.6;
  color:#cfcfcf;
  margin:0;
  max-width:260px;
  margin-left:auto;
  margin-right:auto;
}

/* Remove broken word spacing */
#mission .card p,
#mission .card h3{
  word-break:normal;
  white-space:normal;
}
/* ===== ABOUT PAGE CARD CENTER ALIGNMENT ===== */

#mission .card{
  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertical center */
  align-items:center;       /* horizontal center */

  text-align:center;
  padding:32px 28px;
  min-height:200px;
}

/* Title */
#mission .card h3{
  margin-bottom:14px;
}

/* Paragraph */
#mission .card p{
  margin:0;
  max-width:260px;
}
/* ===== FINAL ABOUT CARD PERFECTION ===== */

#mission .card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  padding:34px 30px;
  min-height:210px;
}

/* Title */
#mission .card h3{
  margin-bottom:12px;
  line-height:1.2;
}

/* Paragraph */
#mission .card p{
  margin:0;
  max-width:240px;
  line-height:1.6;
}

/* ===== CTA GLASS BOX ALIGNMENT ===== */

section:last-of-type .container{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:60px 30px;
}

section:last-of-type h2{
  margin-bottom:10px;
}

section:last-of-type p{
  margin-bottom:22px;
}
/* ===== FONT OVERRIDE ===== */

body,
h1, h2, h3, h4, h5, h6,
p, a, li, span, button, input, textarea {
  font-family: "Trebuchet MS", Arial, sans-serif !important;
}
/* ===== GLOBAL FONT OVERRIDE ===== */

* {
  font-family: "Trebuchet MS", Arial, sans-serif !important;
}
body {
  letter-spacing: 0.2px;
}
/* ===== COUNTRIES PAGE FINAL ALIGNMENT ===== */

.country-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 25px auto 0;
}

@media(max-width:900px){
  .country-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .country-grid{
    grid-template-columns: 1fr;
  }
}

.country-card{
  display:flex;
  flex-direction:column;
  height:100%;
  text-align:center;
}

.country-card img{
  height:180px;
  object-fit:cover;
}

.country-card .card-content{
  padding:18px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.country-card h3{
  margin-bottom:6px;
  font-size:18px;
}

.country-card p{
  margin:0;
  font-size:14px;
  line-height:1.5;
}

/* Breadcrumb spacing polish */
.breadcrumb{
  margin-bottom:18px !important;
}
/* ===== FAQ PAGE FINAL STYLE ===== */

.faq-center{
  max-width:900px;
  margin:auto;
}

.faq-box{
  margin-top:20px;
}

.faq-item{
  background: rgba(17,17,24,0.8);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
}

.faq-question{
  padding:15px 18px;
  font-weight:600;
  cursor:pointer;
  color:#d4a24c;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question::after{
  content:"+";
  font-size:18px;
  color:#d4a24c;
}

.faq-question.active::after{
  content:"−";
}

.faq-answer{
  padding:15px 18px;
  display:none;
  color:#cfcfcf;
  border-top:1px solid rgba(255,255,255,0.08);
  line-height:1.6;
}
.contact-form .btn{
  margin-top: 10px;
}
/* ===== CONTACT FORM VERTICAL LAYOUT ===== */

.contact-form form{
  display:flex;
  flex-direction:column;
}

/* All inputs one below another */
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-bottom:15px;
}

/* Button full width optional */
.contact-form button{
  width:100%;
  margin-top:10px;
}
/* ===== CONTACT PAGE 2 COLUMN LAYOUT ===== */

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  align-items:flex-start;
}

/* Form vertical layout */
.contact-form form{
  display:flex;
  flex-direction:column;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-bottom:15px;
}

/* Button full width */
.contact-form button{
  width:100%;
  margin-top:10px;
}

/* Contact info styling */
.contact-info{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Mobile view */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* ===== FORCE 2 COLUMN CONTACT LAYOUT ===== */

.contact-section .contact-grid{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap:50px !important;
  align-items:flex-start !important;
}

/* Form vertical */
.contact-section .contact-form form{
  display:flex !important;
  flex-direction:column !important;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea{
  width:100% !important;
  margin-bottom:15px !important;
}

/* Button */
.contact-section .contact-form button{
  width:100% !important;
  margin-top:10px !important;
}

/* Contact info column */
.contact-section .contact-info{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

/* Mobile */
@media(max-width:900px){
  .contact-section .contact-grid{
    grid-template-columns:1fr !important;
  }
}
/* ================= CONTACT PAGE FINAL POLISH ================= */

/* Grid layout */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  align-items:stretch;
}

/* Form box */
.contact-form{
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border-radius:16px;
  padding:35px 30px;
}

/* Form fields */
.contact-form form{
  display:flex;
  flex-direction:column;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  background:#111;
  border:1px solid #333;
  border-radius:8px;
  color:#fff;
  font-family:"Trebuchet MS", Arial, sans-serif;
}

.contact-form textarea{
  min-height:100px;
  resize:none;
}

.contact-form button{
  width:100%;
  margin-top:8px;
}

/* Contact info box */
.contact-info{
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border-radius:16px;
  padding:45px 35px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

/* Info rows */
.contact-info .info-row{
  margin-bottom:18px;
}

.contact-info .info-row strong{
  display:block;
  font-size:15px;
  color:#fff;
  margin-bottom:6px;
}

.contact-info .info-row span{
  display:block;
  font-size:14px;
  color:#cfcfcf;
}

/* Note */
.contact-note{
  margin-top:25px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.2);
  font-size:14px;
  color:#d4a24c;
}

/* Mobile layout */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-form,
  .contact-info{
    padding:30px 25px;
  }
}
/* ===== INTAKE TABLE FINAL FIX ===== */

.intake-table{
  width:100%;
  border-collapse:collapse;
  margin-top:30px;
  background: rgba(0,0,0,0.6);
  border-radius:12px;
  overflow:hidden;
}

.intake-table thead{
  background: rgba(212,162,76,0.15);
}

.intake-table th,
.intake-table td{
  padding:14px 12px;
  border:1px solid rgba(255,255,255,0.15);
  text-align:center;
  color:#fff;
  font-size:14px;
}

.intake-table th{
  color:#d4a24c;
  font-weight:600;
}

.intake-table tr:nth-child(even){
  background: rgba(255,255,255,0.04);
}

.intake-table tr:hover{
  background: rgba(212,162,76,0.12);
}

/* Mobile table scroll */
@media(max-width:768px){
  .intake-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.admission-box {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.admission-box h3 {
  margin-bottom: 12px;
  color: #d4af37;
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.cost-box {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.cost-box h3 {
  margin-bottom: 10px;
  color: #d4af37;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;        /* keeps it in single line */
}

.hero-subtext {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #f5c86b;
  text-align: center;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

}
.values-section{
  text-align:center;
  padding:60px 20px;
}

.values-section h2{
  color:#fff;
  margin-bottom:40px;
  font-size:32px;
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:25px;
  max-width:1000px;
  margin:auto;
}

.value-card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;

  padding:30px 20px;
  color:#fff;
  font-size:16px;
  font-weight:500;

  box-shadow:
    0 0 25px rgba(255,170,60,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);

  transition:0.3s;
}

.value-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 0 35px rgba(255,170,60,0.3),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.approach-section{
  text-align:center;
  padding:70px 20px;
  color:#fff;
}

.approach-section h2{
  font-size:32px;
  margin-bottom:10px;
}

.approach-sub{
  color:#ccc;
  margin-bottom:40px;
}

.approach-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
  max-width:1200px;
  margin:auto;
}

.approach-single{
  display:flex;
  justify-content:center;
  margin-top:25px;
}

/* CARD STYLE */
.approach-card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;

  padding:28px 18px;
  color:#fff;
  font-size:15px;
  font-weight:500;

  box-shadow:
    0 0 25px rgba(255,170,60,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);

  transition:0.3s;
}

.approach-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 0 35px rgba(255,170,60,0.3),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.approach-footer{
  max-width:900px;
  margin:40px auto 0;
  color:#ddd;
  font-size:15px;
  line-height:1.7;
}
@media(max-width:1100px){
  .approach-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .approach-grid{
    grid-template-columns:1fr;
  }
}
.approach-section{
  text-align:center;
  padding:80px 20px;
  color:#fff;
}

.approach-section h2{
  font-size:36px;
  margin-bottom:15px;
}

.approach-sub{
  color:#ddd;
  margin-bottom:40px;
  font-size:16px;
}

.approach-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:25px;
  max-width:1200px;
  margin:auto;
}

.approach-single{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

/* GLASS CARD */
.approach-card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;

  padding:28px 20px;
  color:#fff;
  font-size:15px;
  font-weight:500;

  box-shadow:
    0 0 25px rgba(255,170,60,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);

  transition:0.3s;
}

.approach-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 0 35px rgba(255,170,60,0.3),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.approach-footer{
  max-width:900px;
  margin:40px auto 0;
  color:#ddd;
  font-size:15px;
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .approach-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .approach-grid{
    grid-template-columns:1fr;
  }
}
.approach-section{
  text-align:center;
  padding:80px 20px;
  color:#fff;
}

.approach-section h2{
  font-size:36px;
  margin-bottom:15px;
}

.approach-sub{
  color:#ddd;
  margin-bottom:40px;
  font-size:16px;
}

.approach-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
  max-width:1100px;
  margin:auto;
}

/* GLASS CARD */
.approach-card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;

  padding:28px 20px;
  color:#fff;
  font-size:15px;
  font-weight:500;

  box-shadow:
    0 0 25px rgba(255,170,60,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);

  transition:0.3s;
}

.approach-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 0 35px rgba(255,170,60,0.3),
    inset 0 0 25px rgba(255,255,255,0.08);
}

.approach-footer{
  max-width:900px;
  margin:45px auto 0;
  color:#ddd;
  font-size:15px;
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .approach-grid-3{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .approach-grid-3{
    grid-template-columns:1fr;
  }
}
.mv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

/* CARD */
.mv-card{
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.15);
  border-radius:16px;

  padding:35px 30px;

  color:#fff;
  text-align:left;

  box-shadow:
    0 0 25px rgba(255,170,60,0.15),
    inset 0 0 20px rgba(255,255,255,0.04);

  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertical alignment */
}

/* HEADINGS */
.mv-card h3{
  color:#f5c86b;
  font-size:20px;
  margin-bottom:18px;
  text-align:center;
}

/* PARAGRAPH */
.mv-card p{
  font-size:15px;
  line-height:1.7;
  color:#ddd;
  text-align:justify;
}

/* VALUES LIST */
.mv-card ul{
  padding-left:20px;
  margin:0;
}

.mv-card ul li{
  margin-bottom:8px;
  color:#ddd;
  font-size:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .mv-grid{
    grid-template-columns:1fr;
  }
}
.chat-widget{position:fixed;bottom:20px;right:20px;z-index:9999;}
.chat-button{background:#f5c86b;color:#000;padding:12px 14px;border-radius:50%;cursor:pointer;font-size:18px;}
.chat-box{display:none;flex-direction:column;width:300px;height:380px;background:#111;border-radius:12px;overflow:hidden;}
.chat-header{background:#000;color:#f5c86b;padding:10px;font-weight:bold;display:flex;justify-content:space-between;}
.chat-body{flex:1;padding:10px;overflow-y:auto;font-size:14px;}
.chat-footer{display:grid;grid-template-columns:1fr 1fr;gap:5px;padding:8px;}
.chat-footer button{padding:6px;border:none;border-radius:6px;background:#f5c86b;cursor:pointer;}
.bot{background:#222;padding:6px 8px;border-radius:6px;margin-bottom:6px;color:#fff;}
.user{background:#f5c86b;padding:6px 8px;border-radius:6px;margin-bottom:6px;color:#000;text-align:right;}
.belief-box-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin:25px auto;
  max-width:900px;
}

.belief-box{
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:16px 18px;
  text-align:center;
  font-weight:500;
  color:#fff;
  backdrop-filter:blur(6px);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.belief-box:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(0,0,0,0.4);
}
.theme-card{
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:18px 20px;
  color:#ffffff;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.6);
}
.site-footer{
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
  border-radius:20px;
  padding:40px 30px 20px;
  color:#fff;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(5,1fr); /* 5 columns */
  gap:30px;
  max-width:1400px;
  margin:auto;
}

.footer-col h3{
  color:#f5c86b;
  margin-bottom:12px;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:8px;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
}

.footer-col a:hover{
  color:#f5c86b;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:0.8;
}

/* Tablet */
@media(max-width:1100px){
  .footer-container{
    grid-template-columns:repeat(3,1fr);
  }
}

/* Mobile */
@media(max-width:700px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:450px){
  .footer-container{
    grid-template-columns:1fr;
  }
}
/* CONTACT FORM FIX */

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-box {
  background: rgba(0,0,0,0.75);
  padding: 30px;
  border-radius: 12px;
  max-width: 550px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.contact-form-box textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-box button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-box {
    max-width: 100%;
  }
}
section {
  padding: 70px 0;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
}

p {
  line-height: 1.7;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.country-card,
.belief-box,
.mv-card,
.approach-card {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.country-card:hover,
.belief-box:hover,
.mv-card:hover,
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255,215,0,0.15);
}
.btn {
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.btn-gold {
  background: linear-gradient(90deg,#d4af37,#f5d77a);
  color: #000;
}

.btn-gold:hover {
  transform: scale(1.05);
}
.hero-section h1 {
  font-size: 42px;
}

.hero-section h2 {
  font-size: 22px;
  opacity: 0.9;
}
@media(max-width:768px){
.hero-section h1{font-size:30px;}
}
header {
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
}
.menu li a {
  transition: 0.3s;
}
.menu li a:hover {
  color: #f5d77a;
}
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
  color: #f5d77a;
}
input, select, textarea {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}
/* ===============================
   GLOBAL TYPOGRAPHY POLISH
================================ */

body {
  font-size: 16.5px;           /* Slightly larger than default */
  line-height: 1.7;
  color: #eaeaea;              /* keeps your dark theme clean */
}

/* Paragraph spacing */
p {
  margin-bottom: 14px;
}

/* Headings spacing */
h1, h2, h3 {
  margin-bottom: 15px;
}

h2 {
  margin-top: 10px;
}

/* ===============================
   SECTION SPACING POLISH
================================ */

section {
  padding: 70px 0;             /* Consistent vertical spacing */
}

/* Banner sections stay unchanged */
.country-banner,
.hero-section {
  padding: 0;
}

/* ===============================
   CONTAINER WIDTH CONTROL
================================ */

.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===============================
   CARD / GRID READABILITY
================================ */

.approach-card,
.belief-box,
.country-card {
  line-height: 1.5;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  body {
    font-size: 15.5px;
  }

  section {
    padding: 50px 0;
  }

  p {
    margin-bottom: 12px;
  }

}
.hero-section {
  height: 80vh;              /* Reduce from 100vh if used */
  min-height: 500px;         /* Prevent over-stretching */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  padding: 40px 30px;        /* Reduce padding */
  max-width: 900px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 80px 0;
  }

  .hero-overlay {
    padding: 25px 20px;
  }
}

/* ===============================
   HERO ANIMATION
================================ */

/* Initial state */
.hero-content {
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s ease-out forwards;
}

/* Staggered animation */
.hero-badge {
  opacity: 0;
  animation: heroFade 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-content h1 {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-subtext {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

/* Keyframes */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ===============================
   BUTTON HOVER EFFECTS
================================ */

.btn {
  transition: all 0.25s ease;
  position: relative;
}

/* Gold button hover */
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 200, 107, 0.35);
  filter: brightness(1.05);
}

/* Outline button hover */
.btn-outline:hover {
  transform: translateY(-2px);
  background-color: rgba(245, 200, 107, 0.1);
  border-color: #f5c86b;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Click effect */
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
/* ===============================
   TRUST SECTION
================================ */

.trust-modern{
  background:#0f0f0f;
  padding:80px 0;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.trust-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 25px 50px rgba(0,0,0,0.6);
  object-fit:cover;
}

.trust-badge{
  display:inline-block;
  background:rgba(245,200,107,0.12);
  color:#f5c86b;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:12px;
}

.trust-content h2{
  margin-bottom:14px;
}

.trust-content p{
  color:#ddd;
  max-width:520px;
}

.trust-points{
  margin:20px 0 25px;
  padding-left:18px;
}

.trust-points li{
  margin-bottom:8px;
  color:#f5c86b;
  font-size:14px;
}

/* Mobile */
@media(max-width:900px){
  .trust-grid{
    grid-template-columns:1fr;
  }

  .trust-image{
    order:2;
  }

  .trust-content{
    order:1;
    text-align:center;
  }

  .trust-content p{
    margin:auto;
  }

  .trust-points{
    text-align:left;
    max-width:360px;
    margin:20px auto;
  }
}
}
:root {
  --brand-gold: #f5c86b;
  --brand-dark: #0f0f0f;
  --brand-gray: #1a1a1a;
  --brand-light: #ffffff;
}
h2 {
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--brand-gold);
  display: block;
  margin-top: 8px;
}
.belief-box,
.approach-card,
.country-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--brand-gold);
}
.trust-points li {
  color: var(--brand-gold);
}
.final-cta {
  background: linear-gradient(135deg, #111, #1c1c1c);
  border-top: 2px solid var(--brand-gold);
}
.btn-gold {
  background: var(--brand-gold);
  color: #000;
}

.btn-outline {
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}
.menu li a:hover {
  color: var(--brand-gold);
}
/* ===============================
   SECTION BACKGROUND ALTERNATION
================================ */

/* Default section background */
section {
  background: #0f0f0f;
}

/* Alternate background */
section:nth-of-type(even) {
  background: #151515;
}

/* Keep hero and banner untouched */
.hero-section,
.country-banner {
  background: none;
}

/* Add subtle divider */
section {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* ===============================
   CARD HOVER ANIMATION
================================ */

.belief-box,
.approach-card,
.country-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Hover effect */
.belief-box:hover,
.approach-card:hover,
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  border-color: var(--brand-gold);
}

/* Optional: slight glow on gold accent */
.belief-box:hover strong,
.country-card:hover h3 {
  color: var(--brand-gold);
}

/* ===============================
   FOUNDER SECTION
================================ */

.founder-section {
  background: #0f0f0f;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  object-fit: cover;
}

.founder-content p {
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-image {
    order: 2;
  }

  .founder-content {
    order: 1;
  }
}
/* ===============================
   FOOTER LOGO
================================ */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 140px;      /* keeps footer compact */
  max-width: 100%;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 120px;
  }
}
.site-footer {
  padding: 25px 0;   /* reduce top & bottom space */
  font-size: 14px;   /* slightly smaller text */
}

.footer-container {
  gap: 20px;         /* reduce column spacing */
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-col p,
.footer-col ul li a {
  font-size: 13px;
  line-height: 1.5;
}

.footer-col ul li {
  margin-bottom: 4px;  /* reduce list spacing */
}

.footer-bottom {
  padding: 10px 0;
  font-size: 12px;
}
.site-footer {
  padding: 18px 0;
}

.footer-container {
  gap: 28px; /* keeps columns visually separated */
}

.footer-col h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.footer-col ul li {
  margin-bottom: 3px;
}

.footer-col ul li a {
  font-size: 13px;
}

.footer-bottom {
  padding: 8px 0;
  font-size: 12px;
}
.site-footer hr,
.site-footer .divider {
  margin: 10px 0;
}
.site-footer {
  padding: 18px 0;           /* vertical only */
}

.footer-container {
  padding: 0 30px;          /* horizontal padding (left & right) */
}
.trust-content p{
  max-width: 520px;
  line-height: 1.8;
}

.trust-points li{
  margin-bottom: 10px;
  line-height: 1.6;
}

.trust-content a{
  display:inline-block;
  margin-top:20px;
  padding:10px 22px;
  border:1px solid #f5c86b;
  border-radius:30px;
  color:#f5c86b;
  transition:0.3s;
}

.trust-content a:hover{
  background:#f5c86b;
  color:#000;
}
.trust-badge{
  opacity:0.85;
  font-size:12px;
}
.positioning-section h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  color: #f5c86b;
  font-size: 17px;
}

.positioning-section p {
  margin-bottom: 14px;
  max-width: 900px;
}
.positioning-cards{
  background:#0f0f0f;
  padding:70px 0;
}

.positioning-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-top:30px;
}

.positioning-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:26px 24px;
  transition:0.3s;
}

.positioning-card h3{
  color:#f5c86b;
  font-size:17px;
  margin-bottom:10px;
}

.positioning-card p{
  color:#ddd;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

.positioning-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Mobile */
@media(max-width:800px){
  .positioning-grid{
    grid-template-columns:1fr;
  }
}
.beliefs-section{
  background:#151515;
  padding:70px 0;
}

.beliefs-intro{
  text-align:center;
  max-width:700px;
  margin:10px auto 30px;
  color:#ccc;
  font-size:15px;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.belief-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:24px 22px;
  transition:0.3s;
}

.belief-card h3{
  color:#f5c86b;
  font-size:16px;
  margin-bottom:8px;
}

.belief-card p{
  color:#ddd;
  font-size:14.5px;
  line-height:1.6;
  margin:0;
}

.belief-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:1000px){
  .beliefs-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .beliefs-grid{
    grid-template-columns:1fr;
  }
}
.services-modern{
  background:#0f0f0f;
  padding:70px 0;
}

.services-intro{
  text-align:center;
  max-width:800px;
  margin:10px auto 30px;
  color:#ccc;
  font-size:15px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:24px 22px;
  transition:0.3s;
}

.service-card h3{
  color:#f5c86b;
  font-size:17px;
  margin-bottom:8px;
}

.service-card p{
  color:#ddd;
  font-size:14.5px;
  line-height:1.6;
  margin:0;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:1000px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}
.process-modern{
  background:#151515;
  padding:70px 0;
}

.process-intro{
  text-align:center;
  max-width:800px;
  margin:10px auto 30px;
  color:#ccc;
  font-size:15px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.process-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:22px 18px;
  text-align:left;
  transition:0.3s;
}

.step-label{
  display:inline-block;
  background:rgba(245,200,107,0.15);
  color:#f5c86b;
  padding:4px 10px;
  border-radius:14px;
  font-size:12px;
  margin-bottom:8px;
}

.process-card h3{
  color:#f5c86b;
  font-size:15px;
  margin-bottom:6px;
}

.process-card p{
  color:#ddd;
  font-size:13.5px;
  line-height:1.6;
  margin:0;
}

.process-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:1200px){
  .process-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:700px){
  .process-grid{
    grid-template-columns:1fr;
  }
}
.countries-modern{
  background:#0f0f0f;
  padding:70px 0;
}

.countries-intro{
  text-align:center;
  max-width:750px;
  margin:10px auto 30px;
  color:#ccc;
}

.countries-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.country-box{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:18px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:0.3s;
}

.country-box img{
  width:34px;
  height:22px;
  object-fit:cover;
  border-radius:3px;
}

.country-box span{
  color:#fff;
  font-size:14.5px;
}

.country-box:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* CTA */
.countries-note{
  text-align:center;
  margin-top:25px;
  color:#ccc;
}

.countries-cta{
  text-align:center;
  margin-top:20px;
}

/* Responsive */
@media(max-width:900px){
  .countries-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .countries-grid{
    grid-template-columns:1fr;
  }
}
.who-serve-modern{
  background:#151515;
  padding:70px 0;
}

.who-serve-intro{
  text-align:center;
  max-width:750px;
  margin:10px auto 30px;
  color:#ccc;
  font-size:15px;
}

.who-serve-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.serve-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:22px 18px;
  text-align:center;
  transition:0.3s;
}

.serve-icon{
  display:inline-block;
  font-size:26px;
  margin-bottom:8px;
}

.serve-card h3{
  color:#f5c86b;
  font-size:15px;
  margin-bottom:6px;
}

.serve-card p{
  color:#ddd;
  font-size:13.5px;
  line-height:1.5;
  margin:0;
}

.serve-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:1200px){
  .who-serve-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:700px){
  .who-serve-grid{
    grid-template-columns:1fr;
  }
}
.commitment-modern{
  background:#0f0f0f;
  padding:70px 0;
}

.commitment-intro{
  text-align:center;
  max-width:800px;
  margin:10px auto 30px;
  color:#ccc;
  font-size:15px;
}

.commitment-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.commitment-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:24px 22px;
  transition:0.3s;
}

.commitment-card h3{
  color:#f5c86b;
  font-size:17px;
  margin-bottom:8px;
}

.commitment-card p{
  color:#ddd;
  font-size:14.5px;
  line-height:1.6;
  margin:0;
}

.commitment-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:900px){
  .commitment-grid{
    grid-template-columns:1fr;
  }
}
.final-cta-modern{
  background: linear-gradient(135deg, #111, #1e1e1e);
  padding:110px 0;
  border-top:3px solid #f5c86b;
  border-bottom:3px solid #f5c86b;
}

.final-cta-content{
  text-align:center;
  max-width:900px;
  margin:auto;
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:18px;
  padding:60px 40px;
  box-shadow:0 0 40px rgba(245,200,107,0.15);
}

.final-cta-content h2{
  font-size:34px;
  margin-bottom:15px;
  color:#fff;
}

.final-cta-content p{
  color:#eee;
  font-size:16px;
  max-width:720px;
  margin:0 auto 30px;
}

.final-cta-actions .btn{
  min-width:200px;
}
.final-cta-modern{
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding:120px 0;
  border-top:3px solid #f5c86b;
  border-bottom:3px solid #f5c86b;
}

.final-cta-content{
  text-align:center;
  max-width:950px;
  margin:auto;

  background:rgba(0,0,0,0.75);   /* darker glass */
  border:1px solid rgba(255,255,255,0.15);
  border-radius:22px;
  padding:70px 50px;

  box-shadow:
    0 0 40px rgba(0,0,0,0.9),
    0 0 35px rgba(245,200,107,0.25);
}

.final-cta-content h2{
  font-size:36px;
  margin-bottom:18px;
  color:#ffffff;
}

.final-cta-content p{
  color:#f0f0f0;
  font-size:17px;
  max-width:750px;
  margin:0 auto 35px;
  line-height:1.7;
}

.final-cta-actions{
  display:flex;
  justify-content:center;
  gap:22px;
}

/* Make buttons POP */
.final-cta-actions .btn-gold{
  background: linear-gradient(90deg,#f5c86b,#ffd98e);
  color:#000;
  font-weight:700;
  box-shadow:0 10px 25px rgba(245,200,107,0.45);
}

.final-cta-actions .btn-outline{
  border:2px solid #f5c86b;
  color:#f5c86b;
  background:rgba(245,200,107,0.12);
}

.final-cta-actions .btn:hover{
  transform:translateY(-2px);
}
.hero-actions .btn-gold{
  background: linear-gradient(90deg,#f5c86b,#ffd98e);
  color:#000;
  box-shadow:0 8px 22px rgba(245,200,107,0.45);
}

.hero-actions .btn-outline{
  background:rgba(245,200,107,0.12);
  border:2px solid #f5c86b;
  color:#f5c86b;
}
/* ===================== */
/* UNIVERSAL CARD RULES */
/* ===================== */

.beliefs-grid,
.positioning-grid,
.services-grid,
.process-grid,
.countries-grid,
.who-serve-grid,
.commitment-grid{
  display:grid;
  gap:24px;
}

/* Desktop */
.beliefs-grid,
.positioning-grid,
.services-grid,
.commitment-grid{
  grid-template-columns:repeat(3,1fr);
}

/* Process has 5 steps */
.process-grid{
  grid-template-columns:repeat(5,1fr);
}

/* Who we serve */
.who-serve-grid{
  grid-template-columns:repeat(4,1fr);
}

/* Countries */
.countries-grid{
  grid-template-columns:repeat(3,1fr);
}

/* Card base */
.belief-card,
.positioning-card,
.service-card,
.process-card,
.country-box,
.serve-card,
.commitment-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* Tablet */
@media(max-width:1100px){
  .beliefs-grid,
  .positioning-grid,
  .services-grid,
  .commitment-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .who-serve-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .countries-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:650px){
  .beliefs-grid,
  .positioning-grid,
  .services-grid,
  .process-grid,
  .countries-grid,
  .who-serve-grid,
  .commitment-grid{
    grid-template-columns:1fr;
  }
}
/* ======================= */
/* GLOBAL CARD GRID FIX   */
/* ======================= */

.beliefs-grid,
.positioning-grid,
.services-grid,
.commitment-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

.countries-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.who-serve-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* Force equal height cards */
.belief-card,
.positioning-card,
.service-card,
.process-card,
.commitment-card,
.country-box,
.serve-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* Improve internal spacing */
.belief-card p,
.positioning-card p,
.service-card p,
.process-card p,
.commitment-card p{
  margin-top:6px;
}

/* Tablet */
@media(max-width:1100px){
  .beliefs-grid,
  .positioning-grid,
  .services-grid,
  .commitment-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .countries-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .who-serve-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:650px){
  .beliefs-grid,
  .positioning-grid,
  .services-grid,
  .process-grid,
  .commitment-grid,
  .countries-grid,
  .who-serve-grid{
    grid-template-columns:1fr;
  }
}


/* Mobile */
@media(max-width:700px){
  .final-cta-content h2{
    font-size:26px;
  }

  .final-cta-actions{
    flex-direction:column;
    gap:14px;
  }
}
.hero-actions{
  margin-top:30px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-actions .btn{
  box-shadow:0 8px 20px rgba(0,0,0,0.6);
}

.hero-actions .btn-gold{
  background:linear-gradient(90deg,#f5c86b,#ffd98e);
}

.hero-actions .btn-outline{
  background:rgba(245,200,107,0.08);
}
.btn{
  letter-spacing:0.5px;
  font-weight:700;
}

.btn-gold{
  box-shadow:0 8px 20px rgba(245,200,107,0.35);
}

.btn-outline{
  background:rgba(245,200,107,0.12);
}
.trust-intro{
  color:#e0e0e0;
  max-width:560px;
  line-height:1.7;
  margin-bottom:24px;
  font-size:15px;
}

.trust-points-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:28px;
}

.trust-point{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);
  border-left:3px solid #f5c86b;
  border-radius:10px;
  padding:12px 14px;
  color:#f5c86b;
  font-size:13.5px;
}

/* Mobile */
@media(max-width:700px){
  .trust-points-grid{
    grid-template-columns:1fr;
  }
}
/* ABOUT PAGE CARDS — MATCH HOMEPAGE */

.approach-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:25px;
}

.approach-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-left:3px solid #f5c86b;
  border-radius:14px;
  padding:24px 22px;
  transition:0.3s;
  color:#ddd;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.approach-card h3{
  color:#f5c86b;
  font-size:17px;
  margin-bottom:8px;
}

.approach-card p{
  font-size:14.5px;
  line-height:1.6;
  margin:0;
}

.approach-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.5);
  border-color:#f5c86b;
}

/* Responsive */
@media(max-width:1100px){
  .approach-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .approach-grid{
    grid-template-columns:1fr;
  }
}
.country-box img{
  width:48px;          /* increase from small size */
  height:auto;
  margin-bottom:10px;
  filter: drop-shadow(0 0 6px rgba(245,200,107,0.4));
  transition: transform 0.3s ease;
}

.country-box:hover img{
  transform: scale(1.1);
}
.country-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.process-route{
  padding:100px 0;
  text-align:center;
}

.process-intro{
  max-width:700px;
  margin:10px auto 50px;
  color:#ccc;
  font-size:15px;
}

/* Track */
.route-track{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* Steps */
.route-step{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:22px 18px 20px;
  width:100%;
  max-width:210px;
  position:relative;
}

.route-step h3{
  color:#f5c86b;
  font-size:15px;
  margin:6px 0 6px;
}

.route-step p{
  font-size:13.5px;
  color:#ddd;
}

/* Numbers */
.step-number{
  position:absolute;
  top:-16px;
  left:50%;
  transform:translateX(-50%);
  background:#f5c86b;
  color:#000;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* Connecting line */
.route-line{
  flex:1;
  height:3px;
  background:linear-gradient(to right, transparent, #f5c86b, transparent);
}

/* Highlight center step */
.route-focus{
  border-color:#f5c86b;
  box-shadow:0 0 25px rgba(245,200,107,0.3);
}

/* Responsive */
@media(max-width:950px){
  .route-track{
    flex-direction:column;
  }

  .route-line{
    width:3px;
    height:40px;
    background:linear-gradient(to bottom, transparent, #f5c86b, transparent);
  }
}
.route-track{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Step card */
.route-step{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:22px 18px;
  width:100%;
  max-width:220px;
  position:relative;
}

/* Step badge inside card */
.step-badge{
  position:absolute;
  top:-12px;
  left:16px;
  background:#f5c86b;
  color:#000;
  font-weight:700;
  font-size:12px;
  padding:4px 10px;
  border-radius:12px;
}

/* Connector arrows BETWEEN cards */
.route-step:not(:last-child)::after{
  content:"→";
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);
  color:#f5c86b;
  font-size:20px;
  font-weight:700;
}

/* Highlight middle step */
.route-focus{
  border-color:#f5c86b;
  box-shadow:0 0 18px rgba(245,200,107,0.25);
}

/* Mobile */
@media(max-width:950px){
  .route-track{
    flex-direction:column;
  }

  .route-step:not(:last-child)::after{
    content:"↓";
    right:50%;
    top:100%;
    transform:translateX(50%);
    margin-top:8px;
  }

  .step-badge{
    top:-10px;
    left:12px;
  }
}
.about-image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-image img,
.about-story-image img,
.about-evolution-image img{
  width:100%;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.about-story-image,
.about-evolution-image{
  margin-top:30px;
}

/* Mobile */
@media(max-width:900px){
  .about-image-grid{
    grid-template-columns:1fr;
  }
}
/* About lists */
.about-list{
  margin:15px 0 20px;
  padding-left:20px;
}
.about-list li{
  margin-bottom:6px;
  color:#ddd;
}

/* Philosophy block */
.philosophy-strip{
  background:linear-gradient(135deg, rgba(245,200,107,0.05), rgba(0,0,0,0));
  padding:80px 0;
  text-align:center;
}
.philosophy-quote{
  font-size:20px;
  font-weight:600;
  color:#f5c86b;
  margin:25px auto;
  max-width:800px;
}

/* Identity / principle cards (reuse your card style) */
.approach-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:24px;
  margin-top:30px;
}
.approach-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:20px;
  transition:all 0.3s ease;
}
.approach-card:hover{
  border-color:#f5c86b;
  transform:translateY(-4px);
}

/* CTA */
.final-cta-modern{
  background:linear-gradient(135deg, rgba(0,0,0,0.9), rgba(245,200,107,0.08));
  padding:90px 0;
}
.final-cta-content{
  text-align:center;
}
.final-cta-actions{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:15px;
}

/* Images */
.hero-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}
@media(max-width:768px){

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text h1{
    font-size:26px;
  }

  .philosophy-quote{
    font-size:17px;
  }

  .final-cta-actions{
    flex-direction:column;
  }

}
.country-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  overflow:hidden;
  transition:all 0.35s ease;
  text-decoration:none;
  position:relative;
}
.country-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.country-card .card-content{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.country-card:hover{
  transform:translateY(-6px);
  border-color:#f5c86b;
  box-shadow:0 15px 35px rgba(245,200,107,0.15);
}

.country-card:hover img{
  transform:scale(1.05);
}
.country-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
}
.country-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* 3 columns */
  gap:24px;
}
@media(max-width:900px){
  .country-grid{
    grid-template-columns:repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media(max-width:500px){
  .country-grid{
    grid-template-columns:1fr; /* 1 column on mobile */
  }
}
.country-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:30px;
}

@media(max-width:900px){
  .country-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:500px){
  .country-grid{
    grid-template-columns:1fr;
  }
}
.country-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  transition:all 0.35s ease;
  position:relative;
}
.country-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.country-card .card-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.country-card h3{
  margin:0 0 8px;
  font-size:1.05rem;
}

.country-card p{
  margin:0;
  line-height:1.5;
  opacity:0.9;
}
.country-card:hover{
  transform:translateY(-6px);
  border-color:#f5c86b;
  box-shadow:0 15px 35px rgba(245,200,107,0.18);
}

.country-card:hover img{
  transform:scale(1.05);
}
.country-card{
  opacity:0;
  transform:translateY(20px);
}

.country-card.show{
  opacity:1;
  transform:translateY(0);
  transition:all 0.6s ease;
}
.contact-form label {
  display:block;
  font-size:13px;
  color:#f5c86b;
  margin-bottom:4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size:14px;
}
.advisory-note{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 15px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #f5c86b;
  text-align: center;
  backdrop-filter: blur(6px);
}
.btn-gold {
  color: #000 !important;        /* Force visible text */
  background: linear-gradient(90deg,#d4af37,#f5d77a);
}

.btn-gold:hover {
  color: #000 !important;
}
.btn-gold{
  color:#111 !important;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}
:root {
  --primary: #c58b2a;      /* your brand main color */
  --secondary: #1a0f05;    /* dark background */
  --accent: #ffb347;       /* highlight */
  --text: #ffffff;
}
.process-route {
  padding: 80px 0;
  background: radial-gradient(circle at top, var(--secondary), #050302);
  color: var(--text);
}

.process-route h2,
.process-route .process-intro {
  text-align: center;
}

.route-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
  flex-wrap: nowrap; /* FORCE SINGLE ROW */
}

.route-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,139,42,0.5);
  border-radius: 14px;
  padding: 18px 16px;
  width: 210px;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  animation: stepIn 0.8s forwards;
}

.route-arrow:nth-child(2) { animation-delay: 0.4s; }
.route-arrow:nth-child(4) { animation-delay: 0.8s; }
.route-arrow:nth-child(6) { animation-delay: 1.2s; }
.route-arrow:nth-child(8) { animation-delay: 1.6s; }

.step-tag {
  display: inline-block;
  background: var(--primary);
  color: #111;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

@keyframes stepIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowIn {
  to { opacity: 1; }
}

/* Mobile → horizontal scroll instead of wrapping */
@media(max-width: 900px) {
  .route-track {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
.route-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,139,42,0.5);
  border-radius: 14px;

  width: 220px;          /* SAME WIDTH */
  height: 180px;         /* SAME HEIGHT */

  padding: 16px 14px;
  text-align: center;

  display: flex;         /* ALIGN CONTENT */
  flex-direction: column;
  justify-content: center;

  gap: 8px;

  opacity: 0;
  transform: translateY(25px);
  animation: stepIn 0.8s forwards;
}
.route-step h3 {
  font-size: 16px;
  line-height: 1.3;
  margin: 4px 0;
}

.route-step p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #ddd;
}
.step-tag {
  align-self: center;
  background: var(--primary);
  color: #111;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}
.route-arrow {
  display: none;
}
/* Study Abroad Hero Image */
.study-hero{
  background-image: url("images/study-abroad.jpg"); /* change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.study-hero{
  background-image: url("images/study-abroad.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ===============================
   STUDY ABROAD HERO IMAGE
================================ */

.study-hero{
  background-image: url("images/study-abroad.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* overlay to keep text readable */
.study-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  );
  z-index: 0;
}

.study-hero .hero-content{
  position: relative;
  z-index: 1;
}
/* ===============================
   2 COLUMN HERO LAYOUT
================================ */

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text{
  text-align: left;
}

.hero-image img{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px){
  .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text{
    text-align: center;
  }

  .hero-image img{
    max-height: 260px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

p {
  line-height: 1.7;
}

h2 {
  margin-bottom: 20px;
}

.services-grid,
.beliefs-grid,
.countries-grid {
  gap: 30px;
}
/* FIX DROPDOWN WHITE BOX ISSUE */
select {
  background-color: #111 !important;
  color: #fff !important;
  border: 1px solid #333;
}

/* Style dropdown list */
select option {
  background-color: #111;
  color: #fff;
}

/* Prevent huge dropdown height */
select {
  max-height: 45px;
}

/* Chrome / Edge dropdown fix */
select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(245,200,107,0.3);
}
/* ===== FAQ FIX ===== */

.faq-center {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.55);
}

.faq-question {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  color: #f5c86b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ddd;
  line-height: 1.6;
}
