:root {
    --primary-orange: #FF6600; /* Modern Rawafed Orange */
    --dark-blue: #2c3e50; /* A dark blue for sections/text */
    --light-grey: #f8f8ff;
    --text-color: #333;
    --white: #ffffff;
    --hero-blue-overlay: rgba(26, 46, 73, 0.95); /* A dark blue with slight transparency */
    --footer-bg-dark: #1A2E49; /* Dark blue from the image */
    --footer-text-light: #C0C0C0; /* Light grey for footer text */
    --footer-text-lighter: #E0E0E0; /* Slightly lighter for headings */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f7f9fc; /* A slightly cooler light grey */
}

/* ... (All previous styles from Navbar to Footer remain the same) ... */

/* --- Navbar --- */
.navbar-container {
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    padding: 0 20px;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar-logo span {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-blue);
}

.navbar-logo span strong {
    color: var(--primary-orange);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.contact-info {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
}

.contact-info i {
    font-size: 1.1em;
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    color: var(--dark-blue);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-blue-overlay);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%); 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 50%;
    margin-left: 5%;
}

.hero-content .subtitle {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.hero-content .dots {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.hero-content .dots span {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 3.8em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .btn-readmore {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.hero-content .btn-readmore:hover {
    background-color: #e65c00;
}

/* --- Overlapping Boxes --- */
.overlapping-boxes-container {
    position: relative;
    max-width: 1200px;
    margin: -100px auto 0 auto;
    padding: 0 20px;
    z-index: 5;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-box .icon {
    font-size: 3em;
    color: var(--primary-orange);
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.service-box h3 {
    font-size: 1.5em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-box p {
    font-size: 0.95em;
    color: #666;
    flex-grow: 1;
}

.btn-box-readmore {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 18px;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-box-readmore:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* --- About Section --- */
.about-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image-column {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-small-image-container {
    position: relative;
    width: 250px;
    height: 180px;
    margin-top: -80px;
    margin-left: -50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.about-small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button-overlay:hover {
    background-color: rgba(0, 0, 0, 0.65);
}

.play-button-overlay i {
    font-size: 3em;
    color: var(--white);
}

.about-content-column {
    flex: 1.2;
}

.about-content-column .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-content-column h2 {
    font-size: 2.5em;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content-column p {
    color: #666;
    margin-bottom: 20px;
}

.about-content-column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-content-column ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.about-content-column ul li i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 1.1em;
}

.about-cta-box {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-cta-box i {
    font-size: 2.5em;
}

.about-cta-box h3 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* --- Services Section (Background, Title & Cards) --- */
.services-section {
    position: relative;
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.services-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/1036070/pexels-photo-1036070.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    filter: blur(8px);
    transform: scale(1.05);
    z-index: 1;
}

.services-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-blue-overlay);
    opacity: 0.7;
    z-index: 2;
}

.services-section .section-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-section h2 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-content {
    padding: 25px;
    text-align: left;
    color: var(--text-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.6em;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .card-link {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card .card-link:hover {
    color: var(--dark-blue);
}

.service-card .card-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-card .card-link:hover i {
    margin-left: 10px;
}


/* --- Counter Section --- */
.counter-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.counter-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
}

.counter-item i {
    font-size: 3em;
    color: var(--primary-orange);
}

.counter-item .counter-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
}

.counter-item p {
    font-size: 1em;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

/* --- Team Section --- */
.team-section {
    padding: 100px 20px;
    background-color: #f7f9fc;
    text-align: center;
}

.team-section .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-section h2 {
    font-size: 3em;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-image-wrapper {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.5em;
    color: var(--dark-blue);
    margin: 0 0 5px 0;
}

.team-info .team-title {
    font-size: 0.9em;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-socials a {
    color: #aaa;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: var(--primary-orange);
}

/* --- Contact Form Section --- */
.contact-form-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    background-color: var(--primary-orange);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-content-area {
    flex: 1;
    padding: 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section .get-in-touch-subtitle {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--white);
    opacity: 0.8;
}

.contact-form-section h2 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    flex: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .submit-btn {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.contact-form .submit-btn:hover {
    background-color: #203140;
}

.contact-form-section .form-image-area {
    flex: 1;
    background-color: #f0f0f0;
    position: relative;
    min-width: 40%; /* Ensure image area doesn't collapse */
}

.contact-form-section .form-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--footer-bg-dark);
    color: var(--footer-text-light);
    padding: 80px 20px 0 20px;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding-right: 20px;
}

.footer-col:last-child {
    padding-right: 0;
}

.footer-col h4 {
    font-size: 1.3em;
    color: var(--footer-text-lighter);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span strong {
    color: var(--primary-orange);
}

.about-company p {
    line-height: 1.8;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links ul li a:hover {
    color: var(--primary-orange);
}

.contact-info-footer address {
    font-style: normal;
    line-height: 1.8;
}

.contact-info-footer address span {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-info-footer address i {
    color: var(--primary-orange);
    margin-right: 10px;
    width: 20px;
    text-align: center;
    margin-top: 4px; /* Align icon better with text */
}

.newsletter-signup p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: var(--primary-orange);
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e65c00;
}

.newsletter-form button i {
    color: var(--white);
    font-size: 1em;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--footer-text-light);
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    font-size: 0.9em;
}

.copyright-mobile {
    display: none;
}

/* --- Animation Styles --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--animation-delay, 0s);
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}


/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
    .navbar-container {
        top: 10px;
        padding: 0 10px;
    }
    
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section::before {
        clip-path: polygon(0 0, 75% 0, 60% 100%, 0 100%);
    }

    .hero-content {
        max-width: 70%;
        margin-left: 3%;
        text-align: left;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .about-section {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-column {
        align-items: center;
        width: 100%;
    }

    .about-main-image {
        height: 350px;
    }

    .about-small-image-container {
        margin-left: 0;
        margin-top: 20px;
        width: 200px;
        height: 150px;
    }

    .about-content-column {
        width: 100%;
        text-align: center;
    }

    .about-content-column h2 {
        font-size: 2em;
    }

    .about-content-column ul {
        display: inline-block;
        text-align: left;
    }

    .about-cta-box {
        justify-content: center;
        text-align: left;
    }

    .services-section h2, .team-section h2, .contact-form-section h2 {
        font-size: 2.5em;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 450px;
    }

    .counter-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        max-width: 300px;
    }

    .contact-form-section {
        flex-direction: column;
        margin: 80px auto;
        width: 90%;
        max-width: 600px;
    }

    .contact-form-section .form-image-area {
        height: 300px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }
    
    .footer-col {
        min-width: unset;
        width: 100%;
        padding-right: 0;
    }
    
    .footer-logo, .footer-socials {
        justify-content: center;
    }
    
    .quick-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    
    .contact-info-footer address span {
        justify-content: center;
    }
    
    .footer-bottom {
        display: none;
    }
    
    .copyright-mobile {
        display: block;
        text-align: center;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        top: 0;
        padding: 0;
    }
    .navbar {
        border-radius: 0;
        padding: 15px 20px;
    }
    
    .hero-section {
        height: 500px;
    }

    .hero-section::before {
        content: none;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: var(--hero-blue-overlay);
        z-index: 2;
    }
    
    .hero-image {
        opacity: 0.3;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .overlapping-boxes-container {
        margin-top: -60px;
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        min-width: unset;
        width: 90%;
        margin-bottom: 20px;
    }

    .about-section {
        margin: 60px auto;
    }

    .about-main-image {
        height: 250px;
    }

    .about-small-image-container {
        margin-top: -50px;
        width: 150px;
        height: 100px;
    }

    .about-content-column h2 {
        font-size: 1.8em;
    }

    .about-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .about-cta-box i {
        margin-bottom: 10px;
    }

    .services-section {
        padding: 80px 15px;
    }

    .services-section h2, .team-section h2, .contact-form-section h2 {
        font-size: 2em;
    }

    .counter-item {
        gap: 15px;
        min-width: 200px;
    }

    .counter-item i {
        font-size: 2.5em;
    }
    .counter-item .counter-number {
        font-size: 2.5em;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .submit-btn {
        align-self: stretch;
        text-align: center;
    }
}
/* ============================= */
/*   RESPONSIVE STYLES FOR MOBILE */
/* ============================= */
@media (max-width: 992px) {
  /* Navbar */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .contact-info {
    display: none; /* hide phone button on mobile */
  }

  .menu-toggle {
    display: block; /* show burger */
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    height: 500px;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content .btn-readmore {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* About Section */
  .about-section {
    flex-direction: column;
    gap: 30px;
  }

  .about-image-column, 
  .about-content-column {
    flex: unset;
    width: 100%;
  }

  .about-main-image {
    height: 250px;
  }

  .about-small-image-container {
    width: 180px;
    height: 120px;
    margin: -40px auto 0;
  }

  /* Contact Form Section */
  .contact-form-section {
    flex-direction: column;
  }

  .form-content-area,
  .form-image-area {
    width: 100%;
  }

  .form-image-area img {
    width: 100%;
    height: auto;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 1.6em;
  }

  .service-box {
    padding: 20px;
  }

  .about-content-column h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 768px) {
  .hero-section::before {
    display: none;
  }

  .hero-section {
    background: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") 
                no-repeat center center/cover;
    height: 500px; /* adjust so image fills properly */
    position: relative;
  }

  /* optional dark overlay for better text readability */
  .hero-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
  }

  .hero-content {
    position: relative; /* keeps text above overlay */
    padding: 20px;
    border-radius: 10px;
    text-align: center; /* looks cleaner on mobile */
  }
}
/* Contact Form Styling */
.contact-form-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: #f9f9f9;
}

.form-content-area {
  flex: 1;
  min-width: 300px;
}

.form-content-area h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form-area input,
.form-area textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.form-area input:focus,
.form-area textarea:focus {
  outline: none;
  border-color: #335c67; /* your theme color */
  box-shadow: 0 0 5px rgba(51, 92, 103, 0.4);
}

.form-area textarea {
  resize: none;
  min-height: 120px;
}

.form-area .btn {
  background: #335c67; /* theme color */
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-area .btn:hover {
  background: #233e45; /* darker shade */
}

/* Side image styling */
.form-image-area {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.form-image-area img {
  max-width: 100%;
  border-radius: 12px;
}
