/* =========================================
   MOU HERO BANNER STYLING
   ========================================= */

.mou-hero-section {
    position: relative;
    width: 100%;
    min-height: 250px; /* Banner height */
    background-color: #0c4da2; /* The specific Blue color from image */
    background: linear-gradient(to bottom, #0c4da2, #083b7e); /* Subtle gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

/* --- Background Map Styling --- */
.mou-bg-map {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0.15; /* Map ko halka dikhane ke liye */
    pointer-events: none;
}

.map-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Content Styling --- */
.mou-banner-content {
    position: relative;
    z-index: 2; /* Content map ke upar */
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* --- Logo Styling --- */
.banner-logo {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-logo img {
    height: 130px;
    width: auto;
    margin-bottom: 10px;
    
    /* MAGIC TRICK: Ye filter colored logo ko WHITE bana dega */
    filter: brightness(0) invert(1); 
}



/* --- Text Styling --- */
.main-heading {
    font-size: 3.5rem; /* Bahut bada text */
    font-weight: 700;
    color: #dbeaff; /* Light Blue-White */
    margin: 0;
    line-height: 2.1;
    /* text-shadow: 0 4px 10px rgba(0,0,0,0.2); */
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    
    color: #dbeaff; /* Light Blue-White */
    text-transform: uppercase;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .mou-hero-section {
        min-height: 350px;
    }

    .banner-logo img {
        height: 130px;
    }

    .main-heading {
        font-size: 3rem; /* Mobile par chhota */
    }

    .sub-heading {
        font-size: 1rem;
    }
}




.wrapper{
  max-width:920px;
  margin:auto;
  padding-top: 20px;
}

/* CARD */
.country{
  background:#fff;
  border-radius:10px;
  margin-bottom:15px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  overflow:hidden;
}

/* HEADER */
.country-head{
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.left{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
  color:#153a9b;
  letter-spacing:.5px;
}

.left img{
  width:30px;
}

.arrow{
  width:10px;
  height:10px;
  border-right:2px solid #555;
  border-bottom:2px solid #555;
  transform:rotate(45deg);
  transition:.3s;
}

.country.active .arrow{
  transform:rotate(-135deg);
}

/* BODY */
.country-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.country.active .country-body{
  max-height:1000px;
}

/* BLUE BOX */
.blue-box{
  background:#203f9a;
  padding:18px;
  border-radius:0 0 10px 10px;
}

/* ROWS */
.row{
  display:grid;
  grid-template-columns:2.2fr 1.5fr 1.5fr;
  align-items:center;
}

.row.head{
  color:#cdd8ff;
  font-size:15px;
  padding:10px 22px; 
  margin-bottom:10px;
  border-bottom:1px solid #f4f5f8;
}

.row.data{
  background:#fff;
  border-radius:10px;
  padding:14px 16px;
  font-size:15px;
  color:#222;
}

/* PILL */
.pill{
  background:#e6eeff;
  color:#203f9a;
  padding:8px 14px;
  border-radius:20px;
  font-weight:600;
  font-size:12px;
  width:fit-content;
}

.row.data + .row.data{
  margin-top:10px;
}
