﻿/********** CSS **********/
:root {
    --primary: #ffb84d;
    --secondary: #f39200;
    --light: #F3F6F8;
    --dark: #3a3a3a;
}

/* Logo style here */

      .logo-container {
      height: 110px;
      width: 110px;
      margin: 0px;
      padding: 0px;
      position: absolute;
      top: 5px; /* Adjust this value as needed */
      left: 15%;
      transform: translateX(-50%);
      transition: all 0.3s ease;
      z-index: 3; /* Ensure the logo stays on top */
    }

    .logo-container1 {
      height: 70px;
      width: 70px;
      margin: 0px;
      padding: 0px;
      position: absolute;
      top: 5px; /* Adjust this value as needed */
      left: 14%;
      transform: translateX(-50%);
      z-index: 2; /* Ensure the logo stays on top */
    }
    .logo-text {
      position: absolute;
      padding-top: 35px;
      font-size: 3em; /* Adjust the size as needed */
      margin-left: 10px; /* Adjust the spacing as needed */
    }
    .logo-text1 {
      position: absolute;
      padding-top: 8px;
      font-size: 2em; /* Adjust the size as needed */
      margin-left: 10px; /* Adjust the spacing as needed */
    }

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.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-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 ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        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, 0, 0, .75);
    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(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.563), rgba(0, 0, 0, 0.563)), url(../img/carousel-1.jpeg) center top no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpeg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-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;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
    display: flex;
    flex-wrap: wrap;
}

.team-item {
    padding: .75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}

.team-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* YouTube Section */
.youtube-content {
    padding-right: 30px;
}

.youtube-stats .stat-box {
    text-align: center;
}

.btn-youtube {
    display: inline-block;
    padding: 16px 40px;
    background: #FF0000;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
    background: #cc0000;
    color: white;
}

.youtube-video-wrapper {
    position: relative;
}

.youtube-thumbnail {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.youtube-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.youtube-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.youtube-thumbnail:hover .youtube-img {
    transform: scale(1.05);
}

.youtube-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover .youtube-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 90px;
    height: 90px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.7);
}

/* Modern Team Cards */
.team-items-modern {
    display: flex;
    flex-wrap: wrap;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 31, 31, 0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

/* Mobile responsive for team images */
@media (max-width: 768px) {
    .team-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .team-image-wrapper {
        height: 400px;
    }
}

.team-card-modern:hover .team-img-modern {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(26, 74, 122, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

.team-social-modern {
    display: flex;
    gap: 12px;
}

.social-icon-modern {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card-modern:hover .social-icon-modern {
    transform: translateY(0);
    opacity: 1;
}

.team-card-modern:hover .social-icon-modern:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card-modern:hover .social-icon-modern:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card-modern:hover .social-icon-modern:nth-child(3) {
    transition-delay: 0.3s;
}

.team-card-modern:hover .social-icon-modern:nth-child(4) {
    transition-delay: 0.4s;
}

.social-icon-modern:hover {
    background: #ffb84d;
    color: white;
    transform: translateY(-5px);
}

.team-info-modern {
    padding: 25px;
    text-align: center;
    background: white;
    border-top: 3px solid #ffb84d;
}

.team-info-modern h5 {
    color: #1f1f1f;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.team-info-modern span {
    color: #6c757d;
    font-size: 0.95rem;
    display: block;
}

.btn-view-team {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 31, 31, 0.3);
}

.btn-view-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(31, 31, 31, 0.4);
    color: white;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
}

.team-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}


/*** Testimonial ***/
/* Small Horizontal Testimonial Cards */
.testimonial-card-small {
    padding: 0 10px;
}

.testimonial-card-inner {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(31, 31, 31, 0.08);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #ffb84d;
}

.testimonial-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(31, 31, 31, 0.15);
}

.testimonial-content-new {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-icon-small {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    color: #ffb84d;
    opacity: 0.2;
}

.testimonial-stars-small {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-stars-small i {
    font-size: 14px;
    color: #ffb84d;
}

.testimonial-text-small {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-author-new {
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid #f1f1f1;
}

.author-info {
    text-align: left;
    flex-grow: 1;
}

.author-info h6 {
    color: #1f1f1f;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info small {
    color: #6c757d;
    font-size: 0.85rem;
    display: block;
}

.author-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.testimonial-img-circle {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #ffb84d;
    box-shadow: 0 3px 10px rgba(255, 184, 77, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card-inner:hover .testimonial-img-circle {
    transform: scale(1.1);
}

.verified-badge-circle {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #1f1f1f;
    background: white;
    color: #1f1f1f;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: #1f1f1f;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(31, 31, 31, 0.3);
}

/* Testimonial Stats */
.testimonial-stat {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffb84d 0%, #f8d554 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 184, 77, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Share Experience Button */
.btn-share-experience {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 31, 31, 0.3);
}

.btn-share-experience:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(31, 31, 31, 0.4);
    color: white;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
}

/* Owl Carousel for Testimonials */
.testimonial-carousel-new .owl-stage-outer {
    padding: 10px 0;
    overflow: visible;
}

.testimonial-carousel-new .owl-item {
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.testimonial-carousel-new .owl-item.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}

/* Modern Contact Section */
.contact-us-modern {
    background: white;
}

.alert-modern {
    border-radius: 15px;
    padding: 20px 25px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.alert-modern i {
    font-size: 24px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(31, 31, 31, 0.1);
}

.form-group-modern {
    margin-bottom: 0;
}

.form-group-modern label {
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-modern:focus {
    outline: none;
    border-color: #ffb84d;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.1);
}

.form-control-modern::placeholder {
    color: #adb5bd;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 31, 31, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(31, 31, 31, 0.4);
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
}

/* Contact Info Cards */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffb84d 0%, #f8d554 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 184, 77, 0.3);
}

.contact-info-content h6 {
    color: #1f1f1f;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-info-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ffb84d;
}

.contact-info-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Contact Social Links */
.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.contact-social h6 {
    color: #1f1f1f;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(31, 31, 31, 0.3);
    background: linear-gradient(135deg, #ffb84d 0%, #f8d554 100%);
}

/* Map Section */
.map-wrapper-modern {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.location-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.location-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 5px 15px rgba(31, 31, 31, 0.3);
}

.location-feature h6 {
    color: #1f1f1f;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-feature p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.location-feature a {
    text-decoration: none;
}

.location-feature a:hover {
    text-decoration: underline;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

/* Modern Footer Styles */
.footer-modern {
    padding: 40px 0 20px;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 184, 77, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb84d;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: #ffb84d;
    transform: translateX(5px);
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ffb84d;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 10px;
    color: #ffb84d;
}

.footer-links a:hover {
    color: #ffb84d;
    transform: translateX(5px);
}

/* Newsletter Form Modern */
.newsletter-form-modern {
    margin-bottom: 20px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: #ffb84d;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-wrapper i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-right: 12px;
}

.newsletter-input-wrapper input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-wrapper button {
    width: 45px;
    height: 45px;
    background: #ffb84d;
    border: none;
    border-radius: 50%;
    color: #1f1f1f;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input-wrapper button:hover {
    background: #f8d554;
    transform: scale(1.1);
}

/* Social Icons Modern Footer */
.social-icons-modern {
    display: flex;
    gap: 12px;
}

.social-icon-modern-footer {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-modern-footer:hover {
    background: #ffb84d;
    color: #1f1f1f;
    transform: translateY(-5px);
    border-color: #ffb84d;
}

/* Portal Links */
.portal-links {
    display: flex;
    gap: 10px;
}

.portal-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portal-btn i {
    font-size: 24px;
    color: #ffb84d;
    margin-bottom: 8px;
}

.portal-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

.portal-btn:hover {
    background: rgba(255, 184, 77, 0.2);
    transform: translateY(-3px);
    color: white;
    border-color: #ffb84d;
}

        /* Optional CSS for map and video styling */
        .map-container, .video-container {
            position: relative;
            width: 100%;
            height: 500px; /* Set height as needed */
        }
        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        .youtube-image {
            position: relative;
            display: inline-block;
            overflow: hidden;
            max-width: 100%;
        }
        .youtube-image img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .youtube-image:hover img {
            transform: scale(1.1);
        }
        .youtube-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #FFFFFF;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            z-index: 1; /* Ensure text is above overlay */
        }
        .youtube-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.736); /* Adjust transparency as needed */
            z-index: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .youtube-image:hover::before {
            opacity: 1;
        }

/* ===========================================
   IMPROVED MOBILE MENU STYLES
   =========================================== */

@media (max-width: 991px) {
    /* Mega Menu Mobile Styles */
    .header-area .main-nav .nav li.has-mega-menu .mega-menu {
        display: none;
        position: relative;
        width: 100%;
        background: rgba(0, 0, 0, 0.15);
        padding: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
    }
    
    .mega-menu-content {
        display: block !important;
        padding: 10px 0 !important;
    }
    
    .mega-menu-column {
        padding: 5px 10px;
    }
    
    .mega-menu-column h4 {
        color: #ffb84d !important;
        font-size: 12px !important;
        font-weight: 600;
        padding: 8px 15px;
        margin-bottom: 0;
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .mega-menu-items li a {
        display: block !important;
        padding: 10px 20px !important;
        color: #fff !important;
        font-size: 13px !important;
        background: transparent !important;
        line-height: 1.4 !important;
        height: auto !important;
    }
    
    .mega-menu-items li a:hover {
        background: rgba(255, 184, 77, 0.15) !important;
        color: #ffb84d !important;
    }
    
    .mega-menu-items li a i {
        width: 20px;
        margin-right: 8px;
        color: #ffb84d;
    }
    
    /* Hide Featured Sections on Mobile */
    .mega-menu-featured {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .mega-menu-column h4 {
        font-size: 11px !important;
    }
    
    .mega-menu-items li a {
        font-size: 12px !important;
        padding: 8px 15px !important;
    }
}