/* Variables */
:root {
    --primary-color: #00BFA6;
    --secondary-color: #B0E0E6;
    --text-color: #333;
    --white: #ffffff;
    --active-nav: #1DE9B6;
    --hero-bg: rgba(176, 224, 230, 0.8);
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}
/* Navbar */
.navbar {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    position: fixed !important;
    width: 100%;
    z-index: 999;
    top: 0;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    width: 100%;
    max-width: 1400px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-collapse {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
    width: 100%;
    justify-content: flex-end;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--white) !important;
    padding: 6px 8px !important;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.3px;
    margin-right: -5px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--active-nav) !important;
    background: rgba(255, 255, 255, 0.1);
}

.btn-certificate {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 6px 12px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    /* margin-left: 8px; */
    margin-left: -10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-certificate:hover {
    background-color: #00a090;
    color: var(--primary-color) !important;
    border-color: var(--white);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 12px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-certificate {
    background-color: var(--primary-color);
    color: var(--white) !important;
    /* padding: 8px 15px !important; */
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-certificate:hover {
    background-color: #00a090;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
}
/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 8px 0;
    }

    .navbar > .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 55px;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 10px 0 20px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 12px !important;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    .btn-certificate {
        width: 200px;
        margin: 10px auto;
        padding: 12px 20px !important;
    }

    .dropdown-menu {
        width: 200px;
        margin: 5px auto;
        text-align: center;
        background: rgba(255,255,255,0.98);
    }

    /* Scrollbar Styling */
    .navbar-collapse::-webkit-scrollbar {
        width: 5px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }
}

/* Small Devices */
@media (max-width: 576px) {
    .navbar > .container {
        padding: 0 10px;
    }

    .logo-img {
        height: 55px;
    }

    .nav-link {
        font-size: 15px;
    }
}
      /* Modern Hamburger Menu Styles */
      .navbar-toggler {
        background: transparent;
        border: none;
        padding: 10px;
        width: 45px;
        height: 45px;
        position: relative;
        border-radius: 50%;
        transition: background 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Custom Hamburger Icon */
    .navbar-toggler-icon {
        position: relative;
        width: 24px;
        height: 2px;
        background: transparent;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: white;
        transition: transform 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -8px;
        transform-origin: left;
    }
    
    .navbar-toggler-icon::after {
        bottom: -8px;
        transform-origin: left;
    }
    
    /* Animation for the icon when menu is open */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        width: 28px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        width: 28px;
    }
    
    /* Hover effect */
    .navbar-toggler:hover .navbar-toggler-icon::before,
    .navbar-toggler:hover .navbar-toggler-icon::after {
        background-color: var(--primary-color);
    }
    /* Language Dropdown Styles */
.dropdown .btn-certificate {
    padding: 6px 12px !important;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown .btn-certificate:hover {
    background-color: #00a090;
    color: var(--primary-color) !important;
    border-color: var(--white);
}
#logoutBtn{
    margin-right: 10px;
}
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 10px;
    min-width: 40px;

}

.dropdown-item {
    /* padding: 8px 15px; */
    font-size: 10px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
    /* Nav End */

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(img/istockphoto-1435360420-640x640.jpg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-content {
    padding-top: 80px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-started {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-started:hover {
    background-color: #00a090;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
}

.btn-course {
    background-color: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-course:hover {
    background-color: var(--white);
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 90%;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}
/* Benefits Section CSS */
.benefits-section {
    padding: 100px 0;
    background-color: #fff;
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.benefits-content {
    padding-left: 30px;
}

.subtitle {
    color: #00BFA6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.benefits-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card.teal {
    background-color: #00BFA6;
}

.feature-card.teal .feature-text h3,
.feature-card.teal .feature-text p,
.feature-card.teal .feature-icon i {
    color: #fff;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: #00BFA6;
    transition: all 0.3s ease;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Hover Effects */
.feature-card:hover {
    background-color: #00BFA6;
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-text h3,
.feature-card:hover .feature-text p {
    color: #ffffff;
}

/* Counter Section Styles */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('path-to-your-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.counter-row {
    position: relative;
    z-index: 2;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    padding: 20px;
}

.counter-icon {
    flex-shrink: 0;
    font-size: 40px;
    color: #00BFA6;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-info {
    flex-grow: 1;
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hover Effects */
.counter-item:hover .counter-icon {
    background: #00BFA6;
    color: #ffffff;
    transform: translateY(-5px);
}


/* Online Courses */
.our-courses {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
  }
  
  .course-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }
  
  .course-slide {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
  }
  
  .course-card {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 20px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .course-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .course-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }
  
  .course-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
  }
  
  .course-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
  }
  
  .course-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #00BFA6;
  }
  
  .enroll-btn {
    background-color: #00BFA6;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .enroll-btn:hover {
    background-color: #00BFA6;
  }
  
  .carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .carousel-controls button {
    background-color: #00BFA6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
  }
  
  .carousel-controls button:hover {
    background-color: #00a0b0;
  }
  
  .hidden {
    display: none;
  }


/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: #00BFA6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.card-set {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.card-set.active {
    display: grid;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: #00BFA6;
}

.testimonial-card:hover * {
    color: white !important;
}

.student-profile {
    position: relative;
    margin-bottom: 20px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: #00BFA6;
    opacity: 0.2;
}

.student-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.position {
    color: #00BFA6;
    font-size: 14px;
    text-transform: uppercase;
}

.review-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}

/* Teal Card Style */
.testimonial-card.teal {
    background: #00BFA6;
}

.testimonial-card.teal * {
    color: white !important;
}

.testimonial-card.teal .quote-icon {
    opacity: 0.2;
    color: white !important;
}

/* Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 25px;
    height: 3px;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00BFA6;
    width: 35px;
}

/* Elecro Journals */

/* Responsive */
@media (max-width: 992px) {
    .card-set {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-set {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .course-card {
        flex: 0 0 280px;
    }
}

/* Responsive Benefits */
@media (max-width: 992px) {
    .benefits-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 20px;
    }
}

/* Animation Classes */
.nav-link, .btn-certificate, .social-icons a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-image {
        position: relative;
        max-width: 100%;
        margin-top: 40px;
    }
    @media (max-width: 992px) {
        .navbar-nav {
            padding: 20px;
            border-radius: 8px;
            margin-top: 10px;
        }
        
        .nav-link::after {
            display: none;
        }
    
        .dropdown-menu {
            background: rgba(255, 255, 255, 0.9);
            margin-top: 0;
        }
    }
    
    @media (max-width: 768px) {
        .navbar {
            position: relative;
            top: 0;
            background: var(--secondary-color);
        }
    }
    .hero-section {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icons {
        margin-top: 10px;
    }

    .navbar-nav {
        /* background: rgba(0, 0, 0, 0.8); */
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .top-bar {
        position: relative;
        background: var(--secondary-color);
    }

    .navbar {
        position: relative;
        top: 0;
        background: var(--secondary-color);
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .counter-item {
        margin-bottom: 30px;
        text-align: center;

    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .counter-number {
        font-size: 30px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        
    }
}

/* Footer Section */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.main-widget p {
    font-size: 15px;
    line-height: 1.8;
    margin: 25px 0;
    opacity: 0.9;
}

.footer-logo {
    height: 120px;
    width: 200px;
    margin-bottom: 20px;
    object-fit: contain;

}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 24px;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn small {
    font-size: 11px;
    opacity: 0.8;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #fff;
    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.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style-type: none;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-form {
    margin: 25px 0;
}

.newsletter-form .input-group {
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 8px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.btn-subscribe {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
 }
 
 .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
 }
 
 .contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
 }
 
 .contact-item i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
 }
 
 .contact-item p {
    /* margin: 0; */
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
 }

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.social-bar {
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 15px;
    
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.1);
    padding: 20px 0;
}

.copyright {
    margin: 0;
    opacity: 0.9;
}

.footer-bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}
.footer-widget p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 8px;
}

.btn-subscribe {
    background: #fff;
    color: #00BFA6;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .main-widget {
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget {
        text-align: center;
    }
    .contact-info {
        max-width: 400px;
        margin: 30px auto;
    }
    .contact-item {
        text-align: left;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 25px auto;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* About Us */
/* General Section Styling */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

/* Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}
.subtitle {
    color: #10b981;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
}
.main-title {
    font-size: 20px;
    /* font-weight: bold; */
    background-color: #10b981;
    color: white;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 15px;

}
.intro-text {
    font-size: 18px;
    color: #555;
    margin: 0 auto;
    max-width: 800px;
}

/* Stats Container Styling */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    margin: 20px;
}
.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #10b981;
    display: block;
}
.stat-label {
    font-size: 16px;
    color: #777;
}

/* Highlight Box Styling */
.highlight-box {
    background-color: #10b981;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
    font-size: 18px;
}

/* Features Grid Styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.feature-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.icon-container {
    font-size: 36px;
    color: #10b981;
    margin-bottom: 15px;
}
.feature-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.feature-content p {
    font-size: 16px;
    color: #555;
}

/* Additional Info Styling */
.additional-info {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 40px;
}




/* General Styling for Leadership Section */
.leadership-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
    font-family: Arial, sans-serif;
}

.leadership-title {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Grid Styling */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

/* Leader Card Styling */
.leader-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.leader-image {
    width: 100%;
    height: 250px;
    object-fit: inherit;
}

.leader-info {
    padding: 20px;
    text-align: left;
}

.leader-title {
    font-size: 14px;
    font-weight: bold;
    color: #10b981;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.leader-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.leader-role {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .leader-card {
        max-width: 100%;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}
