@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Wix+Madefor+Display:wght@400..800&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Wix Madefor Display', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Button Styles */

.btn-primary,
.btn-hero,
.btn-secondary,
.btn-card,
.btn-submit,
.btn-footer {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 15px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.btn-primary {
    background-color: #2c5282;
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a5f;
}

.btn-hero {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c5282;
    font-size: 18px;
    padding: 15px 40px;
}

.btn-hero:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #2d5f5d;
    color: white;
}

.btn-secondary:hover {
    background-color: #1e4240;
}

.btn-card {
    background-color: #2c5282;
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-card:hover {
    background-color: #1e3a5f;
}

.btn-submit {
    background-color: #2c5282;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #1e3a5f;
}

.btn-footer {
    background-color: #2c5282;
    color: white;
}

.btn-footer:hover {
    background-color: #1e3a5f;
}


.header-main {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(73, 59, 156, 0.5)), 
                url('../assets/images/background_hero.webp') no-repeat center center/cover;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: 'Raleway', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    font-family: 'Wix Madefor Display', sans-serif;
}

nav ul li a:hover {
    color: #ddd;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px 50px;
}

.hero h2 {
    font-size: 7em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Raleway', sans-serif;
}

.hero p {
    font-size: 1.8em;
    margin-bottom: 40px;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

/* Main Content */
main {
    background-color: #f8f9fa;
}

/* Objective Section */
.objective {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 50px;
    background-color: white;
    align-items: center;
}


.objective-content h4 {
    color: #2c5282;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.objective-content h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #1a202c;
    font-family: 'Raleway', sans-serif;
}

.objective-content p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 16px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.objective-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    text-align: center;
}

.services h3 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #1a202c;
    font-family: 'Raleway', sans-serif;
}

.service-cards {
    display: grid;
    grid-template-columns: 50vw 50vw;
    grid-template-rows: 50vh 50vh;
    margin: 0;
    padding: 0;
}

.service-cards .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 40px 20px;
    gap: 30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.card-icon {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.service-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-cards .card h4 {
    font-size: 1.2rem;
    color: #1a2c5b;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
}

.service-cards .card p {
    font-size: 0.95rem;
    color: #1a2c5b;
    margin-bottom: 40px;
    max-width: 300px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.btn-card {
    height: 62px;
    width: 300px;
    display: inline-block;
    padding: 15px 30px;
    background-color: #1a2c5b;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #0f1e3f;
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: space-between;
    padding: 80px 50px;
    background-color: white;
    flex-wrap: wrap;
}

.contact-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-left h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a202c;
    font-family: 'Raleway', sans-serif;
}

.contact-left p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #4a5568;
    font-family: 'Wix Madefor Display', sans-serif;
}

.contact-left a {
    color: #2c5282;
    font-weight: bold;
    text-decoration: none;
}

.contact-left a:hover {
    text-decoration: underline;
}

.whatsapp-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.contact-form {
    flex: 1;
    align-items: center;
    min-width: 300px;
    max-width: 600px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    text-align: left;
    margin-bottom: 30px;
    color: #1a202c;
    font-size: 1.8em;
    font-family: 'Raleway', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 120px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Wix Madefor Display', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Wix Madefor Display', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #1a2a57;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c5282;
}


/* Tracking Section */
.tracking {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    color: white;
}

.tracking h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.tracking p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-family: 'Wix Madefor Display', sans-serif;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.footer-address p,
.footer-contact p {
    margin: 8px 0;
    color: #cbd5e0;
    font-family: 'Wix Madefor Display', sans-serif;
}

.footer-contact a {
    color: #63b3ed;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-quote p {
    margin-bottom: 20px;
    font-size: 1.1em;
    font-family: 'Wix Madefor Display', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .objective {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .services,
    .contact,
    .tracking {
        padding: 50px 20px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}