/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background-color: #d8a426;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: white;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}


/* Mobile Version */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        /* margin-top:-310px; */
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        background-color: var(--dark);
        border: 8px solid var(--dark);
        border-radius: 50%;
    }
}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 150px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(216 164 38 / 83%), rgb(216 164 38 / 89%)), url(../img/gallery12.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: white;
    border: 1px solid rgba(248, 248, 248, 0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgb(255 255 255);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: white;
}

.logo-img {
  height: 120px !important;
    width: auto;
    max-width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-img {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 120px;
  }
}


 /* Section Background */
.courses-section {
    background-image: url(../img/background1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.section-subtitle {
    color: #d8a426;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.course-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    border-top: 5px solid #d8a426;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Tags */
.tags {
    margin-bottom: 15px;
}

.tags span {
    display: inline-block;
    background: #d8a426;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 5px 5px 5px 0;
}

/* Description */
.course-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Button */
.apply-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #d8a426;
    border-radius: 30px;
    color: #d8a426;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #d8a426;
    color: #fff;
}

/* ========== Responsive ========== */

/* Tablet */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Section */
.why-section {
    padding: 80px 20px;
    background: #f4f6f9;
    text-align: center;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0b2c4d;
}

/* Layout */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Columns */
.why-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Cards */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h4 {
    color: #0b2c4d;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* Image */
.why-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== Responsive ========== */

/* Tablet */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .why-image {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .section-heading {
        font-size: 24px;
    }
}
/* ========== Responsive ========== */

/* Large Tablet */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-image {
        grid-column: span 2;
        text-align: center;
    }

    .why-image img {
        max-width: 80%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 20px;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-column {
        gap: 20px;
    }

    .why-image {
        order: -1;
    }

    .why-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .why-card {
        text-align: center;
        padding: 20px;
    }

    .why-card h4 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-heading {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .why-section {
        padding: 50px 15px;
    }

    .why-card {
        padding: 18px;
        border-radius: 10px;
    }

    .why-image img {
        border-radius: 12px;
    }
}



/* Make both columns equal height */
.why-wrapper {
    align-items: stretch;
}

/* Make columns stretch */
.why-column {
    display: flex;
    flex-direction: column;
}

/* Make all cards equal height */
.why-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;

      background-image: url(../img/background1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.testimonial-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.testimonial-container {
  overflow: hidden;
  width: 100%;
  padding-right: 60px;  /* increase space on right */
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  flex: 0 0 33.33%;
  box-sizing: border-box;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  padding: 0px 40px 0px 0px;
}

.testimonial-card h4 {
  margin: 5px 0;
  font-size: 18px;
}

.testimonial-card span {
  font-size: 14px;
  color: #888;
}

.prev, .next {
  background: #001d23;
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  /* font-size: 20px; */
}

.prev:hover, .next:hover {
  background: #ff6600;
  background: #001d23;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-title {
    font-size: 24px;
  }
}



.faq-section {
  padding: 60px 20px;
  background: #f5f6f8;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #e9ecef;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active .faq-question {
  background: #001d23;
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 14px;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

/* RIGHT IMAGE */
.faq-right {
  flex: 1;
}

.faq-right img {
  width: 100%;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-title {
    font-size: 26px;
  }
}



.gallery-section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
}

.gallery-section h2{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
    color:#222;
}

/* Grid Layout */
.gallery-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:10px;
    position:relative;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* Overlay Effect */
.gallery-item::after{
    /* content:"View Image"; */
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.6);
    color:#fff;
    text-align:center;
    padding:10px;
    opacity:0;
    transition:0.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* Responsive */
@media(max-width:768px){
    .gallery-section{
        padding:40px 15px;
    }
    .gallery-section h2{
        font-size:24px;
    }
}


    /* hero */
    .hero {
      /* background: linear-gradient(115deg, #fff3e6 0%, #ffe9f0 100%); */
      border-radius: 40px;
      margin: 0 24px 40px;
      padding: 40px 32px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
    }
    .hero-content {
      flex: 1 1 350px;
    }
    .hero-content h1 {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 16px;
      color: #1e1e2f;
    }
    .hero-content p {
      font-size: 1.2rem;
      color: #4a4a5e;
      margin-bottom: 28px;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-image {
      flex: 1 1 350px;
      background: url('https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?w=600&auto=format&fit=crop') center/cover;
      min-height: 280px;
      border-radius: 32px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    /* section padding */
    section {
      padding: 60px 0;
    }
    .section-title {
      font-size: 2.4rem;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 5px;
      background: #024139;
      margin: 12px auto 0;
      border-radius: 8px;
    }

    /* intro */
    .intro-text {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.2rem;
      color: #334155;
      background: white;
      padding: 32px;
      border-radius: 40px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }

    /* service grid */
    .service-grid, .theme-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 28px;
      margin-top: 20px;
    }
    .service-card {
      background: white;
      padding: 28px 16px;
      border-radius: 28px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
      transition: all 0.2s;
      border: 1px solid #fce7e9;
    }
    .service-card i {
      font-size: 2.8rem;
      color:#024139;
      margin-bottom: 15px;
    }
    .service-card h3 {
      margin-bottom: 8px;
      font-size:22px;
    }
    .service-card p {
      color: #5f5f73;
      font-size: 0.95rem;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: #024139;
    }

    /* theme cards */
    .theme-card {
      background: white;
      border-radius: 30px;
      padding: 0 0 20px;
      overflow: hidden;
      box-shadow: 0 12px 24px -10px rgba(244,63,94,0.2);
    }
    .theme-img {
      height: 180px;
      background-size: cover;
      background-position: center;
    }
    .theme-card h4 {
      font-size: 1.4rem;
      margin: 16px 0 6px;
      text-align: center;
    }

    /* packages */
    .package-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }
    .package-card {
      background: white;
      border-radius: 40px;
      padding: 32px 24px;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
      border: 1px solid #ffe3e7;
      transition: 0.2s;
      text-align: center;
    }
    .package-card.popular {
      border: 2px solid #024139;
      transform: scale(1.02);
    }
    .package-card h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
    .package-card ul {
      list-style: none;
      margin: 20px 0;
    }
    .package-card li {
      padding: 8px 0;
      border-bottom: 1px dashed #f1d6da;
    }
    .price-tag {
      font-size: 2rem;
      font-weight: 800;
      color: #024139;
      margin: 15px 0;
    }
    .package-btn {
      background: #1e1e2f;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
    }
    .package-btn:hover {
      background: #024139;
    }

    /* features (why choose) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 25px;
      text-align: center;
    }
    .feature-item {
      background: rgba(244,63,94,0.05);
      padding: 24px 16px;
      border-radius: 32px;
      font-weight: 600;
      font-size: 1.2rem;
    }
    .feature-item i {
      color: #024139;
      font-size: 2rem;
      display: block;
      margin-bottom: 12px;
    }

    /* gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .gallery-item {
      height: 200px;
      border-radius: 32px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transition: 0.15s;
    }
    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 18px 28px rgba(244,63,94,0.25);
    }

    .btn-center {
      text-align: center;
      margin-top: 32px;
    }


     

    /* responsiveness */
    @media (max-width: 700px) {
      .hero-content h1 { font-size: 2.2rem; }
      .top-bar { flex-direction: column; gap: 16px; }
      .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .btn-outline { margin-left: 0; margin-top: 12px; }
    }


        /* buttons */
    .btn-primary {
      display: inline-block;
      background: #024139;
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      transition: 0.2s;
      box-shadow: 0 8px 16px -6px rgba(244, 63, 94, 0.3);
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: #024139;
      transform: scale(1.02);
      color: white;
    }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: #1e1e2f;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 40px;
      text-decoration: none;
      border: 2px solid #024139;
      transition: 0.2s;
      margin-left: 12px;
    }
    .btn-outline:hover {
      background: #024139;
      color: white;
    }


    .floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp {
    background: #25D366;
}

.call {
    background: #007bff;
}

.float:hover {
    transform: scale(1.1);
    color:white;
}




.mission-section{
    background-image: url(../img/background1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 20px;
     color: #fff;
    padding:70px 8%;
}

.section-titlexx{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    position:relative;
}

.section-titlexx::after{
    content:"";
    width:60px;
    height:4px;
    background:#fff;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:5px;
}

.mission-wrapper{
    display:flex;
    gap:40px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.mission-left{
    flex:1;
    min-width:300px;
}

.info-box{
    background:#e9e9e9;
    padding:30px;
    border-radius:15px;
    margin-bottom:25px;
}

.info-box h3{
    color:#024139;
    font-size:20px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.info-box p{
    color:#333;
    font-size:16px;
    line-height:1.6;
}

.mission-right{
    flex:1;
    min-width:300px;
}

.mission-right img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

/* ========== Responsive ========== */
@media(max-width:992px){
    .mission-wrapper{
        flex-direction:column;
    }
}

@media(max-width:576px){
    .mission-section{
        padding:50px 5%;
    }

    .section-titlexx{
        font-size:26px;
    }

    .info-box{
        padding:20px;
    }

    .info-box p{
        font-size:14px;
    }
}


.presence-section{
    background:#f2f2f2;
    padding:70px 8%;
}

.presence-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
    justify-content:space-between;
    flex-wrap:wrap;
}

.presence-image{
    flex:1;
    min-width:320px;
}

.presence-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.presence-content{
    flex:1;
    min-width:320px;
}

.section-titlexxx{
    font-size:32px;
    color:#024139;
    font-weight:700;
    margin-bottom:40px;
    position:relative;
}

.section-titlexxx::after{
    content:"";
    width:60px;
    height:4px;
    background:#024139;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:5px;
}

.location-card{
    background:#ffffff;
    padding:20px 25px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.location-card i{
    font-size:22px;
    color:#024139;
}

.location-card h4{
    font-size:16px;
    color:#000;
    margin-bottom:5px;
}

.location-card p{
    font-size:15px;
    color:#555;
}

.presence-content .description{
    margin-top:20px;
    font-size:15px;
    color:#444;
    line-height:1.7;
}

/* ========== Responsive ========== */

@media(max-width:992px){
    .presence-wrapper{
        flex-direction:column;
    }
}

@media(max-width:576px){
    .presence-section{
        padding:50px 5%;
    }

    .section-titlexxx{
        font-size:26px;
    }

    .location-card{
        padding:18px;
    }

    .presence-content .description{
        font-size:14px;
    }
}








.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 40%; /* Height control (change to 56.25% for 16:9 ratio) */
    height: 0;
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Optional: Better height for mobile */
  @media (max-width: 768px) {
    .map-container {
      padding-bottom: 70%;
    }
  }