* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #f77115;     
    --secondary-blue: #fb923c;   
    --accent-cyan: #facc15;      
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #f77115 0%, #fb923c 100%);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;               
    align-items: center;        
    justify-content: center;      
    text-align: center;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile Navigation */
.topnav {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topnav .logo-mobile {
    padding: 14px 16px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
}

.topnav #myLinks {
    display: none;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.topnav a {
    color: var(--dark-gray);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: background-color 0.3s ease;
}

.topnav a:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.topnav a.icon {
    background: transparent;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--dark-gray);
    font-size: 18px;
}

.topnav .cta-button {
    margin: 10px 16px;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0f1117 0%, #1a1f25 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9)),
        url('/assets/images/banner2.webp') center/cover no-repeat;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.3rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 1rem;
}

/* Simple CTA Section */
section.simple-cta {
    position: relative;
    width: 100%;
    padding: 60px 0;
    z-index: 1;
    overflow: hidden;
    color: white; 
}

section.simple-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/banner1.webp') center/cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;
}

section.simple-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

section.simple-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.parent-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.left-text {
    flex: 1;
    min-width: 280px;
}

.right-text {
    flex: 1;
    min-width: 280px;
}

.left-image {
    margin-right: 30px;
}

section.simple-cta h4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

section.simple-cta h4 em {
    color: #ff511a;
    font-style: normal;
}

section.simple-cta h4 strong {
    color: #ff511a;
    font-weight: 700;
}

section.simple-cta p {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

section.simple-cta ul {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
    margin-bottom: 2rem;
}

section.simple-cta ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

section.simple-cta ul li::before {
    content: "✓";
    background: #43ba7f;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

section.simple-cta ul li strong {
    color: #ff511a;
    font-weight: 600;
}

.cta-badge {
    display: inline-block;
    background: rgba(67, 186, 127, 0.2);
    color: #ff511a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(67, 186, 127, 0.3);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.green-button a,
.orange-button a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.green-button a {
    background: #43ba7f;
    color: white;
    border-color: #43ba7f;
}

.green-button a:hover {
    background: #369963;
    border-color: #369963;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 186, 127, 0.3);
}

.orange-button a {
    background: #ff511a;
    color: white;
    border-color: #ff511a;
}

.orange-button a:hover {
    background: #e6460f;
    border-color: #e6460f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 81, 26, 0.3);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff511a;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
    position: relative;
    z-index: 2;
}

.header-accent {
    width: 60px;
    height: 4px;
    background: #040478;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #f77115;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #343a42;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mission Section */
.mission-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f77115;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: 2rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.mission-card:hover .card-icon {
    filter: grayscale(0);
}

.mission-card h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: #64748b;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #040478;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: #040478;
    color: white;
    padding: 2rem 0 1rem;
}

.footer img {
    height: 40%;
    width: 80%;
    max-width: 200px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-container {
        display: none; 
    }

    .topnav {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section.simple-cta h4 {
        font-size: 2rem;
    }

    .parent-card {
        flex-direction: column;
        gap: 2rem;
    }

    .left-text, .right-text {
        min-width: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        text-align: center;
        justify-content: center;
    }

    section.simple-cta {
        padding: 40px 0;
    }

    section.simple-cta h4 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    section.simple-cta ul li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .cta-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item {
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
    }

    section.simple-cta h4 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    section.simple-cta p {
        font-size: 0.9rem;
    }

    section.simple-cta ul li {
        font-size: 0.8rem;
    }

    .cta-card {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .buttons {
        flex-direction: column;
    }

    .green-button a,
    .orange-button a {
        padding: 10px 20px;
        font-size: 12px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-details li {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    section.simple-cta h4 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 0.8rem;
    }

    .cta-card {
        padding: 0.8rem;
    }

    .green-button a,
    .orange-button a {
        padding: 8px 16px;
        font-size: 11px;
    }
}