/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}
.navbar.navbar-expand-lg.navbar-dark.bg-dark {
	background-color: #3b4e64 !important;
}
/* Header */
header {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FFD700;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 90vh;
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(59, 78, 100);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: #F4F4F4;;
    color: #111;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 80px 20px;
    text-align: center;
}

.services, .faq, .testimonials {
    background: #eef1f7;
}

.service-container, .faq-container, .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item, .faq-item, .testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

.service-item:hover, .faq-item:hover, .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item i, .faq-item i, .testimonial-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3B4E64;
}

/* Footer */
footer {
    background: #3b4e64;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .service-container, .faq-container, .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item, .faq-item, .testimonial-item {
        width: 90%;
        max-width: 350px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}
/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.about-image {
    flex: 1;
    position: relative;
    background: url('assets/images/about.png') no-repeat center center/cover;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide the img tag, as background handles it */
}

/* Content Section */
.about-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: #FFD700;
    color: black;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        height: auto;
    }

    .about-content {
        text-align: center;
        padding: 40px;
    }
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-img {
        margin-bottom: 20px;
    }
}
