@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lusitana:wght@400;700&display=swap');

/* Common Styles */
.cinzel-normal {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.Lusitana-normal {
    font-family: "Lusitana", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


body {
    margin: 0;
    font-family: "Lusitana", serif;
    color: #333;
    scroll-behavior: smooth;
}

/* Section Styling */
section {
    scroll-margin-top: 65px;
}

.logo {
    font-family: "Cinzel", serif;
    font-weight: 100 !important;
    font-size: 2em;
    display: flex;
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

h1, h2 {
    margin: 0;
    padding: 0;
}

hr {
    border: solid 1px lightgray;
    margin-bottom: 20px;
}

.hero {
    position: relative;
    height: 60vh;
    background: url('../images/background.png') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-title .highlight {
    color: #fe812e;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero button:hover {
    background: white;
    color: #14213d;
}

/* Navbar */
.navbar-header {

    background-color: #2c3e50;
}

.navbar {
    max-width: 1200px;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.navbar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .menu {
    display: flex;
    gap: 20px;
    z-index: 100;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: #fe812e ;
}

/* Mobile Hamburger Icon */
.navbar .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.navbar a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #62cdb6;
}

/* Orange Bar */
.orange-bar {
    height: 5px;
    background-color: #fe812e ;
}

/* Content */
.content {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #14213d;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #fe812e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(254, 129, 46, 0.2);
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fe812e;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Application Section */
.application-section,
.team-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.application-section .text,
.team-section .text {
    flex: 2;
}

.application-section .image,
.team-section .image {
    flex: 2;
}

.application-section img,
.team-section img {
    max-width: 100%;
    border-radius: 8px;
}

/* Orange Divider */
.orange-divider {
    height: 5px;
    background-color: #fe812e ;
    margin: 40px 0;
}

/* Feedback Section */
.feedback-section {
    text-align: center;
}

.feedback-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feedback-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.feedback-marquee {
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.feedback-marquee {
    display: inline-block;
    padding: 0 20px;
    animation: marquee 100s linear infinite;
}

.feedback-marquee span {
    padding-right: 10px;
    padding: 20px 20px;
    margin-right: 20px;
    font-size: 16px;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    display: block;
    width: 120px;
    margin: 0 auto;
    padding: 12px 24px;
    background-color: #14213d;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #fe812e ;
}

.contact-footer {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    text-align: center;
}

.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        background-color: #14213d;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar .menu.active {
        display: flex;
    }

    .navbar .hamburger {
        display: block;
    }

    .application-section {
        flex-direction: column;
        text-align: center;
    }

    .application-section .image {
        margin-bottom: 20px;
    }

    .application-section .text {
        text-align: left;
    }

    .team-section {
        flex-direction: column;
        text-align: center;
    }

    .team-section .image {
        margin-bottom: 20px;
    }

    .team-section .text {
        text-align: left;
    }

    .content {
        padding: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
