/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f9fafb;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1f2937;
}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Great Vibes', cursive, 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1f2937;
    position: relative;
    display: inline-block;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.visible {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    width: 60px;
    height: 60px;
    background: url('assets/images/IconForHome.jpg') no-repeat center center/cover;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-bmc {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-left: 10px;
    transition: color 0.4s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 30px;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar nav a:hover, .navbar nav a.active {
    color: #d4af37;
}

.language-selector {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.language-selector select:hover,
.language-selector select:focus {
    border-color: #d4af37;
    background-color: #f9fafb;
    outline: none;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.4s ease;
}

.navbar.visible .hamburger {
    color: #1f2937;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    .navbar-bmc {
        font-size: 1.2rem;
        margin: 0 auto;
        text-align: center;
    }
    .hamburger {
        display: block;
    }
    .navbar-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .navbar-content.active {
        display: flex;
    }
    .navbar nav {
        flex-direction: column;
        gap: 15px;
        opacity: 1;
    }
    .navbar nav a {
        font-size: 1rem;
        color: #1f2937;
    }
    .language-selector {
        opacity: 1;
    }
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('assets/images/HomePageWallpaper.jpg') no-repeat center center/cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-text {
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20vh 20px 20px;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Great Vibes', cursive, 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #b8972e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-text {
        padding: 15vh 15px 15px;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .service-card {
        padding: 20px;
    }
    .service-icon {
        font-size: 2rem;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text {
    padding: 0 10px;
    word-break: break-word;
}

.team-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.team-text p {
    font-size: 1rem;
    color: #6b7280;
}

.team-text p:nth-child(2) {
    font-style: italic;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .team-image {
        width: 150px;
        height: 150px;
    }
    .team-text h3 {
        font-size: 1.3rem;
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    font-size: 1.6rem;
    margin: 20px;
    color: #1f2937;
}

.video-container {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
}

.project-info {
    padding: 20px;
}

.project-description {
    font-size: 1rem;
    color: #6b7280;
}

.welcome-text {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.review-scope {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 15px;
    font-style: italic;
}

.review-comment {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 15px;
    font-style: normal;
}

.review-rating {
    font-size: 1.2rem;
    margin-top: 10px;
}

.review-rating i {
    margin: 0 2px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .review-card h3 {
        font-size: 1.3rem;
    }
    .review-scope {
        font-size: 0.9rem;
    }
    .review-comment {
        font-size: 0.9rem;
    }
    .review-rating {
        font-size: 1rem;
    }
}

/* About Section */
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-image {
    flex: 1;
    min-height: 450px;
    background: url('assets/images/Image09.jpg') no-repeat center center/cover;
    border-radius: 12px;
}

.about-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 20px;
    }
    .about-image {
        min-height: 300px;
        width: 100%;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-item p {
    font-size: 1rem;
    color: #6b7280;
}

.contact-form {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #d4af37;
    color: #1f2937;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #b8972e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 15px;
    }
}

/* Get Quote Section */
#get-quote .quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#get-quote .quote-form input,
#get-quote .quote-form select,
#get-quote .quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

#get-quote .quote-form input:focus,
#get-quote .quote-form select:focus,
#get-quote .quote-form textarea:focus {
    border-color: #d4af37;
    outline: none;
}

#get-quote .quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

#get-quote .quote-form .file-upload {
    margin-bottom: 15px;
}

#get-quote .quote-form .file-upload label {
    display: block;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 8px;
}

#get-quote .quote-form .file-upload input[type="file"] {
    padding: 8px;
    font-size: 0.9rem;
}

#get-quote .quote-form .submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #d4af37;
    color: #1f2937;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#get-quote .quote-form .submit-btn:hover {
    background-color: #b8972e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #get-quote .quote-form {
        padding: 20px;
    }
    #get-quote .quote-form input,
    #get-quote .quote-form select,
    #get-quote .quote-form textarea {
        font-size: 0.9rem;
    }
    #get-quote .quote-form .file-upload input[type="file"] {
        font-size: 0.8rem;
    }
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: url('assets/images/IconForHome.jpg') no-repeat center center/cover;
}

.footer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.5rem;
    color: #e5e7eb;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #d4af37;
}

.footer-bottom {
    background-color: #111827;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 15px;
    }
}

/* General Link Styles */
a {
    text-decoration: none;
    color: inherit;
}