.premium-section {
  padding: 90px 0;
}
.bg-light-gray {
  background-color: #f8f9fc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .sub-title {
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.section-header h2 {
  color: #0a2540;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
}
.header-line {
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 15px auto;
}

/* 1. About Detail Section */
.about-detail-wrapper {
  position: relative;
}
.about-detail-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-experience-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #d4af37;
  color: #0a2540;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  border: 3px solid #ffffff;
}
.about-experience-box span {
  font-size: 3rem;
  line-height: 1;
  display: block;
}
.about-text-content {
  padding-left: 30px;
}
.about-text-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-item i {
  color: #d4af37;
  font-size: 1.5rem;
}
.feature-item span {
  color: #0a2540;
  font-weight: 600;
}

/* 2. Mission & Vision Cards */
.mv-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  border-top: 4px solid #0a2540;
}
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
  border-top-color: #d4af37;
}
.mv-icon {
  width: 70px;
  height: 70px;
  background: rgba(10, 37, 64, 0.05);
  color: #0a2540;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}
.mv-card:hover .mv-icon {
  background: #0a2540;
  color: #d4af37;
}
.mv-card h3 {
  color: #0a2540;
  font-weight: 700;
  margin-bottom: 15px;
}
.mv-card p {
  color: #555;
  line-height: 1.7;
}
/* 3. Global Map Section - Middle East Focus */
    .global-map-section {
        background-color: #0a2540; 
        padding: 100px 0; 
        color: #fff; 
        position: relative;
        overflow: hidden;
    }

    .global-map-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
        /* Background size aur position adjust kiya taki Middle East and Asia focus me rahe */
        background-size: 150%; 
        background-position: 40% 30%; 
        background-repeat: no-repeat;
        filter: invert(1) brightness(2); 
        opacity: 0.15; 
        z-index: 1;
    }
    
    .map-content-wrapper { 
        position: relative; 
        z-index: 2; 
    }
    
    /* Modern Solid Map Pins */
    .map-pin {
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: #d4af37; /* Gold Pin */
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        z-index: 3;
        cursor: pointer;
        box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }

    /* Inner white dot inside the pin */
    .map-pin::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Hover effect to lift the pin */
    .map-pin:hover {
        transform: rotate(-45deg) scale(1.1) translateY(-5px);
    }

    /* Country Label attached to Pin */
    .map-pin .country-label {
        position: absolute;
        /* Reverse rotation so text stands straight */
        transform: rotate(45deg); 
        top: -35px;
        left: 5px;
        background: #ffffff;
        color: #0a2540;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        white-space: nowrap;
        pointer-events: none; /* So it doesn't block hover */
    }

    /* Specific coordinates for Middle East & Nepal based on the zoomed background */
    /* Note: These percentages are calibrated for the background-position: 40% 30% set above */
    .pin-kuwait { top: 40%; left: 45%; }
    .pin-bahrain { top: 43%; left: 50%; }
    .pin-uae { top: 48%; left: 52%; }
    .pin-oman { top: 50%; left: 55%; }
    .pin-nepal { top: 38%; left: 70%; }

    @media (max-width: 991px) {
        .global-map-section::before { background-size: 200%; background-position: 45% 40%; }
        /* Map container ko thoda lamba kar denge mobiles par */
        .map-visual-container { height: 350px !important; }
    }

/* 4. FAQs Section */
.accordion-button {
  font-weight: 600;
  color: #0a2540;
  padding: 20px;
  box-shadow: none !important;
  border: 1px solid #eaeaea;
}
.accordion-button:not(.collapsed) {
  background-color: #0a2540;
  color: #ffffff;
  border-color: #0a2540;
}
.accordion-button::after {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-body {
  background: #ffffff;
  color: #555;
  line-height: 1.8;
  padding: 25px;
  border: 1px solid #eaeaea;
  border-top: none;
}
