:root {
    --primary: #0a2540;
    --accent: #c5a059;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--primary); color: var(--white); }
.text-center { text-align: center; }
.hidden { display: none; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: #b08d4a; transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-dark { background: var(--primary); color: var(--white); }

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.tagline { font-size: 0.75rem; color: var(--accent); margin-top: -5px; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; }

/* Hero */
.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
}

.hero-content { max-width: 700px; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.highlight { color: var(--accent); }
.subtitle { font-size: 1.5rem; color: var(--accent); margin-bottom: 15px; }
.hero-check { list-style: none; margin: 25px 0; }
.hero-check li { margin-bottom: 10px; font-size: 1.1rem; }
.hero-check i { color: var(--accent); margin-right: 10px; }
.hero-btns { display: flex; gap: 20px; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* Services */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-category {
    background: var(--bg-light);
    padding: 25px;
    border-top: 4px solid var(--accent);
}

.service-category h3 { margin-bottom: 15px; color: var(--primary); }
.service-category ul { list-style: none; }
.service-category li { padding: 8px 0; border-bottom: 1px solid #ddd; font-size: 0.9rem; }

/* Forms */
.contact-flex { display: flex; gap: 50px; align-items: center; }
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.success-msg { background: #d4edda; color: #155724; padding: 20px; border-radius: 5px; margin-top: 10px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { padding: 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; }
.stars { color: var(--accent); margin-bottom: 10px; }

/* Mobile Menu */
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .contact-flex { flex-direction: column; }
    .hero-btns { flex-direction: column; }
}

/* General Section Styling */
.faq {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Accordion Styles */
.accordion {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    background-color: #fff;
    color: #333;
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.accordion-header.active i {
    transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
    padding: 0 20px;
}

.accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    line-height: 1.6;
}
/* General Section Styling */
.newsletter {
    padding: 60px 20px;
    background-color: #f8f9fa; /* Light background */
    font-family: 'Arial', sans-serif;
}

.newsletter h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    border-color: #333;
    outline: none;
}

/* Consent Checkbox */
.newsletter-form .consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.newsletter-form .consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/* Subscribe Button */
.newsletter-form .btn {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: #555;
}

/* Success Message */
.success-msg {
    margin-top: 20px;
    color: #155724;
    background-color: #d4edda;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
}
/* Footer General Styling */
footer {
    background-color: #222;
    color: #f1f1f1;
    padding: 50px 20px 20px;
    font-family: 'Arial', sans-serif;
}

footer a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd700; /* Golden hover */
}

/* Footer Grid */
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer About Section */
.footer-about h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-about p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-about .socials a {
    font-size: 18px;
    margin-right: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-about .socials a:hover {
    color: #ffd700;
}

/* Footer Links */
.footer-links h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 16px;
    color: #ccc;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0 10px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, .footer-links {
        width: 100%;
    }

    .footer-about .socials a {
        margin-right: 10px;
    }
}
/* Modal Overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    transition: opacity 0.3s ease;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px 20px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff0000;
}

/* Modal Headings */
.modal-content h2 {
    margin-top: 0;
    color: #333;
}

/* Modal Paragraphs */
.modal-content p {
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 20px;
    }
}
/* About Section General Styling */
.about {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.about .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.about .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about .section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.about .section-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Box */
.about .mission-box {
    background-color: #fff;
    border-left: 5px solid #333; /* accent border */
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .mission-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.about .mission-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Hover Effect for Mission Box */
.about .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about .section-header h2 {
        font-size: 28px;
    }

    .about .section-header p,
    .about .mission-box p {
        font-size: 15px;
    }

    .about .mission-box {
        padding: 20px 15px;
    }
}
