*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* colors */

:root{
    --Text:#150a0c;
    --Background:#faf4f5;
    --Primary:#ae586b;
    --Secondary:#d5bfa9;
    --Accent:#c0af7c;

}


@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-Italic-VariableFont_wdth\,wght.ttf);
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-VariableFont_wdth\,wght.ttf);
    font-weight: 100 900;
    font-style: normal;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
    background: var(--Background);
    
}



/* General styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 70px;
    color: var(--Text);
}


.logo{
    font-size: 20px;
    font-weight: 700;
}


h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--Text);
}

a {
    text-decoration: none;
    color: var(--Text);
    font-weight: 400;
    font-size: 14px;
}

a:hover{
    color: var(--Primary);
    transition: all 0.3s ease-in-out;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hide hamburger button on larger screens */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--Text);
    cursor: pointer;
}

/* Desktop navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    
}


.phone-number a {
    text-decoration: none;
    color: var(--Text);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number i {
    font-size: 1.2rem;
    color: var(--Primary);
}




/* General styles */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
}

/* Wrapper to keep image and content structured */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
}

/* Image Styling */
.content-wrapper img {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
}

/* Text Content Styling */
.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header and Paragraph Styling */
.main-h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: var(--Primary);
    margin-bottom: 1rem;
}

.main-h3 {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--Accent);
    margin-bottom: 1rem;
}

.main-p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    color: var(--Text);
    margin-bottom: 1rem;
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}




.play-video{

    color: var(--Text);
    border: none;
    padding: 1rem 2rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;

}

.play-video:hover{
    color: var(--Accent);
    box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Services section*/
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--Background);
    color: var(--Text);
    margin-top: 100px;
    margin-bottom: 100px;
}

.h2-sections {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color: var(--Primary);
    margin-bottom: 1rem;
}

.h3-sections {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--Accent);
    margin-bottom: 1rem;
}

.type-of-services {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--Background);
    color: var(--Text);
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Icons */
.service i {
    font-size: 2rem;
    color: var(--Secondary);
    margin-bottom: 1rem;
}

/* Button Styling */
.learn-more {
    color: var(--Primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.learn-more i {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px); 
    color: var(--Primary);
}


.service {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Project section */

/* Projects Section */
.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--Background);
    color: var(--Text);
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Image Grid Layout */
.images-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

/* Project Card */
/* Overlay Text */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Image Styling */
.project-card img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    display: block;
    transition: filter 0.3s ease-in-out;
}

/* Blur and Darken Effect on Hover */
.project-card:hover img {
    filter: blur(3px) brightness(0.7);
}

/* Overlay Text Styling */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show text on hover */
.project-card:hover .overlay-text {
    cursor: pointer;
    opacity: 1;
}


/* Button Styling */
.cta-button {
    background: var(--Primary);
    color: var(--Background);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--Text);
}





/* Testimonials section */

/* Testimonials Section */
.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--Background);
    color: var(--Text);
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

/* New column structure */
.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Existing testimonial card styling */
.testimonial-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    height: 200px;
    background: var(--Background);
    color: var(--Text);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 550px;
    transition: transform 0.3s ease-in-out;
}

/* Adjust card size for alignment */
.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}


.name-h4{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--Accent);
}

.quote-p{
    font-style: italic;
    margin: 10px;
}

/* Text Content */
.testimonial-text {
    flex: 1;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: scale(1.03);
}



/* Video section */

/* Video Section */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--Background);
    color: var(--Text);
}

/* Wrapper for layout */
.content-video-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

/* Text Content */
.text-content {
    flex: 1;
}

.text-content h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-content p {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Video Styling */
.video-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 560px;
    height: 450px;
    border-radius: 10px;
}





hr {
    width: 60%; /* Slightly increased width for better responsiveness */
    height: 1px;
    background: var(--Text);
    margin: 1rem auto; /* Centers the line dynamically */
}


/* Section we provide */

/* Section Styling */
.we-provide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--Background);
    color: var(--Text);
    text-align: center;
}

/* Container for Layout */
.provide-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

/* Individual Provide Cards */
.provide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--Background);
    color: var(--Text);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Icons */
.provide i {
    font-size: 2rem;
    color: var(--Secondary);
    margin-bottom: 1rem;
}

.provide a i{
    font-size: 1rem;
    color: var(--Secondary);
    margin-bottom: 1rem;
}

/* Button Styling */
/* .learn-more {
    background: var(--Primary);
    color: var(--Background);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.learn-more:hover {
    background: var(--Text);
}
 */


/* footer */

/* Footer Container */
/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background: var(--Background);
    color: var(--Text);
    flex-wrap: wrap;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Left Content (About & Socials) */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
    gap: 2rem;
}

.about {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.connect{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Social Icons */
.socials {
    margin-top: 1rem;
    display: flex;
    gap: 3rem;
}

.p-about-footer{
    color: var(--Text);
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1rem;
}

.socials a {
    font-size: 1.5rem;
    color: var(--Text);
    transition: color 0.3s ease-in-out;
}

.socials a:hover {
    color: var(--Primary);
}

/* Right Side: Navigation Columns */
.navigation-container {
    display: flex;
    flex: 2;
    justify-content: space-evenly;
    gap: 2rem;
    align-items: flex-end;
}

.nav-column ul {
    list-style: none;
    padding: 0;
}

.nav-column ul li {
    margin-bottom: 0.5rem;
}

.nav-column ul li a {
    text-decoration: none;
    color: var(--Text);
    font-weight: 700;
}

.nav-column ul li a:hover {
    color: var(--Primary);
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 1rem;
    background: var(--Background);
    font-size: 0.9rem;
}



.copyright a {
    color: var(--Text); /* Matches the paragraph for consistency */
    font-weight: 600; /* Slight emphasis */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.copyright a:hover {
    color: var(--Accent); /* Creates contrast while staying elegant */
}
















/* Mobile & Tablet Styles */
@media (max-width: 768px) {

    /* header */
    header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
    color: var(--Text);
}


   /* Hamburger Animation */
/* Styling the Hamburger Button */
.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Creating the bars */
.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--Text);
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
}

/* When menu is active - creating the "X" effect */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 3px); /* Moves top bar diagonally */
}

.hamburger.active span:nth-child(2) {
    opacity: 0; /* Hides middle bar for clean transformation */
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -4px); /* Moves bottom bar diagonally */
}


/* Smooth Menu Transition */
.nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--Background);
    padding: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none; /* Prevents interaction when hidden */
}

.nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}


    .phone-number {
        display: none;
    }
}




/* main */
/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust main container */
    main {
        flex-direction: column;
        padding: 1rem;
    }

    /* Stack elements and reduce spacing */
    .content-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Make the image responsive and centered */
    .content-wrapper img {
        max-width: 90%;
        border-radius: 5px;
    }

    /* Ensure text content takes full width */
    .text-content {
        width: 100%;
        align-items: center;
    }

    /* Adjust font sizes for smaller screens */
    .main-h2 {
        font-size: 1.5rem;
    }

    .main-h3 {
        font-size: 2.5rem;
    }

    .main-p {
        font-size: 0.8rem;
    }

    /* Make buttons easier to interact with on mobile */
    .button-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .play-video {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}



/* Services Section */
/* Responsive Design */
@media (max-width: 768px) {
    .type-of-services {
        flex-direction: column;
        align-items: center;
    }
}


/* Projects Section */

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust Projects container */
    .projects {
        padding: 1.5rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    /* Optimize image grid */
    .images-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    /* Reduce project card size */
    .project-card img {
        height: 220px;
    }

    /* Adjust overlay text */
    .overlay-text {
        font-size: 1rem;
        padding: 8px 16px;
    }

    /* Ensure CTA button is touch-friendly */
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Switch grid to single column for smaller screens */
    .images-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }

    /* Reduce image height */
    .project-card img {
        height: 200px;
    }

    /* Refine overlay text readability */
    .overlay-text {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    /* Make CTA button span full width */
    .cta-button {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem;
    }
}



/* Testimonials Section */

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust testimonials section padding */
    .testimonials {
        padding: 2rem 1rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    /* Stack testimonials vertically */
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Ensure testimonial cards are more compact */
    .testimonial-card {
        width: 90%;
        height: auto;
        padding: 1.5rem;
    }

    /* Adjust profile picture size */
    .profile-pic {
        width: 70px;
        height: 70px;
    }

    /* Adjust text sizes */
    .name-h4 {
        font-size: 1rem;
    }

    .quote-p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Reduce section padding further for small screens */
    .testimonials {
        padding: 1.5rem;
    }

    /* Ensure testimonials take full width */
    .testimonial-card {
        width: 100%;
        padding: 1.2rem;
    }

    /* Reduce profile picture size for compact layouts */
    .profile-pic {
        width: 60px;
        height: 60px;
    }

    /* Adjust font sizes for readability */
    .name-h4 {
        font-size: 0.9rem;
    }

    .quote-p {
        font-size: 0.85rem;
    }
}



/* Video Section */
/* Responsive Design */
@media (max-width: 768px) {
    /* Reduce padding for smaller screens */
    .video-section {
        padding: 2rem 1rem;
    }

    /* Stack content vertically */
    .content-video-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    /* Center text content */
    .text-content {
        text-align: center;
        width: 100%;
    }

    /* Adjust heading sizes for better readability */
    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.3rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    /* Ensure video wrapper remains centered */
    .video-wrapper {
        width: 100%;
    }

    .video-wrapper iframe {
        max-width: 90%;
        height: 350px;
    }
}

@media (max-width: 480px) {
    /* Reduce padding further for compact screens */
    .video-section {
        padding: 1.5rem;
    }

    /* Adjust font sizes for readability */
    .text-content h1 {
        font-size: 1.5rem;
    }

    .text-content h2 {
        font-size: 1.1rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    /* Optimize video size for mobile */
    .video-wrapper iframe {
        max-width: 100%;
        height: 280px;
    }
}


/* We Provide Section */

@media (max-width: 768px) {
    /* Reduce padding for better spacing */
    .we-provide {
        padding: 2rem 1rem;
    }

    /* Adjust grid layout to two columns */
    .provide-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Make cards slightly more compact */
    .provide {
        padding: 1.5rem;
    }

    /* Adjust icon sizes */
    .provide i {
        font-size: 1.8rem;
    }

    .provide a i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Reduce padding further for smaller screens */
    .we-provide {
        padding: 1.5rem;
    }

    /* Switch to a single-column layout */
    .provide-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
    }

    /* Make cards more compact */
    .provide {
        padding: 1.2rem;
    }

    /* Reduce icon sizes for balance */
    .provide i {
        font-size: 1.5rem;
    }

    .provide a i {
        font-size: 0.8rem;
    }
}



@media (max-width: 768px) {
    /* Adjust footer padding */
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    /* Center left content */
    .left-content {
        align-items: center;
        margin-right: 0;
        text-align: center;
    }

    .socials {
        gap: 2rem;
        justify-content: center;
    }

    /* Adjust navigation columns */
    .navigation-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-column ul {
        text-align: center;
    }

    .nav-column ul li {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    /* Reduce footer padding for compact screens */
    .footer-container {
        padding: 1.5rem;
    }

    /* Stack navigation items */
    .navigation-container {
        gap: 1rem;
    }

    /* Adjust social icons */
    .socials a {
        font-size: 1.2rem;
    }

    /* Reduce copyright font size */
    .copyright {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}


@media (max-width: 768px) {
    hr {
        width: 80%; /* Allows more flexibility */
    }
}

@media (max-width: 480px) {
    hr {
        width: 90%; /* Almost full-width on smaller devices */
    }
}
