/* Import the Argent fonts */
@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-bolditalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-demibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-demiboldital.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-extraboldital.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-regularitalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-super.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Argent';
    src: url('assets/fonts/Fontspring-DEMO-argentcf-thinitalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Argent', sans-serif;
    background-color: #fff;
    color: #333;
}
/* Global Styles */
/* Global Styles */
/* Global Styles */
/* Global Styles */
/* Global Styles (unchanged for big screens) */
/* Global Styles (unchanged for big screens) */
/* Global Styles (unchanged for big screens) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-size: 18px;
    font-weight: 400;
}
hr.solid {
    border-top: 3px solid #bbb;
  }

.navbar-logo {
    padding-left: 20px;
}

.navbar-logo img {
    height: 130px; /* Default height for big screens */
    max-width: 100%; /* Ensure image fits within its container */
    object-fit: contain; /* Preserve aspect ratio */
}

.navbar-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.navbar-menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

.navbar-menu a:hover {
    color: #949090;
}

.navbar-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Small Screens: Adjusted Logo Size */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 40px 15px; /* Increased padding for more vertical space */
        height: 150px; /* Increased navbar height */
    }

    .navbar-logo {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

    .navbar-logo img {
        height: 150px; /* Larger logo for small screens */
        max-width: none; /* Allow image to grow beyond container's width */
        object-fit: contain; /* Maintain aspect ratio */
    }

    .navbar-toggle {
        display: block;
        font-size: 30px; /* Larger hamburger menu */
        cursor: pointer;
        align-self: center;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%; /* Adjusted for the larger navbar height */
        left: 0;
        border-top: 1px solid #ddd;
        z-index: 999;
        padding: 10px 0;
    }

    .navbar-menu.active {
        display: flex;
    }
}

/* Extra Small Screens (Further Spacing Adjustments) */
@media (max-width: 320px) {
    .navbar {
        padding: 50px 10px; /* Increased padding for very small screens */
        height: 600px; /* Further increased navbar height */
    }

    .navbar-logo img {
        height: 500px; /* Very large logo */
        max-width: none; /* Remove width constraint */
        object-fit: contain; /* Maintain aspect ratio */
    }

    .navbar-toggle {
        font-size: 60px; /* Further increased hamburger size */
    }

    .navbar-menu {
        top: 620px; /* Adjusted for larger navbar height */
    }
}








.ser1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px; 
    background-color: #4b2002;
    color: white;
    margin-top: 180px; 
}

.service-heading {
    font-family: 'Argent CF', sans-serif; 
    font-size: 36px; 
    text-align: center;
    margin: 0; 
}


.hero {
    height: 60vh;
    background: url('assets\\main_c.jpg') center/cover no-repeat;   
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    margin-top: 100px; 
}

.hero h1 {
    font-family: 'Argent', sans-serif;
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero p {
    font-family: 'Argent', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin: 20px 0;
}
.number{
    font-family: 'Argent', sans-serif;
    font-weight: normal;
}
.hero-btn {
    background-color: #4b2002;
    color: white;
    padding: 10px 20px; 
    text-decoration: none; 
    border-radius: 5px; 
    transition: background-color 0.3s; 
}

.hero-btn:hover {
    background-color: #3a1a00; 
    
}

.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-us h2 {
    font-family: 'Argent', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us p {
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 40px;
}


.about-btn {
    display: inline-block;
    padding: 20px 100px; 
    background-color: #ffffff;
    border: 2px solid #000000; 
    color: #000000; /* Black text */
    font-family: 'Argent', sans-serif;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.about-btn:hover {
    background-color: #000000; 
    color: #ffffff; 
}


.staging-services {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.staging-services h2 {
    font-family: 'Argent', sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}


.service-item {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Card shadow */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px); 
    
}


figure {
    margin: 0;
}

figure img {
    width: 100%;
    max-width: 600px;
    height: 200px; 
    object-fit: cover;    
    border-radius: 8px; 
    
}
h3 {
    font-family: 'Argent', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

p {
    font-family: 'Argent', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}
.at-symbol {
    font-family: 'Proxima Nova', sans-serif; /* The alternative font for @ */
}

/* Button Styling */
.service-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4b2002;
    color: #ffffff;
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
}
.turf-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.turf-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.turf-block {
    flex: 1;
    max-width: 500px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease; /* Smooth transition for all changes */
    cursor: pointer;
    position: relative;
    top: 0;
}

.turf-block:hover {
    transform: translateY(-10px); /* Slight lift effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Larger shadow */
    background: linear-gradient(to bottom, #fff, #f8f8f8); /* Subtle gradient */
}

.turf-block img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease; /* Smooth transition for image */
}

.turf-block:hover img {
    transform: scale(1.03); /* Slight zoom effect on image */
}

.turf-block h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    min-height: 3.6rem; /* Ensures title heights are consistent */
    display: flex;
    align-items: center;
    line-height: 1.2;
    transition: color 0.3s ease; /* Smooth transition for text color */
}

.turf-block:hover h3 {
    color: #8B4513; /* Brown color on hover - matches your brand */
}

.turf-block p {
    flex-grow: 1;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: #666;
}

.turf-row.centered {
    justify-content: center;
}

.turf-row.centered .turf-block {
    flex: 0 1 500px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .turf-row {
        gap: 20px;
    }
    
    .turf-block {
        padding: 20px;
    }
    
    .turf-block img {
        height: 180px;
    }
    
    .turf-block h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .turf-row {
        flex-direction: column;
        align-items: center;
    }
    
    .turf-block {
        width: 100%;
        max-width: 500px;
    }
    
    .turf-block img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .turf-block img {
        height: 160px;
    }
    
    .turf-block h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
}

/* General Styling for Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}


.testimonials h2 {
    font-family: 'Argent', sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Adjust slider to take full width of the page */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100vw; /* Full viewport width */
    margin: 0 auto;
}

.testimonial-content {
    display: inline-block;
    white-space: nowrap;
    animation: slide 30s linear infinite; /* Continuous animation */
    position: relative;
}

/* Duplicate the content to create a seamless loop */
.testimonial-content::after {
    content: attr(data-text); /* Duplicates the content inside the same element */
    display: inline-block;
    white-space: nowrap;
}

/* Testimonial items with bullet points at the start */
.testimonial-content span {
    display: inline-block;
    font-family: 'Argent', sans-serif;
    font-size: 20px;
    padding: 0 40px;
    position: relative;
    padding-left: 30px; /* Add space for the bullet */
}

/* Adding bullet points at the start of testimonials */
.testimonial-content span::before {
    content: "\2022"; /* Unicode for bullet point */
    font-size: 24px;
    color: #000;
    position: absolute;
    left: 0; /* Place bullet point to the left of the testimonial */
    top: 50%;
    transform: translateY(-50%); /* Vertically align the bullet point */
}

/* Button styling */
.testimonial-btn {
    display: block;
    width: 250px;
    margin: 40px auto;
    padding: 15px 0;
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.testimonial-btn:hover {
    background-color: #000000;
    color: #ffffff;
}


/* Keyframes for the sliding effect */
@keyframes slide {
    0% {
        transform: translateX(100vw); /* Start from just outside the right side */
    }
    100% {
        transform: translateX(-100%); /* Move to the left, disappearing after looping */
    }
    0% {
        transform: translateX(100vw); /* Start from just outside the right side */
    }
}




/* Responsive Design for Smaller Screens */
@media (max-width: 1024px) {
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonial-content {
        animation: slide 25s linear infinite;
    }

    .testimonial-content span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 24px;
    }

    .testimonial-content {
        animation: slide 20s linear infinite;
    }

    .testimonial-content span {
        font-size: 16px;
        padding: 0 30px;
    }

    .testimonial-btn {
        width: 200px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 20px;
    }

    .testimonial-content span {
        font-size: 14px;
        padding: 0 20px;
    }

    .testimonial-btn {
        width: 180px;
        font-size: 14px;
    }
}


/* General Styling for Portfolio Section */
.portfolio {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.portfolio h2 {
    font-family: 'Argent', sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Image grid styling */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .image-grid img {
        height: 280px;
    }

    .portfolio h2 {
        font-size: 28px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .image-grid img {
        height: 250px;
    }

    .portfolio h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .image-grid {
        gap: 1rem;
        padding: 0.75rem;
    }

    .image-grid img {
        height: 200px;
        border-radius: 8px;
    }

    .portfolio h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
}

/* Modal Responsiveness */
@media (max-width: 768px) {
    .modal img {
        max-width: 95%;
        max-height: 80vh;
    }
}

.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    background-color: #4b2002; /* Background color changed to black */
}

.intro-section h2 {
    font-family: 'Argent', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* Text color changed to white */
}

.intro-section p {
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff; /* Text color changed to white */
}

/* Button styling */
.intro-btn {
    display: inline-block;
    padding: 20px 100px; /* Increased padding for long width */
    background-color: #ffffff; /* Button background color is white */
    border: 2px solid #ffffff; /* White border */
    color: #000000; /* Black text */
    font-family: 'Argent', sans-serif;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.intro-btn:hover {
    background-color: #000000; /* Turn background black on hover */
    color: #ffffff; /* Turn text white on hover */
}
.contact-section {
    text-align: center; /* Centers the text */
    margin: 50px 0; /* Adds space above and below the section */
}

.contact-heading {
    font-weight: bold; /* Makes the heading bold */
    font-size: 2.5em; /* Adjust the font size as needed */
}

.contact-info {
    
    font-size: 1.2em; /* Adjust the font size for the contact info */
    margin: 10px 0; /* Adds space between sentences */
}

.hyphen {
    font-family: Arial, sans-serif; /* Fallback font for the hyphen */
    font-weight: normal;
}

.abt-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    background-color: #f9f9f9;
    margin-top: 70px;
}

.abt-content {
    text-align: center; /* Center-align text */
    max-width: 800px; /* Set a maximum width for larger screens */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px; /* Add padding for spacing */
}

@media (max-width: 600px) {
    .abt-content {
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

/* Heading Styling */
.abt-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center; /* Ensures the heading is centered */
}

/* Subtext Styling */
.abt-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: normal; /* Ensures text is not bold */
    margin-bottom: 20px;
    text-align: center; /* Centers the text */
}

/* Button Styling */
.abt-button {
    padding: 15px 50px;  /* Increased padding to make the button wider */
    border: 2px solid #4b2002;  /* Black border */
    color: #4b2002;  /* Initial text color: black */
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    text-decoration: none;
    background-color: transparent;  /* Transparent background initially */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

/* Hover effect */
.abt-button:hover {
    background-color: #000000;  /* Black background on hover */
    color: #ffffff;  /* White text on hover */
}

/* About Image */
.abt-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .abt-section {
        flex-direction: column; /* Stacks the text and image vertically on smaller screens */
        padding: 70px 20px;
    }

    .abt-content, .abt-image {
        max-width: 100%; /* Makes both text and image sections 100% width on smaller screens */
    }

    .abt-content h1 {
        font-size: 30px;
    }

    .abt-content p {
        font-size: 16px;
    }

    .abt-image {
        margin-top: 20px;
    }
}

/* About Founder Section */
.about-founder {
    padding: 50px 0;
    text-align: center;
}

.about-founder h2 {
    font-family: 'Argent', serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.about-founder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 600px) {
    .about-founder-container {
        flex-direction: row;
        justify-content: center;
    }

    .founder-image {
        margin-right: 20px;
    }
}

.founder-text {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.founder-text p {
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

/* Adjusts layout for smaller screens */
@media (max-width: 768px) {
    .about-founder-container {
        flex-direction: column;
        text-align: center;
    }
    .founder-text, .founder-image {
        max-width: 100%;
        padding: 10px;
    }
}
/* Portfolio Section Styling */
.portfolio-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 20px; /* Adjust the padding for top-bottom and sides */
    background-color: #ffffff; /* White background */
    margin-top: 100px; /* Adjust to start just below the navbar */
    max-width: 1200px; /* Limit the section's width */
    margin-left: auto; /* Center the section horizontally */
    margin-right: auto; /* Center the section horizontally */
}

/* Portfolio Left (Heading) */
.portfolio-left h2 {
    font-family: 'Argent', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

/* Portfolio Right (Paragraphs) */
.portfolio-right {
    text-align: right;
}

.portfolio-right p {
    font-family: 'Argent', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 10px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-section {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-left h2 {
        margin-bottom: 20px;
    }

    .portfolio-right {
        text-align: center;
    }
}

.serv {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.serite {
    text-align: center;
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    max-width: 150px;
}

.serite img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.serite p {
    font-size: 1em;
    font-weight: bold;
    color: #333;
    text-decoration: underline;
    margin: 0;
}

/* Responsive styling */
@media (max-width: 768px) {
    .serv {
        flex-direction: column;
        align-items: center;
    }

    .serite {
        max-width: 200px;
        margin-bottom: 20px;
    }
}





.service-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.service-card {
    flex: 1;
    max-width: 550px;
    min-width: 400px;
    perspective: 1000px;
}

.service-card-inner {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-row.centered {
    justify-content: center;
}

.service-row.centered .service-card {
    max-width: 550px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .service-row {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .service-card {
        min-width: 320px;
    }

    .service-card img {
        height: 220px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        margin-bottom: 0;
    }

    .service-card-inner {
        padding: 1rem;
    }

    .service-card img {
        height: 200px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin: 0.75rem 0;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .service-row {
        gap: 1.5rem;
        margin: 1.5rem auto;
    }

    .service-card-inner {
        padding: 0.75rem;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Image Effects and Responsiveness */
.hover-effect {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hover-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-effect:hover img {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .abt-section {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .abt-content, .abt-image {
        width: 100%;
        margin: 1rem 0;
    }

    .about-founder-container {
        flex-direction: column;
        padding: 1rem;
    }

    .founder-image, .founder-text {
        width: 100%;
        margin: 1rem 0;
    }

    .founder-image {
        max-height: 400px;
    }
}

/* Existing image styles update */
.abt-image, .founder-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
}

.abt-image img, .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-image {
    padding: 20px;
}

.instagram-float,
.facebook-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.instagram-float {
    right: 100px; /* Positions it to the left of WhatsApp button */
}

.facebook-float {
    right: 170px; /* Positions it to the left of Instagram button */
}

.instagram-float img,
.facebook-float img {
    width: 40px;
    margin-top: 10px;
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 767px) {
    .navbar-social {
        gap: 10px;
        margin-right: 15px;
    }

    .navbar-social img {
        width: 20px;
        height: 20px;
    }
    
    /* Adjust visibility when menu is toggled */
    .navbar-menu.active + .navbar-social {
        display: none;
    }
}

/* Media Query for Very Small Devices */
@media screen and (max-width: 320px) {
    .navbar-social {
        gap: 8px;
        margin-right: 10px;
    }

    .navbar-social img {
        width: 18px;
        height: 18px;
    }
}

.map-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 25px;
    width: 100%;
    height: 400px;
    border: none;
}

/* Make map responsive on mobile */
@media screen and (max-width: 768px) {
    .map-container {
        height: 300px;
        border-radius: 20px;
    }
    
    .map-container iframe {
        height: 300px;
        border-radius: 20px;
    }
}

/* Intro Section Responsive Styles */
.intro-section {
    padding: 40px 20px;
}

.intro-section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.intro-section-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.intro-section-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;  /* Limits the width for better readability */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .intro-section-content h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .intro-section-content p {
        font-size: 16px;
        padding: 0 15px;
    }
}



.logo {
    width: 200px;  /* Adjust size as needed */
    margin-bottom: 2rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.divider-line {
    height: 1px;
    background-color: #000;
    width: 100%;
    opacity: 0.2;
}

.portfolio-contact-details {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.contact-block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.portfolio-contact-info {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-block {
        padding: 15px;
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-contact-details {
        gap: 15px;
    }

    .contact-block {
        padding: 12px;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
}

.about-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4b2002;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.about-contact-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .about-contact-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

.text-background {
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the color and opacity as needed */
    padding: 20px; /* Add some padding for spacing */
    border-radius: 10px; /* Optional: for rounded corners */
}

.intro-contact-section {
    color: #4b2002; /* Change text color for all text within this section */
}

.intro-contact-section a {
    color: #4b2002; /* Ensure links also have the same color */
}

.intro-box {
    background-color: #f0f0f0; /* Background color for the box */
    border: 2px solid #d2b48c; /* Light brown border color */
    border-radius: 15px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    text-align: center; /* Center the text inside the box */
    margin: 20px 0; /* Margin for spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

.intro-box h2 {
    color: #4b2002; /* Text color for the heading */
    margin: 0; /* Remove default margin */
}

footer {
    background-color: #000000; /* Dark background */
    color: white; /* White text */
    text-align: center; /* Centered text */
    padding: 20px 0; /* Padding for spacing */
}

footer p {
    margin: 5px 0; /* Margin for spacing */
}

footer a {
    color: white; /* White links */
    text-decoration: none; /* No underline */
    margin: 0 10px; /* Margin between links */
    font-size: 18px; /* Font size */
}

footer a:hover {
    text-decoration: underline; /* Underline on hover */
}

footer i {
    margin-right: 5px; /* Space between icon and text */
}

.about-founder-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between the image and text */
}

.founder-image {
    width: 100%; /* Ensures the div spans its container */
    height: auto; /* Allows height to adjust proportionally */
    overflow: hidden; /* Hides any overflowing parts */
}

.founder-image img {
    width: 100%; /* Makes the image fit the width of the container */
    height: auto; /* Maintains the image's aspect ratio */
    object-fit: cover; /* Ensures the image covers the container fully */
    display: block; /* Removes any extra whitespace below the image */
    border-radius: 10px; /* Optional: Adds rounded corners to the image */
}
