:root {
    /* COLORS */
  --primary-blue: #132463;
  --secondary-orange: #E37325;
  --light-gray: #F5F5F5;
  /* FONTS */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-gray);
}

.header_logo {
    width: 7rem;
}

.header_logo img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
}

.custom-navbar {
    padding: 1.5rem 4rem;
    background-color: var(--primary-blue);
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-orange);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

/* Transparent navbar at top */
.custom-navbar {
    padding: 1.5rem 4rem;
    background-color: transparent;
    transition: all 0.4s ease;
}

/* Solid background when scrolled */
.custom-navbar.scrolled {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  color: var(--secondary-orange);
}

.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link:active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.custom-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--light-gray);
}
.active {
    color: var(--secondary-orange);
}

.nav-link:hover {
    color: var(--secondary-orange);

}
.nav-link.active {
    color: var(--secondary-orange); 
    font-weight: 600;
}

/* Make hamburger button visible */
.navbar-toggler {
    /* border-color: var(--light-gray); */
    background-color: rgba(254, 237, 237, 0.1);
    padding: .2em;
}

/* Custom Carousel edit and background Overlay */
.custom-slide-edit {
    overflow: hidden;
    position: relative;
    transition: all 1s ease-in;
}

 .custom-slide-edit::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 31, 82, .6);
    pointer-events: none;
} 

/* Custom Carousel Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #c96520; /* Darker orange on hover */
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Caption Styling */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-caption h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-gray);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--light-gray);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hide buttons by default */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-orange);
    border-radius: 50%;
    top: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    border: none;
}

/* Show buttons when hovering over carousel */
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 40px;
    transform: translateY(-50%);
}

.carousel-control-next {
    right: 40px;
    transform: translateY(-50%);
}

.carousel-control-prev:hover {
    background-color: #c96520;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-next:hover {
    background-color: #c96520;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 10px;
    height: 10px;
}

/* Statistics Section */
.stats-section {
    background-color: var(--primary-blue);
    padding: 2rem 0;
}

.stat-item {
    padding: .8rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-gray);
    margin: 0;
    font-weight: 400;
}


/* Responsive adjustments */
/* mobile navbar & mobile carousel */
@media (max-width: 1020px) {
    .carousel-item img {
        height: 100vh;
        object-fit: cover;
    }
    .carousel-caption {
        width: 80%;
        top: 60%;
    }
    .carousel-caption h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }

}
/* mobile navbar */
@media (max-width: 980px){
    .custom-navbar{
        position: fixed;
        background-color: var(--primary-blue);
        padding: 1.5rem 2rem;   
    }
    .navbar-nav {
        transition: all 0.4s ease;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next { 
        display: none;
    
    }
}

/* Responsive carousel captions */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.875rem;
    }
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}


.intro-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.year-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--secondary-orange);
    padding: 1.5rem 2.5rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.year-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.year-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.intro-content {
    padding-left: 2rem;
}

.intro-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-title .highlight {
    color: var(--primary-blue);
}

.intro-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.25rem;
    margin-right: 3rem;
    text-align: justify;
}

.btn-learn-more {
    background-color: var(--primary-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding: 1rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: left;
    width: 40%;
}

.btn-learn-more:hover {
    background-color: var(--secondary-orange);
    color: white;
    transform: translateY(-1px);
    border-color: var(--secondary-orange);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .intro-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .intro-title {
        font-size: 2.25rem;
    }
    .intro-text{
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 0;
    }
    
    .intro-title {
        font-size: 1.875rem;
    }
    
    .year-badge {
        padding: 1rem 1.5rem;
    }
    
    .year-text {
        font-size: 1.5rem;
    }
    
    .year-number {
        font-size: 2rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.orangetxt{
    color: var(--secondary-orange);
}
.bluetxt{
    color: var(--primary-blue);
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.service-description {
  flex-grow: 1;
  margin-bottom: 20px;
  text-align: justify;
    word-break: normal;
  overflow-wrap: break-word;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.learn-more-serv-sec {
    display: inline-block;
    margin-top: auto;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.learn-more-serv-sec:hover {
    background: var(--secondary-orange);
    transform: translateX(5px);
    color: var(--light-gray);
}

.learn-more-btn {
  display: inline-block;
  margin-top: auto;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    border: 2px solid var(--secondary-orange);
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

.logo-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: var(--primary-blue);
}

.logo-container h3{
    color: var(--light-gray);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    color: #ff8c42;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    background: #fff;
    border-radius: 16px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .logo-item {
        width: 140px;
        height: 100px;
    }
}

.upcoming-courses {
background-color: var(--primary-blue);
padding: 80px 0;
color: white;
}

.upcoming-courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    font-family: var(--font-heading);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.section-label {
    color: var(--secondary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn-schedule {
    background-color: var(--secondary-orange);
    color: var(--light-gray);
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-body);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-schedule:hover {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--secondary-orange);
    transform: translateX(5px);
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.course-meta {
    color: var(--secondary-orange);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.course-title {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.course-date {
    /* color: var(--primary-blue); */
    font-size: 1rem;
    margin-bottom: 30px;
}

.learn-more {
    color: var(--secondary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.course-description{
    text-align: justify;
}

.learn-more:hover {
    color: var(--secondary-orange);
    gap: 15px;
}

@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .upcoming-courses {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .course-card {
        padding: 30px;
        margin-bottom: 20px;
    }
}

.footer 
{
    background-color: var(--primary-blue);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    background-color: #fff;
    height: 60px;
    margin-bottom: 25px;
    width: 100px;
}

.hfc-footer > img{
    width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #b8c5db;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #2d4a7c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {

    color: var(--secondary-orange);
    transition: all .4s ease;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    border-bottom: 2px solid var(--secondary-orange);
    color: var(--secondary-orange);
    /* transition: all .4s ease; */
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    color: #b8c5db;
}

.contact-icon {
    color: var(--secondary-orange);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 18px;
}

.contact-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--primary-blue);
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b8c5db;
    font-size: 14px;
}

.footer-bottom a {
    color: #b8c5db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .pd-left {
        padding-left: 30px;
    }
}

/* Services Page */
/* Services Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a2b5f 0%, #2d4a8f 50%, #4a5f9d 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/hero-training.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 95, 0.6) 0%, rgba(45, 74, 143, 0.9) 50%, rgba(74, 95, 157, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-left: 5%;
    color: white;
}

.hero-label {
    display: inline-block;
    color: #ff8c42;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}


/* What We Offer Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-label {
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: white;
}

.icon-blue { background: linear-gradient(135deg, #0066cc, #0099ff); }
.icon-orange { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-list li {
    padding: 12px 0 12px 32px;
    color: #444;
    font-size: 15px;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
}

.mb-4 {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        margin-bottom: 24px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background-color: #ff8c42;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,66,0.4);
}

.btn-secondary-cta {
    background-color: transparent;
    color: #ffffff;
    padding: 14px 35px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-cta:hover {
    background-color: #ffffff;
    color: #1e3a8a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* Courses Page */
/* Filter Section */
.filter-section {
    background-color: #ffffff;
    padding: 20px 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.filter-icon {
    font-size: 20px;
    color: #1e3a8a;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #e5e7eb;
    background-color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

/* Courses Section */
.courses-section {
    padding: 40px 0 60px;
}

.showing-text {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 30px;
}

.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.course-badge {
    background-color: var(--secondary-orange);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.category-badge {
    background-color: #e0e7ff;
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 15px 20px 0;
}

.course-content {
    padding: 20px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* margin-bottom: 20px; */
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}

.meta-item i {
    color: var(--secondary-orange);
    font-size: 14px;
    width: 16px;
}

.currency {
    background-color: #E0E7FF;
    padding: 5px;
    width: 20%;
    border-radius: 10px;
    text-align: center;
    color: var(--primary-blue);
    margin-left: 250px;
}

.enroll-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 12px 0;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.enroll-btn:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* CTA Section */
.custom-training-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    text-align: center;
    margin-top: 40px;
}

.custom-training-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.custom-training-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.request-btn {
    background-color: #ff8c42;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.request-btn:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,66,0.4);
}

.no-courses {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
}

@media (max-width: 768px) {
    .filter-container {
        justify-content: flex-start;
    }

    .custom-training-section h2 {
        font-size: 32px;
    }

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

/* About Page */
/* Hero Section */
.hero-about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a2b5f 0%, #2d4a8f 50%, #7e91cb 100%);
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/Father.jpeg');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.hero-about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 95, 0.6) 0%, rgba(45, 74, 143, 0.9) 50%, rgba(74, 95, 157, 0.1) 100%);
    z-index: 2;
}
/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-label {
    color: #ff8c42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.excellence-badge {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    display: inline-block;
}

.excellence-badge .years {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.excellence-badge .label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
}


/* Vision Mission Section */
.vision-mission-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.vm-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.vision-icon {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.mission-icon {
    background-color: #fed7aa;
    color: #ff8c42;
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.vm-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 60px;
}

.value-card {
    text-align: center;
    padding: 35px 20px;
    transition: all 0.3s ease;
}

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

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    border-color: #1e3a8a;
    background-color: #dbeafe;
}

.value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 60px;
}

.team-category {
    margin-bottom: 60px;
}

.team-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

.team-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 2px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .team-category-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .team-section {
        padding: 60px 0;
    }
}

/* Global Reach Section */
.global-reach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.location-tag {
    display: inline-block;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
}

.location-tag:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* CTA Section */
.partner-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    text-align: center;
}

.partner-cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.partner-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.cta-btn {
    background-color: #ff8c42;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,66,0.4);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .partner-item:nth-child(even) {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }

    .values-title {
        font-size: 32px;
    }

    .partner-cta-section h2 {
        font-size: 32px;
    }

    .company-image {
        height: 300px;
        margin-top: 30px;
    }
}


/* Affiliate Page */
/* Partners & Accreditors Section */
.hero-affiliate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/about-office.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.partners-accreditors-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-label {
    color: var(--secondary-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.logo-circle img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.logo-circle:hover {
    transform: scale(1.05);
}

.logo-gray {
    background-color: #e5e7eb;
    color: #9ca3af;
}

.logo-dark {
    background-color: #1f2937;
    color: #ffffff;
}

/* Accreditations Section */
.accreditations-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.accreditation-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-orange);
    color: white;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.accreditation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
}

.accreditation-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.accreditation-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.accreditation-list {
    list-style: none;
    padding: 0;
}

.accreditation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #374151;
    font-size: 15px;
}

.accreditation-list li i {
    color: var(--secondary-orange);
    font-size: 18px;
    margin-top: 2px;
}

/* Key Partnership Section */
.key-partnership-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.partnership-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.partnership-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.partnership-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.partnership-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-orange {
    background-color: #fed7aa;
    color: var(--secondary-orange);
}

.icon-blue {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.partnership-card .card-label {
    color: var(--secondary-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.partnership-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.partnership-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* International Presence Section */
.international-presence-section {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: white;
}

.international-presence-section .section-label {
    color: var(--secondary-orange);
}

.international-presence-section .section-title {
    color: white;
    margin-bottom: 15px;
}

.international-description {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-icon {
    color: var(--secondary-orange);
    font-size: 20px;
}

.location-info h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.location-info p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}

.btn-explore {
    background-color: var(--secondary-orange);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-explore:hover {
    background-color: #c96520;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 115, 37, 0.4);
}

/* Affiliate Hotels Section */
.accommodation-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-label {
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hotel-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 30px 24px;
    color: white;
}

.hotel-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.hotel-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-location i {
    font-size: 12px;
}

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

@media (max-width: 576px) {
    .hotel-grid {
        grid-template-columns: 1fr;
    }

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

    .hotel-card {
        height: 280px;
    }
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.benefits-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #374151;
    font-size: 15px;
}

.benefits-list li i {
    color: var(--secondary-orange);
    font-size: 18px;
    margin-top: 2px;
}

.cta-box {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.cta-box h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-partner {
    background-color: var(--secondary-orange);
    color: white;
    padding: 14px 0;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-partner:hover {
    background-color: #c96520;
    color: white;
    transform: translateY(-2px);
}

.btn-network {
    background-color: transparent;
    color: white;
    padding: 14px 0;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-network:hover {
    background-color: white;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }

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

    .accreditation-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        gap: 30px;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #fff5ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-orange);
    font-size: 24px;
}

.info-card h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.info-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Form and Map Section */
.form-wrapper {
    width: 100%;
    height: 350px;
    display: flex;
    justify-self: center;
}

.form-map-section {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-description {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Why Choose HFC Box */
.why-choose-box {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 35px;
    color: white;
}

.why-choose-box h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.why-choose-list li i {
    color: var(--secondary-orange);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-wrapper {
        height: 300px;
    }
    .form-wrapper {
        margin-bottom: 250px;
    }
}

/* Gallery Section */

.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item.text-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-item.text-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }
}

/* Modal */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 25px 30px;
    border: none;
}

.modal-title {
    font-weight: 700;
    font-size: 24px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modal-body {
    padding: 35px 30px;
}

.form-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

.btn-submit {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    color: white;
}

/* .carousel-logos{
    font-size: .9rem;
} */

.service-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.demo-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.demo-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.demo-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* =====================================
   HOMEPAGE – INTERNATIONAL CONFERENCES
===================================== */

.home-conferences {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 90px 24px;
}

/* =========================
   INTRO
========================= */

.conference-intro {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--secondary-orange);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.conference-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.conference-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #dbe2f1;
  max-width: 720px;
}

/* =========================
   SLIDER
========================= */

.conference-slider {
  position: relative;
  overflow: hidden;
}

/* =========================
   ROW
========================= */

.conference-row {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* =========================
   SLIDE
========================= */

.conference-slide {
  min-width: 300px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.conference-slide:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.conference-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary-orange);
  margin-bottom: 10px;
}

.conference-slide h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 24px;
}

/* =========================
   LINK
========================= */

.conference-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.conference-link:hover {
  color: var(--secondary-orange);
}

/* =========================
   CONTROLS
========================= */

.conference-controls {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .conference-slide {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .home-conferences {
    padding: 70px 20px;
  }

  .conference-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .conference-slide {
    scroll-snap-align: start;
    min-width: 85%;
  }

  .conference-controls {
    display: none;
  }
}

.team-image {
    width: 100%;
}
.team-image img {
    width: 100%;
    object-fit: cover;
}