:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0ea5e9;
    --accent: #0f172a8c;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #9c9c9c;
    --gray-light: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
    z-index: 99999;
    background: var(--white);
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-grow {
    width: 3rem;
    height: 3rem;
    color: var(--primary) !important;
}

/*** Navbar ***/
/*** Navigation Bar ***/
.navbar-sleek {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-sleek.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.navbar-item {
    color: var(--dark);
    text-decoration: none;
    padding: 0.65rem 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: left 0.3s ease;
}

.navbar-item:hover {
    color: var(--primary);
}

.navbar-item:hover::before {
    left: 0;
}

.navbar-contact {
    background: var(--gradient);
    color: var(--white) !important;
    margin-left: 0.5rem;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.navbar-contact::before {
    display: none;
}

.navbar-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
    color: var(--white) !important;
}

/* Mobile Menu Button */
.navbar-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
}

.menu-icon {
    display: block;
    position: relative;
    width: 28px;
    height: 18px;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon {
    background: var(--dark);
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.menu-icon::before {
    content: '';
    position: absolute;
    top: -8px;
}

.menu-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
}

.navbar-menu-btn.active .menu-icon::before {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-menu-btn.active .menu-icon {
    background: transparent;
}

.navbar-menu-btn.active .menu-icon::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.navbar-overlay.active {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    body.navbar-open {
        overflow: hidden;
    }

    .navbar-sleek {
        padding: 0.8rem 0;
    }

    .navbar-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-right {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem 1rem;
        gap: 0;
        border-top: 1px solid #f0f0f0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        animation: slideIn 0.4s ease;
    }

    @keyframes slideIn {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }

    .navbar-right.active {
        right: 0;
    }

    .navbar-item {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f5f5f5;
        font-size: 1rem;
    }

    .navbar-item::before {
        display: none;
    }

    .navbar-item:hover {
        background: #f5f5f5;
        color: var(--primary);
    }

    .navbar-contact {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        width: calc(100% - 3rem);
    }
}

@media (max-width: 768px) {
    .navbar-wrapper {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .navbar-item {
        font-size: 0.9rem;
    }
}

/*** Hero Section ***/
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), var(--dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-modern,
.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 18px; }
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary-modern, .btn-secondary-modern { width: 100%; justify-content: center; }
}

/*** Section Styling ***/
.section-modern {
    padding: 5rem 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
}

.section-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.label-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.label-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-light {
    color: var(--white);
}

.subtitle-modern,
.text-modern {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-modern-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

@media (max-width: 767px) {
    .section-modern { padding: 3.5rem 0; }
    .title-modern { font-size: 2rem; }
    .subtitle-modern, .text-modern { font-size: 1rem; }
}

/*** Mission Section ***/
.mission-stats-inline {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.stat-inline {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-name {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.mission-goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.goal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.goal-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.goal-card h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.goal-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 767px) {
    .mission-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-goals-grid {
        grid-template-columns: 1fr;
    }
}

/*** Pillars Section ***/
.pillar-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card-modern:hover::before {
    opacity: 1;
}

.pillar-card-modern > * {
    position: relative;
    z-index: 2;
}

.pillar-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    border-color: transparent;
}

.pillar-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgb(255 255 255 / 50%);
    line-height: 1;
    margin-bottom: 1rem;
}

.pillar-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pillar-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.pillar-card-modern:hover .pillar-icon-modern {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.pillar-card-modern h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.pillar-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.pillar-card-modern:hover .pillar-link {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .pillar-card-modern {
        margin-bottom: 1.5rem;
    }
}

/*** Why Certification Matters Section ***/
.certification-why-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.certification-why-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cert-why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cert-why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.cert-why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.cert-why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cert-why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cert-why-item h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cert-why-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.cert-why-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    position: relative;
}

.cert-why-divider::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 1.5rem;
}

.cert-standards-grid {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cert-standard {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.cert-standard:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.cert-standard i {
    font-size: 1.3rem;
    color: var(--primary);
}

.cert-standard span {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .cert-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cert-why-divider {
        width: 100px;
        height: 2px;
        margin: 0 auto;
    }
    
    .cert-why-divider::after {
        content: '↓';
    }
}

/*** Image Modern ***/
.image-modern-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-modern {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-modern-wrapper:hover .image-modern {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.image-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.image-badge span {
    font-weight: 600;
    color: var(--dark);
}

/*** Focus List ***/
.focus-list {
    margin-top: 2rem;
}

.focus-item-modern {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.focus-item-modern:hover {
    padding-left: 1rem;
    background: rgba(37, 99, 235, 0.03);
}

.focus-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.focus-item-modern:hover .focus-number {
    opacity: 1;
    transform: scale(1.1);
}

.focus-content-modern h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.focus-content-modern p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}


/*** Team Section ***/
/* Team Slider Styles */
.slider--teams {
    position: relative;
    max-width: 80%;
    margin: 4rem auto 0;
    opacity: 1;
}

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

#list {
    position: relative;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    margin: 0;
    padding: 0;
    list-style: none;
}

#list li {
    position: relative;
    display: inline-block;
    float: left;
    text-align: center;
    list-style: none;
}

#list figure {
    cursor: pointer;
    margin: 1em;
    opacity: 0.5;
    backface-visibility: hidden;
    transition: transform 450ms cubic-bezier(0.445, 0.050, 0.550, 0.950), opacity 450ms ease-in-out;
    transform: scale(0.5) translateZ(0px);
}

#list figure:hover {
    opacity: 0.8;
    transform: scale(0.6) translateZ(0px);
}

#list figure:active {
    opacity: 1;
    transform: scale(0.7) translateZ(0px);
}

#list figure > div {
    border-radius: 50%; /* Changed from 5px to 50% for circle */
    position: relative;
    margin: 2rem auto;
    width: 180px;
    height: 180px;
    overflow: hidden;
    transform: translateZ(0px); /* Removed rotate(45deg) */
}

#list figure > div > div {
    background-size: cover;
    background-position: center; 
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* Changed from 170px */
    height: 100%; /* Changed from 170px */
    transform: translate(-50%, -50%); /* Changed from rotate(-45deg) translate(0%, -70%) */
}

#list figcaption {
    margin-top: 1rem;
}

#list figcaption h2 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#list figcaption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 400;
}

.active {
    opacity: 1 !important;
    transform: scale(1) translateZ(0px) !important;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .slider--teams {
        max-width: 600px;
    }
    
    #list figure > div {
        width: 100px;
        height: 100px;
    }
    
    #list figcaption h2 {
        font-size: 1.2rem;
    }
    
    #list figcaption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .slider--teams {
        max-width: 100%;
    }
    
    #list figure {
        margin: 0.5em;
    }
    
    #list figure > div {
        width: 80px;
        height: 80px;
        margin: 1rem auto;
    }
    
    #list figcaption h2 {
        font-size: 1rem;
    }
    
    #list figcaption p {
        font-size: 0.75rem;
    }
}

/*** Partners Section ***/
.partner-card-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partner-icon-modern {
    width: 80px;
    height: 80px;
    border: 1px #000000 solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.partner-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.partner-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.partner-card-modern:hover .partner-icon-modern {
    transform: scale(1.1) rotate(10deg);
}

.partner-card-modern h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.partner-card-modern p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.partner-status {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.partner-status.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #b45309;
}

/*** Contact Section ***/
.contact-modern {
    padding: 5rem 0;
    background: var(--dark);
}

.contact-wrapper-modern {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.contact-info-modern {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-detail-item h5 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-wrapper-modern {
        padding: 3rem 2rem;
    }
    
    .contact-info-modern {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

/*** Footer ***/
.footer-modern {
    background: var(--dark);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-modern {
    display: flex;
    gap: 0.5rem;
}

.newsletter-modern input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-modern input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-modern input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-modern button {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-modern button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/*** Back to Top ***/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/*** Responsive ***/
@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}