:root {
    --blue: #002147;
    --red: #ff0000;
    --cyan: #00bcd4;
    --gold: #FFD700;
    --light-gold: #fff9db;
    --white: #FFFFFF;
    --light-blue: #003a7a;
    --dark-blue: #00152e;
    --gray: #f5f7fa;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--cyan);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cyan);
}

.name1 {
    color: var(--white);
}

/* Background Elements */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background:
        radial-gradient(circle at 10% 20%, var(--cyan) 0%, transparent 15%),
        radial-gradient(circle at 90% 80%, var(--cyan) 0%, transparent 15%),
        radial-gradient(circle at 30% 50%, var(--blue) 0%, transparent 10%);
    pointer-events: none;
}

.floating-element {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    top: 10%;
    left: 5%;
    animation: float 25s infinite ease-in-out;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--blue);
    top: 50%;
    right: 10%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 30px) rotate(90deg);
    }

    50% {
        transform: translate(0, 60px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, 30px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 33, 71, 0.05);
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.name:hover {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: var(--cyan);
    color: var(--blue);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(5, 21, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: rgba(0, 33, 71, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 33, 71, 0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--blue);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 8%;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.9) 0%, rgba(0, 33, 71, 0.7) 100%),
        url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;

}

.hero-content {
    max-width: 800px;
    z-index: 1;
    color: var(--white);
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--cyan);
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .cta-button {
    background: var(--cyan);
    color: var(--blue);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections Common Styles */
section {
    padding: 120px 8%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--cyan);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 30px auto 0;
    color: var(--white);
    font-size: 1.1rem;
}

/* About Section */
#about {
    background: var(--white);
}

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

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
    background: url('https://images.unsplash.com/photo-1579547621706-1a9c79d5fa4c') center/cover no-repeat;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.testimonial {
    background: var(--cyan);
    border-left: 4px solid var(--cyan);
    padding: 25px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--blue);
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--light-blue);
    margin: 0;
}

/* Showcase Section */
#showcase {
    background: var(--gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--blue);
}

.project-content p {
    color: var(--light-blue);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--cyan);
}

.project-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Partners Section */
#partners {
    background: var(--white);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 14);
}

.partner-logo {
    width: 180px;
    height: 100px;
    margin: 0 20px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--blue);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(75%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* locations Section */
#locations {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 50%);
    color: var(--white);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--cyan);
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.timeline-icon {
    position: absolute;
    top: 30px;
    width: 50px;
    height: 50px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.5rem;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -70px;
}

.timeline-date {
    font-size: 1.1rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.timeline-meta {
    display: flex;
    align-items: center;
    color: var(--cyan);
    font-size: 0.9rem;
}

.timeline-meta i {
    margin-right: 8px;
}

.timeline-meta span {
    margin-right: 20px;
}

/* Contact Section */
#contact {
    background: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--cyan);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--blue);
}

.contact-text p {
    color: var(--light-blue);
}

.contact-map {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--blue);
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--gray);
    border: 1px solid rgba(0, 33, 71, 0.1);
    border-radius: 10px;
    color: var(--dark-blue);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--CYAN);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark-blue);
    padding: 70px 8% 30px;
    color: var(--white);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--cyan);
    color: var(--blue);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--cyan);
    bottom: 0;
    left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .about-container,
    .contact-container {
        flex-direction: column;
    }

    .about-image {
        height: 400px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
    }

    .timeline-item:nth-child(even)::after,
    .timeline-item:nth-child(odd)::after {
        left: 20px;
    }

    .hero-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-headline {
        font-size: 2.3rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 5%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .partner-logo {
        width: 140px;
        height: 80px;
        margin: 0 10px;
    }
}
#formStatus.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
    display: flex !important;
  }

  #formStatus.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    display: flex !important;
  }

  #submitBtn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }