/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --accent-color: #e74c3c;
    --background-gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-gradient);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.loader {
    width: 80%;
    max-width: 400px;
    max-height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.loader-image {
    height: 10px;
    border-radius: 5px;
    width: 2px;
    padding-right: 213px;
    margin-bottom: 130px;
    font-size: 1.3rem;
    align-items: center;
}

.loader-bar {
    height: 10px;
    background: linear-gradient(90deg, #faf9f7,  #eee3d2, #f0c672, #fcf1f0, #44f844);
    border-radius: 5px;
    width: 0;
    animation: load 3s ease-in-out infinite;
}

.loader-text {
    color: white;
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
}

@keyframes load {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--dark-color);
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 2px;
    gap: 5px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger .line1, .line2, .line3 {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* Header Styles */
header {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a2a6c;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffd700;
}

/* Hero Section */
.about-hero {
    background: url('images/About.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    border-color: #3498db;
    border-radius: 3px;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(#fdfdfd, #f1e3ce, #aaa2a2, #e2f59e, #fac26f, #8fda51);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #182848;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #201b1b;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #4b6cb7;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.mission-image img {
    width: 100%;
    height: 100%;
    max-width: 200%;
    max-height: 150%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(122, 21, 21, 0.1);
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founder-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #182848;
    margin-bottom: 3rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.founder-social {
    margin-top: 1.5rem;
}

.founder-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #4b6cb7;
    color: white;
    border-radius: 50%;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.founder-social a:hover {
    background: #182848;
    transform: translateY(-3px);
}

.founder-content h3 {
    font-size: 2rem;
    color: #182848;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: #4b6cb7;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.founder-expertise {
    margin: 2rem 0;
}

.founder-expertise h4 {
    color: #182848;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.founder-expertise ul {
    list-style: none;
    padding-left: 0;
}

.founder-expertise li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.founder-expertise li:before {
    content: "▸";
    color: #4b6cb7;
    position: absolute;
    left: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn.primary {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
}

.btn.secondary {
    background: transparent;
    color: #0d0d0e;
    border: 2px solid #4b6cb7;
}

.btn:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(21, 5, 82, 0.2);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #182848;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: #4b6cb7;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #182848;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #182848;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #4b6cb7;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #182848;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #182848;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4b6cb7;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #182848;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn.secondary:hover {
    background: white;
    color: #182848;
}

/* Footer */
footer {
    background: #182848;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #bbbbeb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f5f5fa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #031136;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4b6cb7;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #4b6cb7, #182848);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-up-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-up-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .scroll-up-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links li a {
        margin-left: 0;
       /* padding-right: 188px;*/
    }

    .burger {
        display: inline-block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero {
        background-color: linear-gradient(180deg, #aebb59,#d2f103, #0a0c01);
    }
    .mission-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .founder-image img {
        max-width: 250px;
    }
}
