/* ================= GLOBAL ================= */
html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Playfair Display', serif;
   /* padding-top: 70px; */
}


h1,h2,h3,h4,p{
font-family: 'Playfair Display', serif;
/* font-size: 18px; */
}
span {
  color: #ffc107;
  font-weight: 600;
  font-size: 25px;
}


.intro-text {
  font-size: 19px;
  /* line-height: 1.9; */
  color: #f9f6f6;
  max-width: 700px;
  margin: auto;
}

@media (max-width: 768px) {
  .span{
    font-size: 18px;
    text-align: justify;
  }
}


 
/* ================= NAVBAR ================= */

.custom-navbar {
  background: #f2f5fb;
  padding: 6px 0;
}

/* LOGO */
.logo-img {
  height: 50px;
  width: auto;  /* IMPORTANT */
}

.brand-text {
  font-weight: 600;
  font-size: 16px;
  color: #243c74;
}

/* 🔥 BLUE PILL MENU */
.nav-pill {
  background: #233a74;
  padding: 2px 4px;
  border-radius: 50px;
}

/* NAV LINKS */
.navbar .nav-link {
  color: #fff !important;
  margin: 0 8px;
  padding: 6px 10px;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #ffc107 !important;
}

/* 🔥 DONATE BUTTON */
.donate-btn {
  background: #ffc107;
  border-radius: 30px;
  padding: 3px 30px;
  font-weight: 600;
  border: none;
}

.donate-btn:hover {
  background: #e0a800;
}


.container-fluid {
  padding-left: 5px;
  padding-right: 15px;
}
/* MOBILE FIX */
@media (max-width: 991px) {

  /* .nav-pill {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
  } */

  .nav-pill{
  background:#233a74;
  padding:2px 4px;
  border-radius:50px;

  /* 🔥 ADD THIS */
  display:flex;
  align-items:center;
}

  .navbar .nav-link {
    margin: 4px 0;
  }

  .donate-btn {
    width: 100%;
    margin-top: 10px;
   
  }
  
}


@media (max-width: 991px) {

  .nav-pill {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
  }

  .navbar-collapse {
    background: #233a74;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar .nav-link {
    margin: 6px 0;
    display: block;
  }

  .donate-btn {
    width: 100%;
    margin-top: 10px;
  }
}










/*   ---------------     donet new       -------------------------------- */


/* CALL BUTTON */
.call-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}



/* ================= INDEX ONE SECTION HERO SLIDER ================= */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
  margin-top: 30px;
}

/* Carousel full width */
#heroCarousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 100%;
}

/* IMAGE FIX */
.hero-img {
  width: 100%;
  height: 100vh;
  object-position: center top; 
  display: block;
  margin-top: 22px;
  background: #fff;  
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

/* CAPTION */
.custom-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}

.custom-caption h1 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}

.custom-caption p {
  font-size: 1.1rem;
  color: #eee;
}

/* ARROWS */
.custom-arrow {
  font-size: 18px;
  color: #fff;
  padding: 5px 11px;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.carousel-control-prev:hover .custom-arrow,
.carousel-control-next:hover .custom-arrow {
  background: rgba(0,0,0,0.7);
}

/* Smooth Slide */
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

/* Remove side gap */
.carousel-item img {
  width: 100%;
  display: block;
}

/* TABLET */
@media (max-width: 992px) {

  .hero-img {
    height: 70vh;
    margin-top: 60px;
  }

  .custom-caption h1 {
    font-size: 2rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {

   .hero-img {
    height: 45vh;
    object-position: center top;
    margin-top: 10px;
    background: #fff;
  }


  .custom-caption {
    bottom: 8%;
  }

  .custom-caption h1 {
    font-size: 1.4rem;
  }

  .custom-caption p {
    font-size: 0.9rem;
  }

  .custom-arrow {
    font-size: 22px;
    padding: 8px 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .hero-img {
    height: 38vh;
    margin-top: 10px;
  }

  .custom-caption h1 {
    font-size: 1.1rem;
  }

  .custom-caption p {
    font-size: 0.8rem;
  }
}






/* ================= INDEX TWO SECTION  INTRO ============= */

.section-title {
  font-weight: 700;
}

.intro-text {
  font-size: 19px;
  color: #f9f6f6;
  max-width: 700px;
 
}
 

.intro_sectiontwo {
   background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 60px 0;
  border-radius: 10px;
}

.section-title {
  font-weight: 700;
}

.intro-text {
  font-size: 19px;
  color: #f9f6f6;
  max-width: 700px;
  margin: auto;
}

.intro_sectiontwo {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 60px 0;
  border-radius: 10px;
  overflow: hidden;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {

  .intro_sectiontwo {
    padding: 5px 4px;
    border-radius: 8px;
  }

  .section-title {
    font-size: 21px;
    text-align: justify;
  }

  .intro-text {
    font-size: 17px;

  }
}

/* Mobile */
@media (max-width: 767px) {

  .intro_sectiontwo {
    padding: 1px 1px;
  }

  .section-title {
    font-size: 15px;
  }

  .intro-text {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .intro_sectiontwo {
    padding: 10px 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .intro-text {
    font-size: 14px;
  }
}



/*============= out mission and vission ============*/

/* SECTION TITLE */
.section-title {
  font-weight: 700;
  font-size: 27px;
  color: #e0a800;
}

/* BUTTON */
.btn-primary {
  background-color: #e0a800 !important;
  border: none !important;
  color: #fff;
}

.btn-primary:hover {
  background-color: #c69500 !important;
}
.row {
  --bs-gutter-x: 1.5rem;  
}


/* .container {
  padding-left: 12px;
  padding-right: 12px;
} */

.info-card {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 2px 20px 2px 20px ;
  /* border-radius: 12px; */
  font-size: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: justify;
}

.bg-light .col-md-4 {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  border-radius: 12px;
  padding: 1px;
}





/* ===== FINAL SPACING FIX ===== */



.container {
  max-width: 1300px;
  margin: auto;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* Row fix */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px !important;
  margin-right: -12px !important;
}

/* Column spacing fix */
.row > * {
  padding-left: 20px !important;
  padding-right: 5px !important;
}


section {
  overflow-x: hidden;
}


.info-card:hover {
  transform: translateY(-8px);
}

.info-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 11px;
    margin: 20px;
    text-align: justify;
  }
  .info-card{
    font-size: 13px;
    padding: 10px;
    margin: 5px;
  }

  .info-img {
    width: 100px;
    height: 100px;
  }
  
}



/* ============== INDEX FOUR SECTION ============ */


/* SECTION */
.focus-section {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
}

/* CARD */
.focus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  overflow: hidden;
  height: 100%;
}

/* IMAGE */
.focus-card img {
  width: 100%;
  height: 295px;
  object-fit: cover;
}

/* CONTENT */
.focus-content {
  padding: 22px 18px;
  text-align: center;
}

/* TEXT */
.focus-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-content p {
  font-size: 14px;
  color: #555;
  /* line-height: 1.6; */
  margin: 0;
}

/* HOVER */
.focus-card:hover {
  transform: translateY(-8px);
}
.overlay p{
  padding: 5px;

}
.overlay h5{
  padding: 8px;
  color: #f3bc19;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .focus-card img {
    height: 160px;   
  }

  .focus-content {
    padding: 10px 14px; 
    text-align: justify;
  }

  .focus-content h5 {
    font-size: 16px;
  }

  .focus-content p {
    font-size: 13px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .focus-card img {
    height: 140px;
  }

  .focus-content {
    padding: 14px 12px;
    text-align: justify;
  }

  .focus-content p {
    font-size: 12.5px;
  }
}






/* ============== INDEX FIVE SECTION  ===================== */


    .gallery-section{
      padding:40px 0;
      text-align:center;
    }

    .gallery-section h2{
      font-size:35px;
      margin-bottom:15px;
    }

    .gallery-section span{
      color:#c89a31;
    }

    .gallery-section p{
      max-width:700px;
      margin:auto;
      color:#0e0e0e;
      line-height:1.7;
    }

  
    .slider-wrapper{
      position:relative;
      height:420px;
      overflow:hidden;
      margin-top:50px;
    }

    .slider{
      width:100%;
      height:100%;
      position:relative;
      display:flex;
      justify-content:center;
      align-items:center;
      perspective:2000px;
    }

  
    .card{
      position:absolute;
      width:220px;
      height:340px;
      border-radius:20px;
      overflow:hidden;
      transition:0.7s ease;
      box-shadow:0 10px 30px rgba(0,0,0,0.2);
    }

    .card img{
      width:100%;
      height:100%;
      object-fit:cover;
      cursor:pointer;
      display:block;
    }

  
    .card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.3), transparent);
      pointer-events:none;
    }

  
    .image-lightbox{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:rgba(0,0,0,0.9);

      display:none;
      justify-content:center;
      align-items:center;

      z-index:99999;
      padding:20px;
    }

    .image-lightbox.active{
      display:flex;
    }

    .image-lightbox img{
      max-width:95vw;
      max-height:85vh;
      object-fit:contain;
      border-radius:15px;
      animation:zoomIn .4s ease;
    }

    .lightbox-close{
      position:absolute;
      top:20px;
      right:35px;
      font-size:25px;
      color:#fff;
      cursor:pointer;
      z-index:100000;
    }

    @keyframes zoomIn{
      from{
        transform:scale(.7);
        opacity:0;
      }
      to{
        transform:scale(1);
        opacity:1;
      }
    }


    /* ------ responsive ------- */

@media (max-width: 768px) {

  .gallery-section{
    padding: 20px 12px;
    text-align: left;
  }

  .gallery-section h2{
    font-size: 24px;
    line-height: 1.4;
  }

  .gallery-section p{
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
  }

  /* SLIDER HEIGHT BIG */
  .slider-wrapper{
    height: 360px;
    margin-top: 30px;
  }

  /* IMAGE CARD BIG SIZE */
  .card{
    width: 210px;  
    height: 320px;  
    border-radius: 18px;
  }

  .card img{
    border-radius: 18px;
  }

  /* POPUP IMAGE */
  .image-lightbox img{
    max-width: 96vw;
    max-height: 85vh;
    object-fit: contain;
  }

  /* CLOSE BUTTON */
  .lightbox-close{
    top: 10px;
    right: 18px;
    font-size: 40px;
  }

}

/* =============== DOMATE SECTION 2 =============== */
/* ================= DONATE CERTIFICATE SECTION ================= */

.donate_certificate_section{
  background: #f5f7fb;
  padding: 30px 0;
}

.donate_certificate_box{
  background: linear-gradient(135deg,#0d6efd,#198754);
  padding: 30px;
  border-radius: 25px;
  margin: 0px 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  color: #fff;
}

.donate_certificate_icon{
  width: 80px;
  height: 80px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.donate_certificate_icon i{
  font-size: 55px;
  color: #fff;
}

.donate_certificate_title{
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.donate_certificate_number{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd43b;
}

.donate_certificate_text{
  font-size: 19px;
  margin-bottom: 0;
}


/* ================= LAPTOP ================= */

@media(max-width:1200px){

  .donate_certificate_box{
    margin: 0px 80px;
  }

}


/* ================= TABLET ================= */

@media(max-width:991px){

  .donate_certificate_box{
    margin: 0px 30px;
    padding: 25px;
    text-align: center;
  }

  .donate_certificate_icon{
    margin-bottom: 20px;
  }

  .donate_certificate_title{
    font-size: 22px;
    line-height: 1.5;
  }

  .donate_certificate_number{
    font-size: 16px;
    padding: 10px 20px;
  }

  .donate_certificate_text{
    font-size: 16px;
    line-height: 1.7;
  }

}


/* ================= MOBILE ================= */

@media(max-width:576px){

  .donate_certificate_section{
    padding: 40px 0;
  }

  .donate_certificate_box{
    margin: 0px 12px;
    padding: 20px 15px;
    border-radius: 18px;
  }

  .donate_certificate_icon{
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .donate_certificate_icon i{
    font-size: 32px;
  }

  .donate_certificate_title{
    font-size: 17px;
    margin-bottom: 15px;
  }

  .donate_certificate_number{
    font-size: 13px;
    padding: 8px 15px;
    margin-bottom: 15px;
  }

  .donate_certificate_text{
    font-size: 14px;
    line-height: 1.6;
  }

}



/* ================= DONATE SECTION ================= */

.donate_section{
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 60px 0;
}

.donate_section_title{
  font-size: 28px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 40px !important;
}

/* CARD */
.donate_card{
  background: #fff;
  padding: 28px;
  margin-right: 15px;
  border-radius: 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.donate_card:hover{
  transform: translateY(-5px);
}

/* BORDER EFFECT */
.donate_card::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg,#0d6efd,#00c6ff,#198754);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* TITLE */
.donate_card_title{
  font-size: 24px;
  font-weight: 700;
  color: #0d6efd;
}

/* DETAILS */
.donate_details p{
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  line-height: 1.6;
}

.donate_details strong{
  color: #000;
}

/* ALERT BOX */
.donate_alert_box{
  background: #eef6ff;
  color: #0d6efd;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* QR IMAGE */
.donate_qr_img{
  width: 100%;
  max-width: 230px;
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

/* STEP BOX */
.donate_steps_box{
  margin-top: 25px;
  text-align: left;
}

.donate_steps_title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

/* STEP ITEM */
.donate_step_item{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.donate_step_item:last-child{
  margin-bottom: 0;
}

.donate_step_item span{
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg,#0d6efd,#00c6ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.donate_step_item p{
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .donate_section{
    padding: 45px 0;
  }

  .donate_section_title{
    font-size: 24px;
  }

  .donate_card{
    padding: 22px 18px;
    border-radius: 18px;
  }

  .donate_card_title{
    font-size: 21px;
  }

  .donate_details p{
    font-size: 14px;
  }

  .donate_qr_img{
    max-width: 200px;
  }

  .donate_steps_title{
    font-size: 18px;
  }

  .donate_step_item p{
    font-size: 14px;
  }
}


/* ================= DONATE CTA ================= */


/* SECTION */

.donate-section{
background: linear-gradient(135deg, #f8f8f5 60%, #f3f3f4 60%);
padding:70px 20px;
position:relative;
overflow:hidden;
margin:10px;
border-radius:25px;
text-align:center;
}

/* LIGHT GLOW EFFECT */

.donate-section::before{
content:"";
position:absolute;
width:300px;
height:300px;
background:#ffc107;
filter:blur(120px);
top:-80px;
left:-80px;
opacity:0.15;
}

/* CONTAINER */

.donate-section .container{
max-width:1200px;
margin:auto;
position:relative;
z-index:2;
}

/* HEADING */

.donate-section h2{
font-size:32px;
font-weight:700;
color:#111;
margin-bottom:15px;
line-height:1.4;
}

.donate-section h2 span{
color:#e0a800;
}

/* PARAGRAPH */

.donate-section p{
color:#333 !important;
font-size:22px;
line-height:1.8;
margin-bottom:30px;
}

/* TEXT */

.donate-text{
font-size:18px;
color:#444;
max-width:700px;
margin:15px auto 30px;
line-height:1.8;
}

/* BUTTON */

.donate-btn{
background:linear-gradient(135deg,#ffc107,#e0a800);
color:#fff;
text-decoration:none;
padding:9px 18px;
border-radius:50px;
font-weight:600;
display:inline-block;
transition:0.3s;
box-shadow:0 8px 20px rgba(255,193,7,0.4);
font-size:14px;
}

/* HOVER */

.donate-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 12px 25px rgba(255,193,7,0.5);
color:#fff;
}

/* TABLET */

@media(max-width:768px){

.donate-section{
padding:50px 20px;
margin:10px;
}

.donate-section h2{
font-size:30px;
text-align:center;
}

.donate-section p{
font-size:17px;
text-align:center;
line-height:1.7;
}

.donate-text{
font-size:16px;
}

.donate-btn{
padding:12px 28px;
font-size:16px;
}

}

/* MOBILE */

@media(max-width:480px){

.donate-section{
padding:40px 15px;
border-radius:18px;
}

.donate-section h2{
font-size:24px;
}

.donate-section p{
font-size:15px;
}

.donate-btn{
width:100%;
max-width:240px;
padding:12px 20px;
font-size:15px;
}

}




/* =============== CONTACT PAGE ===================== */

/* ================= CONTACT SECTION ================= */

.contact_section1{
background:#f5f7fb;
padding:80px 0;
}

/* MAIN BOX */
.contact_box{
background:#fff;
padding:25px;
border-radius:30px;
box-shadow:0 10px 35px rgba(0,0,0,0.06);
height:100%;
transition:0.4s;
position:relative;
overflow:hidden;
}

/* TOP BORDER */
.contact_box::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:#e0a800;
}

/* HOVER */
.contact_box:hover{
transform:translateY(-5px);
}

/* HEADING */
.contact_box h4{
font-size:32px;
font-weight:700;
margin-bottom:20px;
/* line-height:1.2; */
position:relative;
padding-bottom:18px;
color:#111;
}

.contact_box h4::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:90px;
height:4px;
background:#e0a800;
border-radius:20px;
}

/* INTRO TEXT */
.intro-text{
font-size:18px;
line-height:38px;
color:#171616;
margin-bottom:15px;
}

.intro-text span{
color:#e0a800;
font-size:20px;
font-weight:700;
}

/* CONTACT INFO */
.contact-info{
display:flex;
align-items:flex-start;
gap:18px;
margin-bottom:10px;
}

/* ICON BOX */
.icon-box{
width:25px;
height:25px;
background:#f8f8f8;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.icon-box i{
font-size:13px;
color:#e0a800;
}

/* TEXT */
.info-text{
font-size:14px;
line-height:34px;
color:#1a1919;
}

/* FORM */
.form-control{
height:60px;
border-radius:16px;
border:1px solid #ddd;
padding:0 20px;
font-size:16px;
background:#fafafa;
box-shadow:none;
transition:0.3s;
}

textarea.form-control{
height:80px;
padding-top:18px;
resize:none;
}

.form-control:focus{
border-color:#e0a800;
background:#fff;
box-shadow:none;
}

/* BUTTON */
.btn-primary{
height:40px;
border:none;
border-radius:16px;
background:#e0a800;
font-size:18px;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#c89200;
transform:translateY(-3px);
}




.email-link{
  color:#0b0a0a;
  text-decoration:none;
}

.email-link:hover{
  color:#ffb400;
}





.success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,0.6);
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.success-content{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
width:350px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.success-icon{
width:70px;
height:70px;
margin:auto;
background:#28a745;
color:#fff;
border-radius:50%;
font-size:40px;
line-height:70px;
margin-bottom:15px;
}

.error-content .success-icon{
background:#dc3545;
}

.success-content h3{
margin-bottom:10px;
color:#071c2f;
}

.success-content p{
margin-bottom:20px;
color:#555;
}

.success-content button{
background:#ffc107;
border:none;
padding:10px 25px;
border-radius:5px;
font-weight:bold;
cursor:pointer;
}

/* MOBILE */
@media(max-width:992px){

.contact_box{
padding:30px;
}

.contact_box h4{
font-size:38px;
}

.intro-text{
font-size:17px;
line-height:32px;
}

.intro-text span{
font-size:22px;
}

.info-text{
font-size:16px;
line-height:30px;
}

.icon-box{
width:50px;
height:50px;
}

.icon-box i{
font-size:13px;
}

}

@media(max-width:768px){

.contact_section1{
padding:50px 0;
}

.contact_box{
padding:25px;
border-radius:22px;
}

.contact_box h4{
font-size:30px;
}

.intro-text{
font-size:15px;
line-height:28px;
}

.intro-text span{
font-size:18px;
display:block;
margin:5px 0;
}

.contact-info{
gap:14px;
margin-bottom:22px;
}

.info-text{
font-size:15px;
line-height:28px;
}

.icon-box{
width:45px;
height:45px;
border-radius:12px;
}

.icon-box i{
font-size:13px;
}

.form-control{
height:52px;
font-size:14px;
border-radius:12px;
}

textarea.form-control{
height:130px;
}

.btn-primary{
height:52px;
font-size:15px;
border-radius:12px;
}

}


/* ========= hero section  ============= */






/* ================= ABOUT SECTION 4 ================= */
.about_section4 {
  background: linear-gradient(to right, #f8fbff, #eef5ff);
  padding: 60px 0;
}

.about_section4 .sub-heading {
  color: #e0a800;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
}

.about_section4 .main-heading {
  font-size: 32px;
  font-weight: 700;
  /* line-height: 1.3; */
}

.about_section4 .main-heading span {
  color: #e0a800;
}

.about_section4 .section-desc {
  max-width: 700px;
  margin: auto;
  color: #0b0b0b;
  font-size: 16px;
  /* line-height: 1.7; */
}

/* Card */
.challenge-card {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

/* Icon */
.icon-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Content */
.content-box h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e0a800;
}

.content-box p {
  font-size: 16px;
  color: #070707;
  margin: 0;
  /* line-height: 1.7; */
}

/* Hover */
.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {

  .about_section4 {
    padding: 50px 20px;
  }

  .about_section4 .main-heading {
    font-size: 28px;
  }

  .content-box h4 {
    font-size: 21px;
  }

  .content-box p {
    font-size: 15px;
  }

  .icon-box img {
    width: 60px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .about_section4 {
    padding: 40px 15px;
  }

  .about_section4 .sub-heading {
    font-size: 13px;
  }

  .about_section4 .main-heading {
    font-size: 22px;
  }

  .about_section4 .section-desc {
    font-size: 13px;
  }

  .challenge-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
  }

  .icon-box img {
    width: 55px;
    height: 55px;
  }

  .content-box h4 {
    font-size: 20px;
  }

  .content-box p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .about_section4 .main-heading {
    font-size: 21px;
    text-align: justify;
  }

  .challenge-card {
    padding: 15px;
    border-radius: 10px;
  }

  .icon-box img {
    width: 50px;
    height: 50px;
  }

  .content-box h4 {
    font-size: 18px;
    text-align: justify;
  }

  .content-box p {
    font-size: 12px;
    /* line-height: 1.6; */
    text-align: justify;
  }


  .about_section4 .section-desc{
    text-align: justify;
    font-size: 12px;
  } 
}





/* ================= ABOUT SECTION 5 ================= */
.commitment-section {
  background: #ffffff;
  padding: 10px 2px 10px 2px;
}

/* Image */
.commitment-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content */
.commitment-content .sub-heading {
  color: #e0a800;
  font-weight: 600;
}

.commitment-content .main-heading {
  font-size: 32px;
  font-weight: 700;
}

.commitment-content .main-heading span {
  color: #e0a800;
}

.commitment-content p {
  color: #0e0d0d;
  /* line-height: 1.6; */
}

/* List */
.commitment-list {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.commitment-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #080808;
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-content .main-heading {
    font-size: 26px;
  }
}



/* ================= ABOUT SIX  SECTION ================= */
.about_six_subtitle{
  text-align: center;
}

.about_six_card {
  background: linear-gradient(to right, #f8fbff, #eef5ff);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
  font-size: 16px;
  overflow: hidden;
}

.about_six_card:hover {
  transform: translateY(-8px);
}

/* IMAGE FIX */
.about_six_card img {
  width: 100%;
  height: auto;        
  max-height: 350px;   
  object-fit: contain;   
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
  background: #fff;
}

/* TEXT */
.about_six_card h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #e0a800;
}

.about_six_card p {
  font-size: 16px;
  color: #070707;
}



@media (max-width: 768px) {
  .about_six_card h4{
    text-align: justify;
  }
  .about_six_card p{
    text-align: justify;
    font-size: 13px;
  }
   .about_six_card img {
    max-height: 250px;
    object-fit: contain;
  }
  .about_six_section{
    text-align: justify;
    padding: 5px;
  }
  .about_six_subtitle{
  text-align: justify;
}

.about_six_title{
text-align: justify;
}
.about_six_title{
  text-align: justify;

}
.about_six_desc{
  text-align: justify;
}
}


/* ================= ABOUT SEVEN  SECTION ================= */

.about_seven {
  padding: 15px 0;
  background: #fff;
}

.about_seven_heading h5 {
  color: #0b0b0b;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_seven_heading h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  color: #e0a800;
}

.about_seven_heading p {
  max-width: 600px;
  margin: auto;
  color: #0e0e0e;
}

/* CARD */
.about_seven_card {
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  font-size: 24px;
}

.about_seven_card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* IMAGE */
.about_seven_card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* TEXT */
.about_seven_card h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #e0a800;
}

.about_seven_card p {
  font-size: 15px;
  color: #0c0c0c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about_seven_heading h2 {
    font-size: 24px;
  }
  .about_seven_heading h5{
    font-size: 23px;
  }
  .about_seven{
    text-align: justify;
    padding: 10px;
  }

  .about_seven_heading h5, 
  .about_seven_heading h2,
  .about_seven_heading p{
   text-align: justify;
  }
  .about_seven_heading p{
    font-size: 13px;
  }
}



/* ================= ABOUT EIGHT SECTION ================= */

.about_eight {
  padding: 30px 0;
  background: #f9f9f9;
}

/* HEADING */
.about_eight_heading h5 {
  color: black;
  letter-spacing: 2px;
  font-size: 14px;
}

.about_eight_heading h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;
}

.about_eight_heading p {
  max-width: 650px;
  margin: auto;
  color: #101010;
}

/* CARD */
.about_eight_card {
  /* background: #fff; */
     background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.about_eight_card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.about_eight_card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

/* TEXT */
.about_eight_card h4 {
  font-size: 24px;
  margin: 15px 0 10px;
  padding: 0 15px;
  color: #ebb536;
 
}

.about_eight_card p {
  font-size: 16px;
  color: #0e0e0e;
  padding: 0 15px 20px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .about_eight_heading h2 {
    font-size: 23px;
  }

  .about_eight_card img {
    height: 360px;
    margin-right: 20px;
    padding-right: 10px;
  }

  .about_eight_heading{
    padding: 20px;
  }

.about_eight_heading h5,
.about_eight_heading h2,
.about_eight_heading p {
  text-align: justify;
}
}






/* ================= ABOUT NINE SECTION ================= */

.about_nine {
  padding: 10px 0;
  background: #fff;
}

/* HEADING */
.about_nine_heading h5 {
  color: #060606;
  letter-spacing: 2px;
  font-size: 14px;
}

.about_nine_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #e0a800;
}

.about_nine_heading p {
  max-width: 850px;
  margin: auto;
  color: #0b0b0b;
  /* line-height: 1.8; */
  font-size: 16px;
}

/* IMAGE */
.about_nine_img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* CONTENT BOX */
.about_nine_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* background: #f9f9f9; */
    background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.about_nine_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON IMAGE */
.about_nine_box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.about_nine_box h4 {
  font-size: 25px;
  margin-bottom: 8px;
  color: #e0a800;
}

.about_nine_box p {
  color: #0e0e0e;
  font-size: 16px;
  /* line-height: 1.7; */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about_nine_heading h2 {
    font-size: 26px;
  }
  .about_nine_box {
    flex-direction: column;
    text-align: justify;
    align-items: center;
  }
  .about_nine_box h4 {
    font-size: 23px;
  }

  .about_nine_heading {
  text-align: justify;
  padding: 10px;
}

.about_nine_heading h5,
.about_nine_heading h2,
.about_nine_heading p {
  text-align: justify;
}

.about_nine_box p{
  font-size: 13px;
}
} 




/* ================= ABOUT TEN SECTION  ================= */

.about_ten {
  padding: 10px 0;
  background: #f9f9f9;
  padding-top: 30px;
}

/* HEADING */
.about_ten_heading h5 {
  color: #060606;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_ten_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
 color: #c89a31;
}

.about_ten_heading p {
  max-width: 750px;
  margin: auto;
  color: #060505;
  /* line-height: 1.8; */
}

/* BOX */
.about_ten_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* background: #fff; */
    background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  color: #c89a31;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.about_ten_box:hover {
  transform: translateY(-5px);
}

/* ICON IMAGE */
.about_ten_box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.about_ten_box h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.about_ten_box p {
  color: #0c0c0c;
  font-size: 16px;
  /* line-height: 1.7; */
}

/* RIGHT IMAGE */
.about_ten_img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {

 

  .about_ten_box {
    flex-direction: column;
    text-align: justify;
    align-items: center;
  }

  .about_ten_img {
    margin-top: 30px;
  }


  .about_ten_heading {
  text-align: justify;
  padding: 20px;
}
.about_ten_heading h2 {
  font-size: 21px;
}

.about_ten_heading h5,
.about_ten_heading h2,
.about_ten_heading p {
  text-align: justify;
}

.about_ten_box h4,
.about_ten_box p {
text-align: justify;
}
}




/* ================= ABOUT ELEVEN  SECTION ================= */

.about_eleven {
  padding: 10px 0;
  background: #fff;
  padding-top: 30px;
}

/* HEADING */
.about_eleven_heading h5 {
  color: #060606;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_eleven_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;
}

.about_eleven_heading p {
  max-width: 750px;
  margin: auto;
  color: #0e0e0e;
  /* line-height: 1.8; */
}

/* BOX */
.about_eleven_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* background: #f9f9f9; */
   background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
   color: #c89a31;
}

.about_eleven_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON IMAGE */
.about_eleven_box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.about_eleven_box h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.about_eleven_box p {
  color: #060505;
  font-size: 16px;
  /* line-height: 1.7; */
}

/* MAIN IMAGE */
.about_eleven_img img {
  width: 200px;
  border-radius: 20px;
  margin-top: 10px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about_eleven_heading h2 {
    font-size: 23px;
  }

  .about_eleven_box {
    flex-direction: column;
    text-align: justify;
    align-items: center;
  }

  .about_eleven_box img {
    margin-bottom: 10px;
  }


  .about_eleven_heading {
  text-align: justify;
  padding: 20px;
}


.about_eleven_heading h5,
.about_eleven_heading h2,
.about_eleven_heading p {
  text-align: justify;
}
}




/* ================= ABOUT TWELVE SECTION  ================= */

.about_twelve {
  padding: 10px 0;
  background: #f9f9f9;
  /* background: linear-gradient(115deg, #d7dce8 60%, #fbfcfd 60%); */
  padding-top: 30px;

}

/* HEADING */
.about_twelve_heading h5 {
  color: #0a0a09;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_twelve_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;
}

.about_twelve_heading p {
  max-width: 750px;
  margin: auto;
  color: #0b0b0b;
  /* line-height: 1.8; */
}

/* IMAGE */
.about_twelve_img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  
}

/* BOX */
.about_twelve_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
}

.about_twelve_box:hover {
  transform: translateY(-5px);
}

/* ICON IMAGE */
.about_twelve_box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.about_twelve_box h4 {
  font-size: 22px;
  margin-bottom: 8px;
   color: #c89a31;
}

.about_twelve_box p {
  color: #080808;
  font-size: 16px;
  /* line-height: 1.7; */
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about_twelve_heading h2 {
    font-size: 23px;
  }

  .about_twelve_box {
    flex-direction: column;
    text-align: justify;
    align-items: center;
    padding: 20px;
  }

  .about_twelve_img {
    margin-bottom: 30px;
  }
  .about_twelve_heading {
  text-align: justify;
  padding: 20px;
}

.about_twelve_heading h5,
.about_twelve_heading h2,
.about_twelve_heading p {
  text-align: justify;
}

.about_twelve_box p{
  font-size: 13px;
}
}






/* ================= ABOUT THIRTEEN  SECTION ================= */

.about_thirteen {
  padding: 10px 0;
  background: #fff;
  padding-top: 30px;
}

/* HEADING */
.about_thirteen_heading h5 {
  color: #0c0c0c;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_thirteen_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;
}

.about_thirteen_heading p {
  max-width: 750px;
  margin: auto;
  color: #0c0c0c;
  /* line-height: 1.8; */
}

/* CARD */
.about_thirteen_card {
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.about_thirteen_card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.about_thirteen_img img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
}

/* CONTENT */
.about_thirteen_content {
  padding: 25px;
}

.about_thirteen_content h3 {
  color: #060606;
  font-size: 16px;
  margin-bottom: 10px;
}

.about_thirteen_content h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #c89a31;
}

.about_thirteen_content p {
  color: #070707;
  /* line-height: 1.8; */
  font-size: 16px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about_thirteen_heading h2 {
    font-size: 21px;
  }

  .about_thirteen_img img {
    height: 200px;
  }

  .about_thirteen_heading {
  text-align: justify;
  padding: 20px;
}

.about_thirteen_heading h5,
.about_thirteen_heading h2,
.about_thirteen_heading p {
  text-align: justify;
}
.about_thirteen_heading p{
  font-size: 14px;
}

}




/* ================= ABOUT FOURTEEN  SECTION ================= */

.about_fourteen {
  padding: 10px 0;
  background: #f9f9f9;
  padding-top: 30px;
  
}

/* HEADING */
.about_fourteen_heading h5 {
  color: #090909;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_fourteen_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;

}

.about_fourteen_heading p {
  max-width: 750px;
  margin: auto;
  color: #090909;
  font-size: 16px;
  /* line-height: 1.8; */
}

/* CARD */
.about_fourteen_card {
background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.about_fourteen_card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.about_fourteen_img img {
  width: 100px;
  
  object-fit: cover;
}

/* CONTENT */
.about_fourteen_content {
  padding: 25px;
}

.about_fourteen_content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #c89a31;
}

.about_fourteen_content p {
  color: #0c0c0c;
  /* line-height: 1.8; */
  font-size: 16px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about_fourteen_heading h2 {
    font-size: 26px;
  }

     .about_fourteen_img img {
        height: 289px;
        width: 330px;
        padding-left: 50px;
    }
}




/* ================= ABOUT FIFTEEN SECTION  ================= */

.about_fifteen {
  padding: 10px 0;
  /* background: #fff; */
    background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
}

/* HEADING */
.about_fifteen_heading h5 {
  color: #050505;
  letter-spacing: 2px;
  font-size: 16px;
}

.about_fifteen_heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 10px 0;
  color: #c89a31;
}

.about_fifteen_heading p {
  max-width: 750px;
  margin: auto;
  color: #101010;
  /* line-height: 1.8; */
}

/* CARD */
.about_fifteen_card {
  background: #faf7f7;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.about_fifteen_card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.about_fifteen_img img {
  width: 100px;
  /* height: 100px; */
  object-fit: cover;
}

/* CONTENT */
.about_fifteen_content {
  padding: 25px;
}

.about_fifteen_content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #222;
}

.about_fifteen_content p {
  color: #080808;
  /* line-height: 1.8; */
  font-size: 15px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about_fifteen_heading h2 {
    font-size: 23px;
  }

  .about_fifteen_img img {
    height: 275px;
    width: 300px;
    align-items: center;
    padding-left: 50px;
  }
  .about_fifteen_heading {
  text-align: justify;
  padding: 20px;
}

.about_fifteen_heading h5,
.about_fifteen_heading h2,
.about_fifteen_heading p {
  text-align: justify;
}
.about_fifteen_heading p{
  font-size: 15px;
}
}




/* ================= ABOUT SIXTEEN SECTION ================= */


.ABOUT_SIXTEEN_SECTION_container{
width:100%;
max-width:1200px;
margin:auto;
}

/* TITLE */

.ABOUT_SIXTEEN_SECTION_title{
text-align:center;
margin-bottom:40px;
}

.ABOUT_SIXTEEN_SECTION_title h2{
font-size:40px;
color:#c89a31;
}

/* DIRECTOR BOX */

.ABOUT_SIXTEEN_SECTION_director_box{
display:flex;
align-items:center;
gap:40px;
background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
padding:15px;
border-radius:25px;
margin-bottom:30px; 
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* IMAGE */

.ABOUT_SIXTEEN_SECTION_image{
width:35%;
}

.ABOUT_SIXTEEN_SECTION_image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
}

/* CONTENT */

.ABOUT_SIXTEEN_SECTION_content{
width:65%;
}

.ABOUT_SIXTEEN_SECTION_content h3{
font-size:32px;
margin-bottom:10px;
}

.ABOUT_SIXTEEN_SECTION_content h5{
font-size:20px;
color:#c89a31;
margin-bottom:20px;
}

.ABOUT_SIXTEEN_SECTION_content p{
font-size:16px;
line-height:1.8;
color:#444;
}

/* BUTTON AREA */

.ABOUT_SIXTEEN_SECTION_button_area{
text-align:center;
margin-top:40px;
}

/* BUTTON */

.ABOUT_SIXTEEN_SECTION_pdf_btn{
display:inline-block;
padding:14px 35px;
background:#c89a31;
color:#fff;
border:none;
border-radius:30px;
font-weight:bold;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.ABOUT_SIXTEEN_SECTION_pdf_btn:hover{
background:#a97d1f;
}

/* POPUP */

.ABOUT_SIXTEEN_SECTION_popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
z-index:999;
padding:20px;
overflow:auto;
}

/* POPUP CONTENT */

.ABOUT_SIXTEEN_SECTION_popup_content{
background:#fff;
max-width:800px;
margin:50px auto;
padding:40px;
border-radius:25px;
position:relative;
background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
}

/* CLOSE */

.ABOUT_SIXTEEN_SECTION_close{
position:absolute;
top:15px;
right:25px;
font-size:35px;
cursor:pointer;
color:#c89a31;
}

/* POPUP TITLE */

.ABOUT_SIXTEEN_SECTION_popup_content h2{
text-align:center;
margin-bottom:30px;
color:#c89a31;
}

/* CERTIFICATE GRID */

.ABOUT_SIXTEEN_SECTION_certificate_grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

/* CERTIFICATE BOX */

.ABOUT_SIXTEEN_SECTION_certificate_grid a{
display:flex;
align-items:center;
justify-content:center;
height:110px;
background:#fff;
border-radius:20px;
text-decoration:none;
font-weight:bold;
color:#333;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
padding:15px;
font-size: 12px;
text-align:center;
}

.ABOUT_SIXTEEN_SECTION_certificate_grid a:hover{
background:#c89a31;
color:#fff;
font-size: 12px;
transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:768px){

.ABOUT_SIXTEEN_SECTION_director_box{
flex-direction:column;
}

.ABOUT_SIXTEEN_SECTION_image,
.ABOUT_SIXTEEN_SECTION_content{
width:100%;
}

.ABOUT_SIXTEEN_SECTION_content{
text-align:center;
}

.ABOUT_SIXTEEN_SECTION_title h2{
font-size:32px;
}

} 



/* =================  ABOUT ONE SECTION  ================= */

.page-header {
  background: linear-gradient(135deg, #FBFBF8 60%, #b4bdd2 60%);
  position: relative;
  margin-top: 60px;
  padding: 80px 20px;
  overflow: hidden;
}

.page-header p {
  color: rgb(23, 22, 22);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-header h1 {
  color: #e0a800;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-header-blue {
  background: #e0a800;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .page-header {
    padding: 60px 20px;
    margin-top: 50px;
  }

  .page-header h1 {
    font-size: 38px;
  }
  .page-header p {
    font-size: 18px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .page-header {
    padding: 50px 15px;
    margin-top: 40px;
    text-align: justify;
    /* background: linear-gradient(180deg, #FBFBF8 70%, #d7dce8 70%); */
  }

  .page-header h1 {
    font-size: 21px;
    /* line-height: 1.3; */
  }

  .page-header p {
    font-size: 16px;
    /* line-height: 1.6; */
  }
}


/* Small Mobile */
@media (max-width: 480px) {
  .page-header {
    padding: 40px 12px;
  }

  .page-header h1 {
    font-size: 20px;
    text-align: justify;
    padding-top: 30px;
  }

  .page-header p {
    font-size: 15px;
    text-align: justify;
  }
}


/* ================= FOOTER ================= */

/* .footer-section {
  background: linear-gradient(to right, #a9baee, #2d4164, #2c5364);
  padding-left: 10px;
}

.footer-logo {
  width: 100px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}



.footer-link:hover {
  color: #00d4ff;
  text-decoration: none;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00d4ff;
} */

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 1000;
}

/* ================= FLOAT BUTTONS ================= */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.whatsapp-float {
  width: 40px;
  height: 40px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
}

.call-float {
  width: 40px;
  height: 40px;
  top: 180px;
  background: #0caf1f;
  color: #f9f7f7;
  font-size: 16px;
}

/* ================= TRUST IMAGE ================= */
.trust-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: auto;
}

/* ================= GALLERY ================= */
.gallery-box {
  width: 100%;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}

.gallery-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Desktop */
@media (min-width: 992px) {
  .gallery-box img {
    max-height: 260px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-box img {
    max-height: 220px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-box img {
    max-height: 180px;
  }
}

/* Improve touch */
.carousel {
  touch-action: pan-y;
}



/* ==================== ACTIVITIES HEADER ON SECTION ================ */


.activity-header{

    padding:50px 20px;
    border-radius: 0 0 40px 40px;
    background:linear-gradient(
    135deg,
    #FBFBF8 60%,
    #d7dce8 60%
    );
    margin-bottom:40px;
    text-align:left;
    font-family: 'Playfair Display', serif;
}

.activity-header h4{
    font-size:14px;
    /* letter-spacing:3px; */
    color:#efbb42;
    padding-top:60px;
}

.activity-header h5{
    font-size:25px;
    /* font-style:italic; */
    color:#0b0b0b;
    margin:10px 0;
}

.activity-header h1{
    font-size:35px;
    font-weight:700;
}

.activity-header h1 span{
    color:#c89a31;
}

.activity-header p{
    color:#0d0d0d;
    max-width:600px;
}

/* MOBILE */

@media(max-width:768px){

.activity-header{
    padding:45px 20px;
}

.activity-header h1{
    font-size:28px;
}

.activity-header h5{
    font-size:16px;
}

}




/* ================= ACTIVITIES PAGE ================= */


.activity-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.activity-section:last-child {
  border-bottom: none;
}

.activity-section h4 {
  font-weight: 600;
}

.activity-section img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.activity-section img:hover {
  transform: scale(1.05);
}

/* Activity Cards */

.activity-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 1px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.activity-image-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-image-wrapper img {
  transform: scale(1.1);
}

.activity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  /* background: linear-gradient(135deg, #0d6efd 0%, #198754 100%); */
  background: linear-gradient(135deg, #a6b8ee 0%, #3539aa 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.activity-content {
  padding: 5px;
}

.activity-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #e0a800;
  
}

.activity-description {
  color: #0f0e0e;
  /* line-height: 1.8;
   */
  margin-bottom: 20px;
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activity-tags .badge {
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery Cards */
.activity-gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.activity-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.activity-gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.activity-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-gallery-card:hover .activity-gallery-image img {
  transform: scale(1.15);
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.activity-gallery-card:hover .activity-overlay {
  opacity: 0;
}

.activity-overlay i {
  display: none;
}

/* Image Modal on Click */
.activity-gallery-image:hover {
  cursor: pointer;
}


.activity-gallery-content {
  padding: 20px;
}

.activity-gallery-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
  .activity-card {
    padding: 12px;
  }
  
  .activity-image-wrapper img {
    height: 200px;
  }
  
  .activity-title {
    font-size: 1.2rem;
  }
  
  .activity-gallery-image {
    height: 200px;
  }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 991px) {
  .compact-image-card img {
    height: 180px;
  }
  
  .revenue-image {
    max-width: 160px;
  }
  
  .activity-image-wrapper img {
    height: 250px;
  }
  
  .activity-gallery-image {
    height: 220px;
  }
}

/* ================= IMAGE CARDS ================= */
.image-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-card-content {
  padding: 20px;
}

.image-card-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.image-card-content p {
  color: #090909;
  /* line-height: 1.6; */
  margin-bottom: 0;
}

/* Compact Image Cards */
.compact-image-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.compact-image-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 15px;
  background: #f8f9fa;
}

.compact-card-content {
  padding: 20px;
}

.compact-card-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.compact-card-content p {
  color: #101010;
  /* line-height: 1.6; */
  margin-bottom: 0;
  font-size:16px;
}

/* Solution and Revenue Images */
.solution-image {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.revenue-image {
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* Market Cards */
.market-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.market-card img {
  max-height: 250px;
  width: 100%;
  object-fit: contain;
}

.market-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.market-card p {
  color: #0a0a0a;
  /* line-height: 1.7; */
  margin-bottom: 10px;
}
.brand-text{
  color: #e0a800;
}

@media (max-width: 768px) {
  .compact-image-card img {
    height: 150px;
  }
  
  .market-card img {
    max-height: 180px;
  }
  
  .solution-image {
    max-width: 100%;
  }
  
  .revenue-image {
    max-width: 140px;
  }
  
  /* Navbar adjustments */
  .navbar-brand img {
    height: 50px !important;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  /* Float buttons mobile */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
  
  .call-float {
    width: 45px;
    height: 45px;
    font-size: 18px;
    top: 180px;
    right: 15px;
  }
  
  /* Section padding mobile */
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Card padding mobile */
  .info-card,
  .focus-card {
    padding: 5px;
  }
  
  /* Trust image mobile */
  .trust-img {
    max-width: 100%;
  }
}

/* ================= TAX INFO BADGE ================= */

.tax-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  color: white;
  padding: 20px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.tax-badge-icon {
  font-size: 3rem;
  color: #ffd700;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.tax-badge-content {
  text-align: left;
}

.tax-badge-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.tax-badge-number {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffd700;
}

.tax-badge-clause {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ==============Responsive Tax Badge ========= */

@media (max-width: 768px) {
  .tax-info-badge {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  
  .tax-badge-content {
    text-align: center;
  }
  
  .tax-badge-icon {
    font-size: 2.5rem;
  }
  
  .tax-badge-title {
    font-size: 1.1rem;
  }
  
  .tax-badge-number {
    font-size: 1rem;
  }
  
  .tax-badge-clause {
    font-size: 0.75rem;
  }
}

/* ================= DONATION CARDS ================= */
.donation-card {
  /* background: #fff; */
  background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
  border-radius: 15px;
  padding-left: 20px;
  padding-top: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.donation-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  text-align: center;
  border-bottom: 3px solid #0d6efd;
}

.donation-card-header h4 {
  font-weight: 700;
  color: #2c3e50;
  margin-top: 10px;
}

.donation-card-body {
  padding: 30px;
}

.donation-card-footer {
  padding: 20px 30px;
  background: #f8f9fa;
}

.bank-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.bank-detail-item:last-child {
  border-bottom: none;
}

.bank-detail-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.bank-detail-value {
  color: #2c3e50;
  font-size: 1rem;
  text-align: right;
}

.qr-code-container {
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
}

.qr-code-image {
  max-width: 250px;
  border-radius: 10px;
  background: white;
  padding: 10px;
}

.upi-instructions {
  text-align: left;
  max-width: 350px;
  margin: 0 auto;
}

.upi-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.upi-step:hover {
  background: #e9ecef;
}

.upi-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

.upi-step-text {
  color: #0f1010;
  font-size: 0.95rem;
}

/* Responsive Donation Cards */
@media (max-width: 768px) {
  .donation-card-header,
  .donation-card-body,
  .donation-card-footer {
    padding: 20px;
  }
  
  .bank-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .bank-detail-value {
    text-align: left;
  }
  
  .qr-code-image {
    max-width: 200px;
  }
}



/*  ==================== GALLERY PAGE =================== */
/* ================= SECTION ================= */
.gaisection1-container{
    padding:80px 20px;
    background:#f8fafc;
}

/* HEADER */
.gaisection1-header{
    padding:70px 20px;
    border-radius:0 0 40px 40px;
    /* background:linear-gradient(135deg,#FBFBF8,#d7dce8); */
        background: linear-gradient(135deg, #FBFBF8 60%, #d7dce8 60%);
    margin-bottom:40px;
}



.gaisection1-header h4{
    letter-spacing:3px;
    font-size:14px;
    color:#c89a31;
    margin-bottom:10px;
}

.gaisection1-header h1{
    font-size:50px;
    font-weight:700;
}

.gaisection1-header span{
    color:#c89a31;
}

.gaisection1-header p{
    max-width:650px;
    margin:auto;
    color:#030303;
}

/* FILTER */
.gaisection1-filters{
    margin-bottom:40px;
}

.gaisection1-filters button{
    border:none;
    padding:12px 22px;
    border-radius:30px;
    margin:5px;
    background:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.gaisection1-filters button:hover,
.gaisection1-filters button.active{
    background:#c89a31;
    color:#fff;
    transform:translateY(-3px);
}

/* ================= GALLERY ================= */

.gaisection1-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* CARD */

.gaisection1-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:300px;
    cursor:pointer;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.gaisection1-card:hover{
    transform:translateY(-10px);
}

.gaisection1-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.gaisection1-card:hover img{
    transform:scale(1.1);
}

/* OVERLAY */

.gaisection1-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    color:white;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.85)
    );
}

.gaisection1-overlay span{
    font-size:13px;
    opacity:.8;
}

.gaisection1-overlay h3{
    font-size:20px;
    margin-top:5px;
}

/* LIGHTBOX */

.gaisection1-lightbox{
    display:none;
    position:fixed;
    z-index:99999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
}

.gaisection1-lightbox img{
    max-width:30%;
    max-height:80vh;
    border-radius:15px;
}

/* CLOSE */

.gaisection1-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:25px;
    color:white;
    z-index:100000;
    cursor:pointer;
    /* background:#c89a31; */
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gaisection1-close:hover{
    transform:rotate(90deg);
}

/* ARROWS */

.gaisection1-prev,
.gaisection1-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:white;
    background:rgba(255,255,255,.15);
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.4s;
}

.gaisection1-prev:hover,
.gaisection1-next:hover{
    background:#c89a31;
}

.gaisection1-prev{
    left:20px;
}

.gaisection1-next{
    right:20px;
}

/* MOBILE */

@media(max-width:768px){

.gaisection1-header{
padding:40px 20px;
}

.gaisection1-header h1{
font-size:30px;
text-align:center;
}

.gaisection1-header p{
text-align:center;
}

.gaisection1-card{
height:230px;
}

.gaisection1-lightbox img{
max-width:75%;
}

.gaisection1-close{
top:10px;
right:15px;
width:40px;
height:40px;
font-size:30px;
}
}