/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #F9FAFB; /* Light Gray */
    color: #111827; /* Dark Gray */
    overflow-x: hidden;
}

/* Full Page Sections */
.full-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    transition: all 0.5s ease;
}

/* Navigation */
.navbar {
    background: #1E3A8A; /* Deep Blue */
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #FFFFFF; /* White */
    font-size: 1.75rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: #10B981; /* Emerald Green */
}

.navbar-nav .nav-link {
    color: #FFFFFF; /* White */
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #10B981; /* Emerald Green */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #10B981; /* Emerald Green */
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
    left: 25%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(16, 185, 129, 0.65)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF; /* White */
    position: relative;
}

.hero h1 {
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero .tagline {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

.get-started {
    background: #10B981; /* Emerald Green */
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.get-started:hover {
    background: #059669; /* Darker Green */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* About Us Section */
.about-section {
    background: #FFFFFF; /* White */
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05), rgba(16, 185, 129, 0.05));
    z-index: 0;
}

.about-text {
    position: relative;
    z-index: 1;
    padding: 2rem;
    animation: fadeInLeft 1s ease-out;
}

.section-title {
    color: #1E3A8A; /* Deep Blue */
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #10B981; /* Emerald Green */
    bottom: -10px;
    left: 0;
}

.section-subtitle {
    color: #4B5563; /* Medium Gray */
    font-size: 1.2rem;
    font-weight: 500;
}

.about-text .lead {
    color: #111827; /* Dark Gray */
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4B5563; /* Medium Gray */
}

.btn-outline-success {
    border-color: #10B981; /* Emerald Green */
    color: #10B981;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background: #10B981; /* Emerald Green */
    color: #FFFFFF; /* White */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about-image {
    position: relative;
    z-index: 1;
    padding: 2rem;
    animation: fadeInRight 1s ease-out;
}

.about-image img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background: #F9FAFB; /* Light Gray */
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.03), rgba(16, 185, 129, 0.03));
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: #FFFFFF; /* White */
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
    color: #10B981; /* Emerald Green */
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4B5563; /* Medium Gray */
}

/* Mission Section */
.mission-section {
    background: #FFFFFF; /* White */
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05), rgba(16, 185, 129, 0.05));
    z-index: 0;
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-card {
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.mission-card h5 {
    color: #10B981; /* Emerald Green */
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #4B5563; /* Medium Gray */
    font-size: 1.1rem;
}

/* Why Us Section */
.why-us-section {
    background: #F9FAFB; /* Light Gray */
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.03), rgba(16, 185, 129, 0.03));
    z-index: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.why-us-card {
    background: #FFFFFF; /* White */
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-us-card h5 {
    color: #10B981; /* Emerald Green */
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #4B5563; /* Medium Gray */
}

/* Contact Section */
.contact-section {
    background: #FFFFFF; /* White */
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05), rgba(16, 185, 129, 0.05));
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-info {
    animation: fadeInUp 0.8s ease-out;
}

.contact-info p {
    color: #4B5563; /* Medium Gray */
    line-height: 1.8;
}

.contact-link {
    color: #10B981; /* Emerald Green */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #059669; /* Darker Green */
}

.contact-section .btn-primary {
    background: #10B981; /* Emerald Green */
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-section .btn-primary:hover {
    background: #059669; /* Darker Green */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: #1E3A8A; /* Deep Blue */
    color: #FFFFFF; /* White */
    padding: 2rem 0;
    position: relative;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: #FFFFFF; /* White */
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
    color: #10B981; /* Emerald Green */
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .full-page {
        padding: 60px 20px;
    }

    .hero {
        padding: 100px 20px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.25rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .get-started {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }

    .about-text, .about-image {
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image img {
        max-height: 300px;
    }

    .service-card, .mission-card, .why-us-card {
        margin-bottom: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .social-link {
        font-size: 1.25rem;
        margin: 0 0.75rem;
    }
}