body{
   padding: 0 ;
   margin: 0;
   box-sizing: border-box;
   font-family: "Barlow Semi Condensed", Arial, sans-serif;
}

/* Navbar hover styles */
.navbar .nav-link:hover {
   color: #65BC7B !important;
   transition: color 0.3s ease;
}

.navbar .dropdown-item:hover {
   color: #65BC7B !important;
   background-color: transparent !important;
   transition: color 0.3s ease;
}

.top-header {
    background-color: #b8e6ff;
    color: #333;
    padding: 12px 0;
    font-size: 14px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo-text:hover {
    color: #333;
    text-decoration: none;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #666;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.content-section {
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.dropdown-menu.show {
    display: block;
    border: none;
    border-radius: 0;
}

/* Contact Us Button Hover Effect */
.btn-contact-us {
    background-color: #1e5fb5 !important;
    border-color: #1e5fb5 !important;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-contact-us:hover {
    background-color: #0d4285 !important;
    border-color: #0d4285 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(30, 95, 181, 0.3);
}

/* Testimonial Carousel Styling */
#testimonialCarousel {
    overflow: hidden;
}

#testimonialCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#testimonialCarousel:hover {
    animation-play-state: paused;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Footer Styles */
.footer-link:hover {
    color: #007bff !important;
    text-decoration: underline !important;
    transition: all 0.3s ease;
}

.social-icon-link:hover i {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

.back-to-top button:hover {
    background-color: #495057 !important;
    transform: translateY(-2px);
}

/* Custom Hover Classes */
.hover-bg-primary:hover {
    background-color: #00569E !important;
    transition: all 0.3s ease;
}

.hover-text-white:hover {
    color: white !important;
    width: fit-content;
    transition: all 0.3s ease;
}

.hover-rounded-full:hover {
    border-radius: 50px !important;
    transition: all 0.3s ease;
}

/* Contact Hero Banner Styles */
.contact-hero-bannerr {
    /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('./images/homeimages/contact.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}
.contact-hero-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('./images/homeimages/gym.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.contact-overlay {
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.contact-phone-icon {
    width: 120px;
    height: 120px;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.contact-phone-icon i {
    font-size: 3rem;
    color: white;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-card-icon {
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Contact Info & Form Section */
.contact-info-form-section {
    background: linear-gradient(135deg, #0A5CA1 0%, #C0C5CA 100%);
    min-height: 100vh;
}

.contact-info-side {
    background: transparent;
}

.contact-form-side {
    backdrop-filter: blur(10px);
}

.contact-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle i {
    color: white;
    font-size: 18px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 16px;
    line-height: 1.2;
}

.contact-value {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Social Icons */
.social-icon-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.social-icon-link i {
    color: white;
    font-size: 20px;
}

/* Custom Form Styling */
.form-label-custom {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-control-custom:focus {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

textarea.form-control-custom {
    border-radius: 25px;
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
}

/* Qualifications Section */
.qualifdeication-section {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    background-color: white;
}

.collapse-btn {
    transition: all 0.3s ease;
}

.collapse-btn[aria-expanded="true"] i.bi-dash::before {
    content: "\f229"; /* bi-plus icon */
}

.collapse-btn[aria-expanded="false"] i.bi-dash::before {
    content: "\f235"; /* bi-dash icon */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-center {
        text-align: center;
    }
    
    .footer-right {
        text-align: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    .footer-social {
        text-align: center !important;
    }
    
    .footer-company-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .contact-phone-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .contact-phone-icon i {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 991px) {
    .contact-info-form-section {
        min-height: auto;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 3rem 2rem !important;
    }
    
    .contact-form-side {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .form-label-custom {
        color: #333;
    }
}

@media (max-width: 576px) {
    .footer-center .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-banner {
        min-height: 300px;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 2rem 1rem !important;
    }
    
    .contact-text {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
}


.section-title {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.section-subtitle {
  font-size: 1.25rem;
  color: #afafaf;
  text-align: center;
}
.section {
  background-color: #333645;
  padding: 15px 15px;
}
.section h3 {
  color: #ffffff;
}
.section p, .section li {
  color: #7E7888;
}
.section hr {
  border-top: 2px solid #999;
  max-width: 300px;
  margin: 1rem auto;
}

.nav-tabs .nav-link {
    font-weight: bold;
    color: #000;
    border: none;

    border-bottom: 3px solid transparent;
    
  }
  .nav-tabs .nav-link.active {
    color: #129e76;
    border-bottom: 3px solid #129e76;
    background-color: #fff;
  }
  .tab-pane {
    background-color: #eff4f2;
  }
  .tab-content {
    border: 1px solid #ddd;
    border-top: none;
  }
  .tab-image {
    width: 300px;
    height: auto;
  }
  .list-columns {
    columns: 2;
  }




  .nav-tabs .nav-link {
    font-weight: bold;
    color: #000;
    border: none;
    border-bottom: 3px solid transparent;
    background: #fff;
    padding: 20px;
  }

  .nav-tabs .nav-link.active {
    color: #129e76;
    border-bottom: 3px solid #129e76;

  }

  .tab-pane {
    background-color: #eff4f2;
    padding: 40px 30px;
  }

  .tab-content {
    border: 1px solid #e4e4e4;
    border-top: none;
  }

  .tab-image {
    width: 300px;
    height: auto;
    margin-right: 30px;
  }

  ol.split-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    padding-left: 1rem;
  }

  .tab-text {
    color: #555;
  }