#mainHeader a {
    text-decoration: none !important;
    color: #ffffff !important;
}

#mainHeader a:hover {
    text-decoration: underline !important;
    color: #3b82f6 !important; /* light blue hover */
}

/* Remove Tailwind focus styles */
#mainHeader a:focus {
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    #mainHeader {
        top: 100px;  /* Offer bar ki height */
    }
}
.bg{
    background: #0A0C4A;
}
.section-bg{
    background: #0A0C4A;
}
.above-section-bg{
    background: #080E5C;
    
}

/* -----------------------index  section ------------------------------------*/

.index-a{
    background:#0A0C4A; 
    color:#fff; 
    padding:80px 0; 
    font-family:'Poppins', sans-serif; overflow:hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 60px;
  align-items: center;
max-width:1600px!important; 
margin:0 auto!important; 
padding:0 20px!important;
}

/* Tablet (below 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .hero-grid div[style*="fadeInRight"] {
    margin-left: 0 !important;
  }
}

/* Mobile Small Fix (below 390px) */
@media (max-width: 390px) {
    .btn-row a {
        padding: 10px 14px !important;
        font-size: 14px !important;
        white-space: nowrap;
    }
    .btn-row {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }
}
@media (max-width: 992px) {
    .im {
        transform: none !important;
    }
}

@keyframes fadeInUp { 
  from {opacity:0; transform:translateY(30px);} 
  to {opacity:1; transform:translateY(0);} 
}

@keyframes fadeInRight { 
  from {opacity:0; transform:translateX(40px);} 
  to {opacity:1; transform:translateX(0);} 
}

.slide { 
  position:absolute; 
  top:0; left:0; 
  width:100%; 
  opacity:0; 
  transition:opacity 1s ease; 
}

.slide.active { 
  opacity:1; 
  position:relative; 
}

.slides { 
  position:relative; 
  height:auto; 
}
 /* ------------------------------
   INdex  SECTION-b
--------------------------------*/
.about_hero_section {
    padding: 80px 0 50px;
    text-align: center;
}

.about_title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.about_title span {
     font-size: 48px;
    color:#244FF1; 
}

.about_subtitle {
    margin: 15px auto;
    max-width: 900px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}


/* ------------------------------
   OUR STORY SECTION
--------------------------------*/
.our_story_section {
    padding: 20px 0;
     background: #001760;
      border-radius:16px;
}

.story_container {
    background: #001760;
    border-radius: 16px;
    padding: 40px 50px;
}

.story_heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.story_grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT TEXT */
.story_text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.story_text p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
}

/* RIGHT IMAGES */
.story_images {
    position: relative;
}

.story_main_img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media(max-width: 992px) {
    .story_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story_small_img {
        position: static;
        margin: 20px auto 0;
        width: 60%;
    }
}

@media(max-width: 600px) {
    .about_title {
        font-size: 32px;
    }
    .about_subtitle {
        font-size: 15px;
    }
}