

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@600;700&display=swap');

body{
  font-family:'Inter',sans-serif;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;  
}

html{
  scroll-behavior:smooth;   
}
                                        
body{
  font-family:'Inter',sans-serif;  
  background:#f8fafc;
  color:#1e293b;
  line-height:1.6;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e2e8f0;
  z-index:1000;
}

.navbar{
  width:92%;
  max-width:1400px;
  height:85px;
  margin:auto; 
  display:flex;
  align-items:center;
  justify-content:space-between; 
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav ul{
  list-style:none;   
  display:flex;
  gap:34px; 
}

nav ul li a{
  text-decoration:none;  
  color:#1e293b;
  font-weight:500;
  transition:.3s;
}

nav ul li a:hover{
  color:#123a8a;
}

.navbar {
  height: 110px;
}

/* ================= BUTTONS ================= */
.btn,
.form-btn,
.contact-btn{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  text-decoration:none;
  border:none;
  padding:15px 38px;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;  
}

.btn:hover,
.form-btn:hover,
.contact-btn:hover{
  background:#ffca1a;
  transform:translateY(-2px); 
}

/* ================= GLOBAL ================= */
section{
  padding:100px 8%;
}

.section-title,
.process-title,
.why-title,
.faq-title,
.contact-title{
  font-family:'Cormorant Garamond',serif;
  font-size:54px;
  text-align:center;
  color:#123a8a;
  margin-bottom:18px;
}

.section-sub,
.process-text,
.why-text,
.faq-text,
.contact-subtitle{
  max-width:820px;
  margin:0 auto 55px;
  text-align:center;
  color:#64748b;
}

/* ================================================= */
/* ===================== HERO ====================== */
/* ================================================= */

.hero{
  margin-top:85px;
  min-height:100vh;
  padding:90px 8%;
  background:
  radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 25%),
  radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 20%),
  linear-gradient(135deg,#0f2d6b,#123a8a,#1b4fb3);
  display:flex;
  align-items:center;
}

.hero-wrapper{
  max-width:1300px;
  width:100%;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.hero-tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:20px;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:78px;
  line-height:1;
  color:#fff;
  margin-bottom:20px;
}

.hero h1 span{
  color:#ffd34d;
}

.hero p{
  font-size:19px;
  color:rgba(255,255,255,.9);
  line-height:1.9;
  margin-bottom:28px;
  max-width:620px;
}

.hero-buttons .btn{
  background:#fff;
  color:#0f2d6b;
  border:none;
  transition:0.3s ease;
}

.hero-buttons .btn:hover{
  background:#ffd34d;
}

.hero-link{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  align-self:center;
}

.hero-right{
  display:flex;
  justify-content:center;
}

.hero-panel{
  width:100%;
  max-width:480px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.metric{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:28px;
  text-align:center;
  backdrop-filter:blur(6px);
}

.metric h3{
  font-size:34px;
  color:#ffd34d;
  margin-bottom:8px;
}

.metric span{
  font-size:14px;
  color:#fff;
  line-height:1.5;
}

/* ================================================= */
/* ===================== ABOUT ===================== */
/* ================================================= */

.about-section{
  background:#f8fafc;
}

.about-container{
  max-width:1280px;
  margin:auto;
}

.about-intro{
  text-align:center;
  max-width:900px;
  margin:0 auto 55px;
}

.intro-tag{
  display:none;
}

.intro-title{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  color:#123a8a;
  margin-bottom:16px;
}

.intro-text{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
}

.about-box{
  background:#fff;
  border-radius:28px;
  padding:60px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.about-badge{
  display:inline-block;
  background:#123a8a;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:16px;
}

.about-title{
  font-family:'Cormorant Garamond',serif;
  font-size:56px;
  color:#123a8a;
  margin-bottom:16px;
}

.about-text{
  color:#64748b;
  line-height:1.9;
  margin-bottom:14px;
}

.about-stats{
  display:grid;
  gap:16px;
}

.stat-card{
  background:#f8fafc;
  border-left:5px solid #ffd34d;
  padding:22px;
  border-radius:18px;
}

.stat-card h3{
  color:#123a8a;
  margin-bottom:6px;
}

.stat-card span{
  color:#64748b;
}



/* ================================================= */
/* ==================== SERVICES =================== */
/* ================================================= */

.services-section{
  background:#ffffff;
}

.services-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 55px;
}

.services-tag{
  display:inline-block;
  background:#123a8a;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.services-title{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  color:#123a8a;
  margin-bottom:16px;
}

.services-text{
  color:#64748b;
  line-height:1.9;
}

.services-list{
  max-width:1100px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-row{
  display:grid;
  grid-template-columns:110px 1fr;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  overflow:hidden;
  transition:.3s;
}

.service-row:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.service-index{
  background:#ffd34d;
  color:#123a8a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:700;
}

.service-info{
  padding:28px 32px;
}

.service-info h3{
  color:#123a8a;
  font-size:28px;
  margin-bottom:10px;
}

.service-info p{
  color:#64748b;
  line-height:1.8;
}



/* ================= PROCESS - ================= */

.process-section{
  padding:110px 8%;
  background:linear-gradient(180deg,#eef4ff,#ffffff);
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.process-container{
  max-width:1200px;
  margin:auto;
}

.process-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
}

.process-tag{
  display:inline-block;
  background:#123a8a;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.process-title{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  color:#123a8a;
  margin-bottom:16px;
}

.process-text{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
}

.process-timeline{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:90px 1fr;
  gap:22px;
  align-items:flex-start;
}

.timeline-line{
  position:absolute;
  left:44px;
  top:70px;
  width:2px;
  height:calc(100% + 24px);
  background:#cbd5e1;
}

.timeline-step{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#ffd34d;
  color:#123a8a;
  font-size:30px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.timeline-content{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.timeline-content h3{
  font-size:30px;
  color:#123a8a;
  margin-bottom:10px;
}

.timeline-content p{
  color:#64748b;
  line-height:1.8;
  font-size:16px;
}

@media(max-width:768px){

  .process-title{
    font-size:44px;
  }

  .timeline-item{
    grid-template-columns:1fr;
  }

  .timeline-line{
    display:none;
  }

  .timeline-step{
    width:70px;
    height:70px;
    font-size:24px;
  }

  .timeline-content h3{
    font-size:24px;
  }
}

/* ================= FAQ ================= */


.faq-section{
  padding:110px 8%;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.faq-container{
  max-width:1280px;
  margin:auto;
}

.faq-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 60px;
}

.faq-tag{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.faq-title{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  color:#123a8a;
  margin-bottom:16px;
}

.faq-text{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
}





.faq-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:8px 22px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  font-size:20px;
  font-weight:700;
  color:#123a8a;
  cursor:pointer;
  text-align:left;
}

.faq-question span{
  font-size:28px;
  color:#ffd34d;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 0 18px;
  color:#64748b;
  line-height:1.8;
}

.faq-item.active .faq-answer{
  max-height:220px;
}

@media(max-width:992px){
  .faq-layout{
    grid-template-columns:1fr;
  }

  .faq-title{
    font-size:44px; 
  }
}

@media(max-width:768px){
  .faq-title{
    font-size:38px;   
  }

  .faq-question{
    font-size:18px;  
  }
}

/* ================= FORM ================= */
/* ================= CONTACT - PREMIUM SPLIT DESIGN ================= */

.contact-section{
  padding:140px 8%;
 background:linear-gradient(135deg,#1e40af,#4338ca);
  border-top:1px solid #e2e8f0;
  position:relative;
  overflow:hidden;
}

/* background shapes */
.contact-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  background:rgba(18,58,138,.04);
  border-radius:50%;
}

.contact-section::after{
  content:"";
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:280px;
  height:280px;
  background:rgba(255,211,77,.08);
  border-radius:50%;
}
.contact-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr; 
  gap:30px;
  align-items:start;
   position:relative;
  z-index:2;
}


.contact-info{
  background:linear-gradient(135deg,#123a8a,#1b4fb3);
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:0 20px 45px rgba(18,58,138,.18);
  transition:.35s ease;
  position:relative;
  z-index:2;
}

.contact-info:hover{
  transform:translateY(-4px);
}
.contact-tag{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;  
}

.contact-info h2{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  margin-bottom:18px;
}

.contact-info p{
  color:rgba(255,255,255,.9);
  line-height:1.9;
  font-size:17px;
  margin-bottom:26px;
}

.contact-details-box{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:28px;
}

.detail-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:24px;
  border-radius:20px;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.detail-item:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.12);
}
.detail-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.detail-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#ffd34d;
  flex-shrink:0;
}

.detail-item strong{
  font-size:20px;
  color:#fff;
}

.detail-item p{
  margin:0;
  color:rgba(255,255,255,.92);
  line-height:1.8;
  font-size:17px;
}

.right-contact-section{
  display:flex;
  flex-direction:column;
  gap:35px;
}

.contact-form-box{
  background:#fff;
  border:1px solid rgba(18,58,138,.08);
  border-radius:28px;
  padding:38px;
  box-shadow:
    0 20px 45px rgba(15,23,42,.06),
    0 4px 12px rgba(15,23,42,.04);
  transition:.35s ease;
  position:relative;
  z-index:2;
}

.contact-form-box:hover{
  transform:translateY(-4px);
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-bottom:8px;
}
.contact-form textarea{
  margin-top:6px;
}
.contact-form{
  overflow:hidden;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:18px 20px;
  border:1px solid #dbe3ee;
  border-radius:16px;
  font-size:16px;
  font-family:inherit;
  background:#ffffff;
  transition:.3s;
  box-sizing:border-box;
}

.contact-form input:hover,
.contact-form textarea:hover{
  border-color:#b8c7dd;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#123a8a;
  box-shadow:0 0 0 4px rgba(18,58,138,.08);
  background:#fff;
}

.form-btn{
  border:none;
  background:linear-gradient(135deg,#123a8a,#1b4fb3);
  color:#fff;
  padding:18px 42px;
  border-radius:40px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  width:fit-content;
  margin-top:14px;
  font-size:17px;
  box-shadow:0 10px 25px rgba(18,58,138,.18);
}

.form-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(18,58,138,.28);
}

#responseMsg{
  margin-top:14px;
  font-weight:600;
  color:#123a8a;
}

@media(max-width:992px){
  .contact-container{
    grid-template-columns:1fr; 
  }

  .contact-info h2{
    font-size:44px;
  }
}

@media(max-width:768px){
  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-info,
  .contact-form-box{
    padding:28px;
  }

  .contact-info h2{
    font-size:38px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #123a8a;
  padding: 28px 8%;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the footer content */
  position: relative;
  /*color: #fff;*/
}

.footer-center {
  display: none;
}

.footer-center a {
  color: #ffd34d;
  font-size: 24px;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 18px;
  text-align: center;
}

.site-footer .footer-right a,
.site-footer .footer-right a:link,
.site-footer .footer-right a:visited,
.site-footer .footer-right a:active {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-right a:hover {
  color: #ffd34d !important;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0;
  }

  .footer-right {
    font-size: 16px;
    gap: 8px;
  }
}


/* ================= MOBILE ================= */
@media(max-width:992px){
  .hero-wrapper,
  .about-box,
  .process-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  .hero{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero h1{
    font-size:52px;
  }

  .hero p{
    margin:0 auto 28px;
  }

  .services-title,
  .intro-title,
  .about-title,
  .section-title,
  .process-title,
  .why-title,
  .faq-title,
  .contact-title{
    font-size:42px;
  }
}

@media(max-width:768px){
  .navbar{
    flex-direction:column;
    height:auto;
    padding:15px 0;
    gap:12px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }

  .hero-panel{
    grid-template-columns:1fr;
  }

  .service-row{
    grid-template-columns:1fr;
  }

  .service-index{
    padding:16px;
  }

  .form-grid,
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero h1{
    font-size:42px;
  }
}



/* ================= WHY - ZIGZAG UNIQUE STYLE ================= */

.why-section{
  padding:110px 8%;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.why-container{
  max-width:1180px;
  margin:auto;
}

.why-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 65px;
}

.why-tag{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.why-title{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  color:#123a8a;
  margin-bottom:16px;
}

.why-text{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
}

.why-zigzag{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:26px;
}

.why-zigzag::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#dbeafe;
}

.zig-item{
  width:50%;
  position:relative;
}

.zig-item.left{
  padding-right:45px;
}

.zig-item.right{
  margin-left:auto;
  padding-left:45px;
}

.zig-circle{
  position:absolute;
  top:28px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#123a8a;
  color:#ffd34d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  z-index:2;
}

.left .zig-circle{
  right:-31px;
}

.right .zig-circle{
  left:-31px;
}

.zig-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:30px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
}

.zig-card h3{
  font-size:28px;
  color:#123a8a;
  margin-bottom:10px;
}

.zig-card p{
  color:#64748b;
  line-height:1.8;
  font-size:16px;
}

@media(max-width:992px){

  .why-title{
    font-size:44px;
  }

  .why-zigzag::before{
    left:30px;
  }

  .zig-item,
  .zig-item.left,
  .zig-item.right{
    width:100%;
    margin-left:0;
    padding-left:80px;
    padding-right:0;
  }

  .zig-circle,
  .left .zig-circle,
  .right .zig-circle{
    left:0;
    right:auto;
  }
}

@media(max-width:768px){

  .why-title{
    font-size:38px;
  }

  .zig-card h3{
    font-size:24px;
  }
}



/* ================= CONTACT CTA - BETTER DESIGN ================= */

.contact-section{
  padding:110px 8%;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-top:1px solid #e2e8f0;
  border-bottom:4px solid #123a8a;
}

.contact-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:start;
}

.contact-tag{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.contact-title{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  line-height:1.12;
  color:#123a8a;
  margin-bottom:22px;
  max-width:720px;
  text-align:center;
}

.contact-left{
  display:flex;
  flex-direction:column;  
  align-items:center;
}

.contact-subtitle{
  font-size:18px;
  color:#64748b;
  line-height:1.9;
  max-width:620px;
  margin-bottom:30px;
}

.contact-details{
  display:grid;
  gap:16px;
}

.contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;  
}

.contact-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#123a8a;
  color:#ffd34d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.contact-item strong{
  display:block;
  color:#123a8a;
  font-size:17px;
  margin-bottom:3px;
}

.contact-item p{
  color:#64748b;
}

.contact-box p{
  position:relative;
  padding-left:26px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
  margin-bottom:16px;
  font-size:17px;
}

.contact-box p::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  font-size:22px;
  line-height:1;
  color:#ffd34d;
}

.contact-box{
  background:linear-gradient(135deg,#123a8a,#1b4fb3);
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:0 20px 45px rgba(18,58,138,.18);
  max-width:560px;
}

.contact-box h3{
  font-size:36px;
  margin-bottom:22px; /* increase gap */  
}


@media(max-width:768px){
  .contact-title{
    font-size:42px;
    max-width:100%;
  }
}

.contact-btn{
  display:inline-block;
  background:#ffd34d;
  color:#123a8a;
  text-decoration:none;
  padding:16px 28px;
  border-radius:40px;
  font-weight:700;
  transition:.3s;
}

.contact-btn:hover{
  transform:translateY(-2px);
  background:#ffcb2e;
}

@media(max-width:992px){
  .contact-container{
    grid-template-columns:1fr;
  }

  .contact-title{
    font-size:52px;
  }
}

@media(max-width:768px){
  .contact-title{
    font-size:40px;
  }

  .contact-box{
    padding:28px;
  }
}









.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  background: #f4c93d;
  color: #0d2f83;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* SECOND CTA WHITE BUTTON */
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  color: #0d2f83;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s ease;
}

.hero-link:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
}


.process-text {
  max-width: none;          /* remove forced narrow width */
  white-space: nowrap;      /* keep in one line */
  margin: 18px auto 30px;   /* less gap below paragraph */
  font-size: 18px;
  line-height: 1.6;
}

.process-head {
  margin-bottom: 40px;      /* reduce space before timeline */
}

@media (max-width: 900px) {
  .process-text {
    white-space: normal;  
    max-width: 700px;
  }
}



.process-cards{
  max-width:1200px;
  margin:50px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.process-card{
  background:#ffffff;
  border:1px solid #dbe3ee;
  border-radius:24px;
  padding:34px 28px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  transition:.3s ease;
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(18,58,138,.10);
}

.process-icon{
  width:74px;
  height:74px;
  margin:0 auto 22px;
  border-radius:20px;
  background:#123a8a;
  color:#ffd34d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.process-card h3{
  font-size:28px;
  color:#123a8a;
  margin-bottom:14px;
}

.process-card p{ 
  color:#64748b;
  line-height:1.8;
  font-size:16px;
}

@media(max-width:992px){
  .process-cards{
    grid-template-columns:1fr;
  }
}










.country-carousel-section{
  padding:110px 8%;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.country-carousel-container{
  max-width:1280px;
  margin:auto;
}

.country-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 55px;
}

.country-tag{
  display:inline-block;
  background:#123a8a;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.country-title{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  color:#123a8a;
  margin-bottom:16px;
}

.country-text{
  color:#64748b;
  line-height:1.9;
  font-size:18px;  
}  

.carousel-wrap{
  overflow:hidden;
  margin-top:50px;
  padding:10px 0;
}

.carousel-track{
  display:flex;
  gap:22px;
  width:max-content;
  animation:countrySlide 26s linear infinite;
}

.carousel-wrap:hover .carousel-track{
  animation-play-state:paused;
}

.country-card{
  width:240px;
  background:#ffffff;
  border:1px solid #e2e8f0;  
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  flex-shrink:0;
}

.flag{
  display:block; 
  font-size:42px;
  line-height:1;
  margin-bottom:14px;
  font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
}

.flag::before,
.flag::after{
  content:none !important;
}

.country-card h3{
  font-size:26px;
  color:#123a8a;
  margin-bottom:8px;
}

.country-card p{
  color:#64748b;
  font-size:15px;
}

.country-stats{
  margin-top:34px;
  display:flex;
  justify-content:center; 
  gap:18px;
  flex-wrap:wrap;
}

.country-stats span{
  background:#ffd34d;  
  color:#123a8a;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

@keyframes countrySlide{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@media(max-width:992px){
  .country-title{
    font-size:44px;
  }

  .country-card{
    width:210px;
  } 
}

@media(max-width:768px){
  .country-title{
    font-size:38px;
  }

  .country-card{
    width:180px;
    padding:22px 18px;
  }

  .flag{
    font-size:32px;  
  }

  .country-card h3{
    font-size:22px;
  }
}

.flag{
  width:56px !important;
  height:40px !important;
  margin:0 auto 14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;  
  overflow:hidden !important;
}

.flag img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  border-radius:6px !important;
  box-shadow:0 6px 14px rgba(0,0,0,.08);   

}


/* remove duplicate selectors */
/* change nowrap */
.process-text{white-space:normal;}

/* mobile header */
@media(max-width:768px){
  header{position:relative;}
}

/* responsive hero */
.hero h1{
  font-size:clamp(42px,6vw,78px);  
}


.expert-tab{
  background:#ffd34d;
  color:#123a8a !important;
  padding:0 20px;
  height:44px;
  border-radius:999px;
  font-weight:700;
  display:flex !important;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
}

.expert-tab:hover{
  background:#f4c93d;
}

nav ul{
  display:flex;
  align-items:center;
  gap:28px;
}

nav ul li{
  display:flex;
  align-items:center;
}

nav ul li a{
  display:flex;
  align-items:center;
  height:44px;
}







.country-head{
  text-align: center;
  padding: 40px 20px 10px;
}

.country-title{
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1.2;
  /*white-space: nowrap;*/
  margin-top: 30px;
}



.contact-box{
background:linear-gradient(135deg,#315fc9,#1f469e);
backdrop-filter:blur(12px);
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:0 18px 40px rgba(15,23,42,.18);
  position:relative;
  overflow:hidden;
  transition:.35s ease;
  z-index:2;
}



.contact-box:hover{
  transform:translateY(-4px);
}

.contact-box::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
}

.contact-box h3{
  font-size:42px;
  line-height:1.2;
  margin-bottom:26px;
  font-weight:700;
  color:#fff;
  position:relative;
  z-index:2;
}

.contact-box p{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  font-size:17px;
  color:rgba(255,255,255,.88);
  position:relative;
  z-index:2;
}

.contact-box p::before{
  content:"•";
  color:#ffd34d;
  font-size:24px;
}

.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  background:#ffd34d;
  color:#0f172a;
  padding:16px 32px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
  position:relative;
  z-index:2;
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(255,211,77,.35);
}


