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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #bba359;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #a88f4a;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #1e3056;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #bba359;
}

.section-title p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
.header-top {
    background-color: #1e3056;
    padding: 10px 0;
    color: white;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact a {
    margin-right: 20px;
    font-size: 14px;
}

.header-contact i {
    margin-right: 5px;
    color: #bba359;
}

.header-social a {
    margin-left: 15px;
    font-size: 14px;
}

.main-header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1e3056;
}

.logo span {
    color: #bba359;
}

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

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    font-weight: 600;
    color: #1e3056;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #bba359;
}

.nav-menu a.active {
    color: #bba359;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #bba359;
    bottom: -5px;
    left: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 48, 86, 0.8), rgba(30, 48, 86, 0.8)), url('/api/placeholder/1200/600') no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3%;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    margin-top: 30px;
}

.hero-btns .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.hero-btns .btn-secondary:hover {
    background-color: white;
    color: #1e3056;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
    color: #bba359;
    font-size: 50px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: #1e3056;
}

.service-box p {
    color: #666;
    margin-bottom: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #1e3056;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
}

.about-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #bba359;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-us {
    background-color: #1e3056;
    color: white;
}

.why-us .section-title h2 {
    color: white;
}

.why-us .section-title p {
    color: #ccc;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s;
}

.why-us-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.why-us-icon {
    font-size: 40px;
    color: #bba359;
    margin-bottom: 20px;
}

.why-us-box h3 {
    margin-bottom: 15px;
}

.why-us-box p {
    color: #ccc;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

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

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-info h4 {
    color: #1e3056;
}

.client-info p {
    color: #bba359;
    font-size: 14px;
}

/* Call to Action */
.cta {
    background: linear-gradient(rgba(30, 48, 86, 0.9), rgba(30, 48, 86, 0.9)), url('/api/placeholder/1200/400') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
}

/* Footer */
.footer {
    background-color: #162440;
    color: #ccc;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #bba359;
}

.footer-contact-info div {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: #bba359;
    margin-right: 10px;
    margin-top: 4px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    position: relative;
    padding-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #bba359;
}

.footer-links a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #bba359;
}

.footer-bottom {
    background-color: #111c30;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Under Construction Bar */
.bar {
    background-color: #FF0000;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 10px;
}

/* Contact Form Styling*/
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3056;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-full {
    grid-column: span 2;
}

/* Form Status Messages */
.form-status {
    display: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    background-color: #1e3056;
    color: white;
    padding: 30px;
    border-radius: 5px;
}

.contact-info h3 {
    color: #bba359;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info-item i {
    color: #bba359;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 18px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.required-field::after {
    content: "*";
    color: red;
    margin-left: 4px;
}


@media (max-width: 768px) {
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
    }
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        grid-row: 1;
        margin-bottom: 30px;
    }
    .nav-menu {
        flex-direction: column;
        text-align: center;
    }
    .header-top-content {
        flex-direction: column;
        text-align: center;
    }

    .header-social {
        margin-top: 10px;
    }

    .header-content {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu li {
        margin: 5px 10px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
    .form-grid {
        display: block;
    }

    .form-group {
        width: 100%;
    }

    .form-full {
        grid-column: auto;
    }
    .contact-wrapper {
        display: block;
    }

    .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-grid {
        display: block;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
    }

    .form-full {
        grid-column: auto;
    }
}