/* ============================================
   MITRA - Modern Advanced UI Theme
   ============================================ */

/* Reset & Base */
* { margin: 0px; padding: 0px; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
html, body, button, input, select, textarea { font-family: 'Poppins', sans-serif; font-size: 14px; color: #333; }
ul, ol { margin-top: 0; margin-bottom: 10px; }
ul ul { margin-bottom: 0; }
li { font-size: 14px; margin: 5px 0px; }
a { color: #ff6b35; text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 5px 0px 15px 0px; clear: both; font-weight: 600; }
h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { font-size: 15px; margin: 5px 0px 15px 0px; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* Body */
body { 
    background: #f8f9fa; 
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}
.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.top-bar .contact-info {
    display: flex;
    gap: 25px;
}
.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar .contact-info i {
    color: #ff6b35;
}
.top-bar .social-links {
    display: flex;
    gap: 15px;
}
.top-bar .social-links a {
    color: #fff;
    transition: all 0.3s;
}
.top-bar .social-links a:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}
header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 55px;
    width: auto;
}
.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-text span {
    color: #ff6b35;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-nav a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: all 0.3s;
}
.main-nav a:hover {
    color: #ff6b35;
}
.main-nav a:hover::after {
    width: 100%;
}
.main-nav a.active {
    color: #ff6b35;
}

/* Navigation Buttons */
.nav-btn {
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.5px;
}
.nav-btn::after {
    display: none !important;
}
.login-btn {
    background: transparent !important;
    border: 2px solid #ff6b35;
    color: #ff6b35 !important;
    margin-left: 10px;
}
.login-btn:hover {
    background: #ff6b35 !important;
    color: #fff !important;
}
.register-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #fff !important;
    margin-left: 5px;
}
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ============================================
   SCROLLING MESSAGE
   ============================================ */
.scroller-message {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 999;
}
.scroller-message .scroller-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}
.scroller-message span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 0 50px;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(77 185 212 / 90%) 0%, rgb(45 143 84 / 85%) 100%), url(/static/img/Banner-bg.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 0;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Slogans */
.hero-slogans {
    position: relative;
    min-height: 180px;
}

.slogan {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.slogan.active {
    display: block;
}

.slogan h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slogan h1 span {
    color: #ff6b35;
    display: block;
}

.slogan p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ff6b35;
    width: 30px;
    border-radius: 6px;
}

.hero-dot:hover {
    background: #ff6b35;
}
.hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: #ff6b35;
    display: block;
}
.hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}
.btn-primary {
    background: #ff6b35;
    color: #fff;
}
.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

/* Modal Form Specific Button */
.modal-form .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    margin-top: 10px;
}

.modal-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal-form .btn-primary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-form .form-row .form-group {
        margin-bottom: 20px;
    }
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
    transform: translateY(-3px);
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 42px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-header h2 span {
    color: #ff6b35;
}
.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 20px auto 0;
    border-radius: 2px;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: #ff6b35;
}
.about-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.about-card .icon i {
    font-size: 32px;
    color: #fff;
}
.about-card h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.about-card p {
    color: #666;
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #5bb5db 0%, #3da4a2 100%);
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-item .number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}
.stat-item .label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   SECTORS / SERVICES SECTION
   ============================================ */
.sectors-section {
    padding: 100px 0;
    background: #f8f9fa;
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sector-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.sector-card .image {
    height: 200px;
    overflow: hidden;
}
.sector-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.sector-card:hover .image img {
    transform: scale(1.1);
}
.sector-card .content {
    padding: 25px;
}
.sector-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.sector-card p {
    color: #666;
    font-size: 14px;
}
.sector-card .read-more {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}
.sector-card .read-more i {
    transition: all 0.3s;
}
.sector-card:hover .read-more i {
    transform: translateX(5px);
}

/* ============================================
   INITIATIVES SECTION
   ============================================ */
.initiatives-section {
    padding: 100px 0;
    background: #fff;
}
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.initiative-item {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}
.initiative-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.initiative-item .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.initiative-item .icon-box i {
    font-size: 28px;
    color: #fff;
}
.initiative-item h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.initiative-item p {
    color: #666;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, #5bb5db 0%, #3da4a2 100%);
    padding: 100px 0 50px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-info h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}
.contact-info h2 span {
    color: #ff6b35;
}
.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.contact-details {
    margin-bottom: 30px;
}
.contact-details .item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}
.contact-details .item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details .item .icon i {
    color: #ff6b35;
}
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}
.contact-form h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b35;
    outline: none;
}
.form-group textarea {
    height: 120px;
    resize: none;
}
.contact-form .btn {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #3a8095;
    padding: 50px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-about .logo {
    margin-bottom: 20px;
}
.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.footer-links ul a:hover {
    color: #ff6b35;
    padding-left: 5px;
}
.footer-contact p {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-contact p i {
    color: #ff6b35;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.footer-bottom a {
    color: #ff6b35;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .header-inner {
        height: 70px !important;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    .main-nav.active {
        right: 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .scroller-message {
        top: 70px;
    }
    body {
        padding-top: 110px;
    }
    
    /* Mobile Nav Buttons */
    .nav-btn {
        margin: 10px 0 !important;
        text-align: center;
    }
}

/* Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #ff6b35;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loaded #loader-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 55%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #ff6b35;
}

/* Sector Modal Styles */
.sector-modal .modal-content {
    max-width: 70%;
    padding: 0;
}

.sector-modal-content {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.sector-modal-body {
    padding: 30px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header img {
    margin: 0 auto 15px;
}

.modal-header h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.modal-header p {
    color: #666;
    font-size: 15px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.modal-form .form-row .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.modal-form label i {
    color: #ff6b35;
    margin-right: 8px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.modal-form input:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Password Field with Toggle */
.modal-form .password-field {
    position: relative;
}

.modal-form .password-field input {
    padding-right: 45px;
}

.modal-form .password-field .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-form .password-field .password-toggle:hover {
    color: #ff6b35;
}

/* Select Dropdown Styling */
.modal-form select.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.modal-form select.form-control:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Custom Checkbox */
.modal-form .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
}

.modal-form .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modal-form .custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s;
}

.modal-form .custom-checkbox:hover .checkmark {
    border-color: #ff6b35;
}

.modal-form .custom-checkbox input:checked ~ .checkmark {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.modal-form .custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-form .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.modal-form .custom-checkbox .checkbox-text {
    font-weight: 400;
    color: #666;
    font-size: 14px;
}

.modal-form .custom-checkbox .checkbox-text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.modal-form .custom-checkbox .checkbox-text a:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

.form-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
}

.forgot-link {
    color: #ff6b35;
    font-weight: 500;
    transition: all 0.3s;
}

.forgot-link:hover {
    color: #e55a2b;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.modal-footer-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.modal-footer-text a {
    color: #ff6b35;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgb(77 185 212 / 90%) 0%, rgb(45 143 84 / 85%) 100%), url(/static/img/Banner-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header-content h1 span {
    color: #ff6b35;
}

.page-header-content p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
}

/* About Introduction */
.about-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text h2 span {
    color: #ff6b35;
}

.intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: #ff6b35;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 32px;
    color: #fff;
}

.mv-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.mv-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Key Functions */
.key-functions {
    padding: 100px 0;
    background: #f8f9fa;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.function-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.function-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255,107,53,0.1);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.function-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.function-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Focus Sectors */
.focus-sectors {
    padding: 100px 0;
    background: #fff;
}

.sectors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sector-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.sector-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-icon i {
    font-size: 24px;
    color: #fff;
}

.sector-info h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.sector-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* World Bank Project */
.wb-project {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.wb-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wb-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.wb-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.wb-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

.wb-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.wb-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.wb-note {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-style: italic;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #ff6b35;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-card p {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn-secondary {
    background: #fff;
    color: #ff6b35;
}

.cta-buttons .btn-secondary:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .functions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-list {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 36px;
    }
    .functions-grid {
        grid-template-columns: 1fr;
    }
    .wb-stats {
        flex-direction: column;
        gap: 30px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* Responsive modal */
@media (max-width: 500px) {
    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
    .modal-header h2 {
        font-size: 24px;
    }
    
    /* Sector Modal Responsive */
    .sector-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .sector-modal-body {
        padding: 20px;
    }
    
    .sector-modal-header {
        padding: 20px !important;
    }
    
    .sector-modal-header h2 {
        font-size: 22px !important;
    }
    
    .sector-modal-header > div > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }
    
    .sector-modal-header i {
        font-size: 24px !important;
    }
    
    /* Sector Cards Responsive */
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr !important;
    }
}
