/* ================================
   POD Network Custom Styles
   ================================ */

:root {
    --primary-color: #5A9FD4;
    --secondary-color: #B4C647;
    --dark-blue: #3C5A72;
    --light-blue: #7DAFE4;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ================================
   Top Bar
   ================================ */

.top-bar {
    background-color: var(--secondary-color);
    padding: 15.5px 0;
    font-size: 13px;
}

.top-link {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.top-link:hover {
    color: white;
    opacity: 0.8;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    padding: 25px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-toggler {
    border: 2px solid #B4C647;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(180, 198, 71, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23B4C647' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo {
    height: 60px;
    width: auto;
}

.nav-link {
    color: #666666 !important;
    font-weight: 700;
    padding: 8px 15px !important;
    font-size: 15px;
}

.nav-link:hover {
    color: #B4C647 !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    background-color: white;
    padding: 15px 0;
    min-width: 250px;
    z-index: 1200;
}

.dropdown-item {
    color: #666666;
    padding: 10px 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #B4C647;
    padding-left: 30px;
}

/* Dropdown hover effect */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .dropdown-menu {
    margin-top: 0;
}

/* ================================
   Hero Section
   ================================ */

.hero-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Top People Images */
.hero-top-images {
    display: flex;
    width: 100%;
    height: 200px;
}

.hero-person {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
}

/* Hero Main Content */
.hero-main-content {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
    position: relative;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-main-content .container {
    position: relative;
    z-index: 1;
}

.hero-main-content .row {
    position: relative;
    min-height: 250px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: #B4C647 !important;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: white;
    transition: opacity 0.3s ease;
}

.hero-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-slide {
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
}

.hero-btn:hover {
    background-color: var(--dark-blue);
}

/* Dots Navigation - Right Side */
.hero-dots {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    border-color: white;
}

/* ================================
   POD Info Section
   ================================ */

.pod-info-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 400;
}

.section-title {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0 30px;
    line-height: 1.2;
}

.section-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.circular-card {
    margin-bottom: 20px;
}

.circular-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.circular-img:hover {
    transform: scale(1.05);
}

.card-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.4;
}

/* ================================
   Social Media Section
   ================================ */

.social-section {
    background: linear-gradient(rgba(60, 90, 114, 0.85), rgba(60, 90, 114, 0.85)), url('../img/social.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: white;
    color: var(--dark-blue);
    border-radius: 50%;
    margin: 0 12px;
    font-size: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    text-decoration: none;
}

.social-handle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 20px;
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    min-height: 500px;
}

.testimonials-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
}

.testimonials-section .carousel-inner {
    min-height: 300px;
    position: relative;
}

.testimonials-section .carousel-item {
    min-height: 300px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonials-section .carousel-item.active {
    position: relative;
    opacity: 1;
}

.testimonial-content {
    padding: 40px 100px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.testimonial-text {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 120px;
}

.testimonial-author {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 20px;
}

/* ================================
   Call to Action Section
   ================================ */

.cta-section {
    background-color: #2c3e50;
    padding: 80px 0;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background-color: var(--secondary-color);
    color: white;
}

.cta-section img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ================================
   Footer
   ================================ */

.footer {
    background-color: #2b698d ;
    color: rgb(255, 255, 255);
    padding: 60px 0 20px;
}

.footer .col-lg-4 {
    text-align: center;
}

.footer .col-lg-4:nth-child(2) {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer .col-lg-4:nth-child(2) .footer-title {
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    /* transform: translateX(-50%); */
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.5);
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.7;
    text-align: center;
}

.footer .col-lg-4:nth-child(2) .footer-text {
    text-align: left;
}

.footer-text a {
    color: white;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background-color: rgba(255,255,255,0.3);
}

.footer-menu {
    list-style: none;
    padding: 5px 20px;
    text-align: left;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================================
   About Page Styles
   ================================ */

.page-header {
    background-color: #333333;
    color: white;
    padding: 60px 0;
    margin-bottom: 0;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;
}

.about-content {
    background-color: white;
}

.about-sidebar {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--primary-color);
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 15px 0;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sidebar-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.sidebar-menu a.active {
    color: var(--secondary-color);
    font-weight: 600;
    background-color: transparent;
}

.content-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4B5563;
}

.value-item {
    padding-left: 0;
    border-left: none;
    margin-bottom: 30px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.value-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4B5563;
}

/* Team Members */
.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    border: 5px solid #e0e0e0;
}

.team-member {
    padding: 20px;
}

.team-name {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.team-position {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-email {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.team-email:hover {
    opacity: 0.7;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1199px) {
    .hero-top-images {
        height: 150px;
    }
    
    .hero-main-content {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        word-wrap: break-word;
    }
    
    .hero-dots {
        right: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-top: 30px;
    }
    
    .testimonial-content {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    /* Navbar mobile styles */
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px 15px;
        border-radius: 8px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        text-align: left;
    }
    
    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 12px 8px !important;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
        background-color: #f8f9fa;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-top-images {
        height: 100px;
    }
    
    .hero-main-content {
        padding: 50px 0;
        min-height: 450px;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .hero-dots {
        right: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .circular-img {
        width: 150px;
        height: 150px;
    }
    
    .social-handle {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Navbar for mobile */
    .navbar {
        padding: 12px 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .navbar-toggler {
        padding: 6px 8px;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero-main-content {
        padding: 30px 0;
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-dots {
        right: 10px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        height: 45px;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
}
/* ================================
   Login Form Styles
   ================================ */

.login-container {
    max-width: 350px;
    margin: 0 auto;
    padding: 30px 0;
}

.login-heading {
    color: #4f819e;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 35px;
    text-align: left;
    letter-spacing: -0.5px;
}

.login-form {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form .form-label {
    color: #5A9FD4;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.login-form .form-label .required {
    color: #5A9FD4;
}

.login-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    font-size: 0.95rem;
    color: #333;
    background-color: #ffffff;
    transition: all 0.2s ease;
    box-shadow: none;
}

.login-input:focus {
    outline: none;
    border-color: #5A9FD4;
    background-color: #ffffff;
    box-shadow: none;
}

.login-input::placeholder {
    color: #aaa;
}

.btn-login {
    background-color: #20A8D8;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
    margin-bottom: 22px;
    display: inline-block;
}

.btn-login:hover {
    background-color: #1a8fb8;
}

.form-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me .form-check-input {
    width: 16px;
    height: 16px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    cursor: pointer;
    margin: 0;
    accent-color: #20A8D8;
}

.remember-me .form-check-label {
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.forgot-password-link {
    color: #20A8D8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password-link:hover {
    color: #1a8fb8;
}

@media (max-width: 576px) {
    .login-container {
        padding: 20px 10px;
    }
    
    .login-heading {
        font-size: 2rem;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================
   Executive & Core Committee Members
   ================================ */

.executive-member-card {
    padding: 20px;
}

.executive-member-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #f8f9fa;
}

.executive-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a6fa5;
    margin-bottom: 0.5rem;
}

.executive-member-position {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Load More Button */
.btn-load-more {
    background-color: #fff;
    color: #3C7A99;
    padding: 12px 30px;
    border: 2px solid #3C7A99;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-load-more:hover {
    background-color: #3C7A99;
    color: white;
}

.btn-load-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

.hidden-member {
    display: none;
}

.show-member {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Newsletter Subscribe CTA Section
   ================================ */

.newsletter-cta-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    overflow: hidden;
}

.newsletter-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.newsletter-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* Left Content Box */
.newsletter-content-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.newsletter-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.newsletter-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
    color: #B4C647;
}

/* Right Form Box */
.newsletter-form-box {
    padding: 60px 50px;
    background: white;
}

.form-header .form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-header .form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #999;
    font-size: 1.2rem;
}

.newsletter-input {
    flex: 1;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(90, 159, 212, 0.1);
    outline: none;
}

.btn-subscribe {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-subscribe .btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-subscribe:hover .btn-icon {
    transform: translateX(5px);
}

.privacy-note {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.privacy-note i {
    color: var(--primary-color);
}

/* Alert Messages */
#subscribe-message {
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

#subscribe-message.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

#subscribe-message.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 991px) {
    .newsletter-content-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .newsletter-icon-large {
        margin: 0 auto;
    }
    
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-features {
        align-items: center;
    }
    
    .newsletter-form-box {
        padding: 40px 30px;
    }
    
    .form-header .form-title {
        font-size: 1.75rem;
    }
    
    .input-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-content-box,
    .newsletter-form-box {
        padding: 30px 20px;
    }
    
    .newsletter-heading {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 0.95rem;
    }
    
    .form-header .form-title {
        font-size: 1.5rem;
    }
    
    .newsletter-input {
        padding: 15px 20px 15px 50px;
        font-size: 0.9rem;
    }
    
    .btn-subscribe {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

/* ================================
   Cooperations / Partners Logo Carousel
   ================================ */

.cooperations-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.cooperations-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.cooperation-logo-box {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cooperation-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cooperation-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cooperation-logo-box:hover .cooperation-logo {
    filter: grayscale(0%);
    opacity: 1;
}

#cooperationsCarousel .carousel-inner {
    padding: 20px 0;
}

#cooperationsCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

#cooperationsCarousel .carousel-control-prev,
#cooperationsCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(90, 159, 212, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#cooperationsCarousel .carousel-control-prev {
    left: -30px;
}

#cooperationsCarousel .carousel-control-next {
    right: -30px;
}

#cooperationsCarousel .carousel-control-prev:hover,
#cooperationsCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

#cooperationsCarousel .carousel-control-prev-icon,
#cooperationsCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

#cooperationsCarousel .carousel-indicators {
    margin-bottom: -40px;
}

#cooperationsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#cooperationsCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .cooperations-section h2 {
        font-size: 2rem;
    }
    
    .cooperation-logo-box {
        height: 130px;
        padding: 20px 15px;
    }
    
    .cooperation-logo {
        max-height: 75px;
    }
    
    #cooperationsCarousel .carousel-control-prev {
        left: -20px;
    }
    
    #cooperationsCarousel .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .cooperations-section {
        padding: 60px 0;
    }
    
    .cooperations-section h2 {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .cooperation-logo-box {
        height: 110px;
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .cooperation-logo {
        max-height: 60px;
    }
    
    #cooperationsCarousel .carousel-control-prev,
    #cooperationsCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    #cooperationsCarousel .carousel-control-prev {
        left: -10px;
    }
    
    #cooperationsCarousel .carousel-control-next {
        right: -10px;
    }
    
    #cooperationsCarousel .carousel-indicators {
        margin-bottom: -30px;
    }
}

@media (max-width: 576px) {
    .cooperations-section {
        padding: 50px 0;
    }
    
    .cooperations-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .cooperation-logo-box {
        height: 100px;
        padding: 12px 8px;
        margin-bottom: 10px;
    }
    
    .cooperation-logo {
        max-height: 50px;
    }
    
    #cooperationsCarousel .carousel-control-prev,
    #cooperationsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #cooperationsCarousel .carousel-control-prev {
        left: -5px;
    }
    
    #cooperationsCarousel .carousel-control-next {
        right: -5px;
    }
    
    #cooperationsCarousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}