/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif;
}

:root {
    --primary: #1a365d;
    --primary-light: #2b6cb0;
    --secondary: #4a5568;
    --accent: #e2b979;
    --light-bg: #f7fafc;
    --dark-text: #2d3748;
    --light-text: #f8f9fa;
}

body {
    line-height: 1.7;
    color: var(--dark-text);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3px 0;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary);
}

ul {
    margin-bottom: 30px;
    list-style: none;
}

li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn {
    display: inline-block;
    background-color: var(--primary-light);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: transparent;
    /* color: var(--primary-light); */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    color: var(--secondary);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    color: var(--accent);
    background-color: var(--primary);
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: white;
    /* padding: 7px 0; */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 7px 0;
    background-color: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    
}
.logo-container a {
    text-decoration: none;
 
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-right: 10px;
    line-height: 1;
    
    
}




.logo span {
    color: var(--accent);
}


.logo:hover {
    opacity: 0.9;
}
.r-symbol {
  font-weight: normal;
  color: white !important;
}
.brand-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 15px;
    line-height: 1.3;
}

.brand-tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255,255,255,0.3);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.5s;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: var(--primary);
        padding: 20px 0;
        margin-top: 20px;
        height: 100vh;
        
        
    
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px 20px;
    }
    
.menu-toggle {
    display: block;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1100;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 4px;
    margin: 6px 0;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    position: relative;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background: var(--accent);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background: var(--accent);
}
    
    .brand-tagline {
        padding-left: 0;
        margin-top: 5px;
        width: 100%;
    }
    
    .brand-tagline::before {
        display: none;
    }
    
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% - 40px); /* Account for menu toggle */
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    
    .brand-tagline {
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 22px;
    }
    
    .brand-tagline {
        font-size: 12px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
}
/* Hero Section */
.hero {
    /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1464082354059-27db6ce50048?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/HeroBgImg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,54,93,0.8) 0%, rgba(42,108,176,0.8) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}

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

/* About Section - Video Version */
.about {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.1;
}

.about h2 span {
    color: var(--accent);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.about-content {
    flex: 0.7;
    position: relative;
}

.subtitle {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.highlight-box {
    background-color: rgba(226, 185, 121, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.commission-highlight {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1em;
}

.commission-badge {
    position: absolute;
    right: -114px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent);
    color: var(--primary);
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(226, 185, 121, 0.3);
    z-index: 2;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

.about-video {
    flex: 1.2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.8));
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.video-overlay p {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content,
    .about-video {
        width: 100%;
        flex: none;
    }
    
    .commission-badge {
        right: 20px;
        top: 20px;
        transform: none;
        width: 116px;
        height: 116px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .commission-badge {
        position: relative;
        right: auto;
        top: auto;
        margin: 30px auto;
        transform: none;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .video-overlay {
        padding: 20px 15px;
    }
    
    .video-overlay p {
        font-size: 1.1rem;
    }
}

/* Program Section */
.program {
    text-align: center;
    background-color: #f9fbfd;
    position: relative;
    padding: 80px 0;
}

.program h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.program h2 span {
    color: var(--accent);
}

.program .subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    display: block;
}

/* Highlights Section */
.program-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 380px;
    border-left: 4px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226,185,121,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 2.2rem;
    margin-right: 25px;
    color: var(--accent);
    min-width: 60px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight-content p {
    color: var(--secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Features Grid */
.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 70px 0;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    text-align: center;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom-color: var(--accent);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--accent);
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.program-benefits {
    background: rgba(226, 185, 121, 0.08);
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: left;
    border: 1px solid rgba(226, 185, 121, 0.15);
}

.program-benefits h3 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.program-benefits h3::before,
.program-benefits h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--accent);
    opacity: 0.3;
}

.program-benefits h3::before {
    left: -60px;
}

.program-benefits h3::after {
    right: -60px;
}

.program-benefits ul {
    columns: 2;
    column-gap: 60px;
    padding: 0 20px;
}

.program-benefits li {
    margin-bottom: 18px;
    break-inside: avoid;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.program-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}

.program-benefits strong {
    color: var(--accent);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .program-benefits ul {
        columns: 1;
    }
    
    .highlight-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .program {
        padding: 60px 0;
    }
    
    .program h3::before,
    .program h3::after {
        width: 30px;
    }
    
    .program h3::before {
        left: -40px;
    }
    
    .program h3::after {
        right: -40px;
    }
}

@media (max-width: 576px) {
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .program-benefits {
        padding: 30px 20px;
    }
    
    .program-benefits h3::before,
    .program-benefits h3::after {
        display: none;
    }
}
/* Ideal Candidates Section */
.ideal-candidates {
    margin-top: 80px;
    text-align: center;
}

.ideal-candidates h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.ideal-candidates h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: block;
}

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

.candidate-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.candidate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(226, 185, 121, 0.3);
}

.candidate-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--accent);
    min-width: 50px;
    text-align: center;
    padding-top: 5px;
}

.candidate-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.candidate-content p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .candidate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .candidate-card {
        padding: 25px 20px;
    }
    
    .candidate-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .program-benefits ul {
        columns: 1;
    }
    
    .highlight-card {
        max-width: 100%;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}

/* Process Section */
.process {
    background-color: var(--light-bg);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
}

.step {
    flex: 0 0 calc(20% - 20px);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    background-color: var(--primary-light);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-number:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.step:hover .step-number:after {
    opacity: 1;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
}

/* Work Section */
.work {
    background-color: white;
}

.work ul {
    max-width: 800px;
    margin: 0 auto 40px;
}

.work li {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.work li:before {
    content: '→';
    color: var(--primary-light);
}

/* Stats Section */
.stats {
    background-color: var(--primary);
    color: white;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.stats h2 {
    color: white;
}

.stats h2:after {
    background-color: var(--accent);
}

.stats p {
    color: rgba(255,255,255,0.8);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
}

/* Trust Section */
.trust {
    background-color: var(--light-bg);
}

.trust ul {
    columns: 2;
    column-gap: 40px;
}

.trust li {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--primary);
    color: white;
    /* background: linear-gradient(rgba(26,54,93,0.9), rgba(26,54,93,0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); */
    background: linear-gradient(rgba(26,54,93,0.9), rgba(26,54,93,0.9)), url('img/ContactBgImg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--accent), var(--primary-light));
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 10px;
    color: white;
    line-height: 40px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about .container {
        flex-direction: column;
    }
    
    .step {
        flex: 0 0 calc(33.33% - 20px);
    }
    
    .trust ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
        margin: 10px 5px;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .footer-links a {
        margin: 0 10px 10px;
    }
}


 /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .modal-container {
        background-color: white;
        border-radius: 10px;
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
    
    .modal-header {
        padding: 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--primary);
        color: white;
        border-radius: 10px 10px 0 0;
    }
    
    .modal-header h3 {
        color: white;
        margin: 0;
    }
    
    .close-modal {
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
        padding: 0;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* Form Styles */
    #partnerForm {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group label {
        font-weight: 600;
        color: var(--primary);
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-light);
        outline: none;
        box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2);
    }
    
    .checkbox-group {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .checkbox-group input {
        width: auto;
    }
    
    textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .modal-container {
            width: 95%;
        }
        
        .checkbox-group {
            flex-direction: column;
            align-items: flex-start;
        }
    }