@font-face {
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: 400;
    src: local('Gilroy-Bold'), url('../fonts/Gilroy-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy-Heavy';
    font-style: normal;
    font-weight: 400;
    src: local('Gilroy-Heavy'), url('../fonts/Gilroy-Heavy.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy-Light';
    font-style: normal;
    font-weight: 400;
    src: local('Gilroy-Light'), url('../fonts/Gilroy-Light.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy-Medium';
    font-style: normal;
    font-weight: 400;
    src: local('Gilroy-Medium'), url('../fonts/Gilroy-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: 400;
    src: local('Gilroy-Regular'), url('../fonts/Gilroy-Regular.woff') format('woff');
}



body {
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    padding: 0;
    color: #4d4d4d;
    overflow-x: hidden;
    background-color: #fefcf5;
}

.category {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}


@font-face {
    font-family: "Posterama 2001 W04 Light";
    src: url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.eot");
    src: url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/5c6682d0f00a759d2d735c090a6900fe.svg#Posterama 2001 W04 Light")format("svg");
}


.headline {
    font-size: 56px;
    line-height: 1.2;
    color: #6d6a57;
    font-family: 'Gilroy-Medium', sans-serif;
}




.header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #000;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	/*margin-top: 50px;*/
}

.header .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.header-link {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    transition: opacity 0.3s ease-in-out;
}

.brand-name {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
    text-align: center;
    flex: 1;
	font-family: "Posterama 2001 W04 Light";
}

/* Default styles (Desktop View) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000000;
}

.header .brand-name {
    display: block;  /* Desktop view me show */
    font-size: 24px;
    font-weight: bold;
}

.header .home-link {
    display: block;  /* Desktop view me show */
    font-family: 'Gilroy-Medium', sans-serif;
}

.header .menu-btn {
    display: block;
    font-family: 'Gilroy-Medium', sans-serif;
}

/* Mobile View Fix (max-width: 768px) */
@media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: flex-start; /* Brand ko left side pe rakhne ke liye */
        align-items: center;
        position: relative;
        padding: 15px;
    }

    .header .home-link {
        display: none !important; /* Home link mobile me hide hoga */
    }

    .header .menu-btn {
        position: absolute;
        right: 15px; /* Menu button right me rahega */
    }

    .header .brand-name {
        display: block !important;
        text-align: left; /* Text ko left align kiya */
        font-size: 24px;
        font-weight: bold;
        width: auto; /* Auto width taaki left side align ho */
        padding-left: 10px; /* Thoda left side ka spacing */
    }
}


/* Mobile Logo */
.mobile-logo {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    z-index: 21;
}

.mobile-logo.hidden {
    display: none;
}

/* Menu Styling */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #a8a58c;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 20;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.menu a:hover {
    text-decoration: underline;
}

/* Show menu when active */
.menu.active {
    right: 0;
}

/* Close button styling */
.menu-btn.close {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    z-index: 21;
    display: none;
}

.menu.active + .menu-btn.close {
    display: block;
}


.header-link {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}



/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}




/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Shadow (Only on Image, Not on Text) */
.hero-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* Gradient Effect */
    z-index: 5; /* Keeps it below the text */
}


.hero-container1 {
    position: relative;
    width: 100%;
    height: 40vh; /* Adjust as per need */
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: flex-start; /* Align content to the left */
    padding: 100px 10%; /* Top padding for header spacing and left/right spacing */
}

/* Ensure text inside hero section is properly aligned */
.overlay {
    text-align: left; /* Left-align text */
    max-width: 60%; /* Adjust width to control text block */
    color: #333; /* Adjust text color if needed */
    padding: 50px 0;
}

/* Responsive Fix for Mobile */
@media screen and (max-width: 768px) {
    .hero-container1 {
        height: auto; /* Auto height for better mobile adjustment */
        padding: 120px 5% 40px; /* Adjusted padding for mobile */
    }

    .overlay {
        max-width: 90%; /* Increase text block width */
        text-align: left; /* Keep text aligned to the left */
    }

    .headline {
        font-size: 22px; /* Adjust font size */
    }
}





/* Hide Projects Link */
.projects.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .brand-name {
        display: none; /* Default brand name hidden on mobile */
    }
}

h1, h3 {
    font-family: 'Gilroy-Regular', sans-serif;
    font-weight: 700;
}


h6 {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 25px;
    color: #fff;
}


h4, h5 {
   font-family: 'Gilroy-Medium', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #a8a58c;
    text-align: left;
    padding-top: 15px;
}

.text h2{
	font-family: 'Gilroy', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Gilroy-Regular', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #68584A;
}


/* Slider styles */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100vh;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centered-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

.centered-content h1 {
    font-size: 48px;
    margin: 0;
}

.centered-content p {
    font-size: 18px;
    margin: 10px 0 0;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo img {
    height: 50px;
}

.scroll-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 5px;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}




.first-content {
    padding: 50px 15px;
    background-color: #fefcf5;
}

.text h2 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 500;
    padding: 0 15px;
    font-family: 'Gilroy-Medium', sans-serif;
}

.divider {
    background-color: #ccc;
    width: 1px;
    height: auto;
}

.side-text {
    border-left: 1px solid;
    padding-top: 60px;
    padding-left:35px;
}

.side-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.side-text1 {
    border-left: 1px solid;
    padding-left:35px;
}

.side-text1 p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.action {
    background-color: #a8a58c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
}

.action:hover {
    background-color: #8e8a78;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }

    .text h2 {
        font-size: 28px;
        padding: 0;
    }

    .side-text {
        margin-top: 20px;
    }
}

.second-content {
    padding: 30px 0;
    background-color: #fefcf5;
}

.heading-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.nav-buttons button {
    background-color: #a8a58c;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.nav-buttons button:hover {
    background-color: #8e8a78;
}

.work-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.work-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.work-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
/*    text-align: center;
*/    transition: transform 0.3s ease-in-out;
}

.work-slide img {
    width: 100%;
    height: auto;
    /*border-radius: 10px;*/
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.work-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.work-slide h3 {
    font-size: 18px;
    margin-top: 10px;
}

.work-slide a {
    text-decoration: none;
    color: #a8a58c;
    font-size: 14px;
    font-family: 'Gilroy-Regular', sans-serif;
}

@media (max-width: 768px) {
    .work-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.why-choose-us {
    padding: 40px 20px;
    background-color: #7C7B63;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}

.box, .box1 {
    border-radius: 12px;
    padding: 35px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
    height: 300px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-in-out forwards;
}

.box {
    animation-delay: 0.2s;
    border: 2px solid #dcdcdc;
}

.box1 {
    animation-delay: 0.4s;
    border: 2px solid #dcdcdc;
}

.box h3,
.box1 h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Gilroy-Regular', sans-serif;
    color: #fff;
    font-weight: 530;
}

.box p,
.box1 p {
    font-size: 17px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.box span,
.box1 span {
    font-size: 24px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-weight: bold;
    display: block;
    text-align: right;
    line-height: 1.2;
}

.box:hover,
.box1:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .row.position-relative::before {
        display: none;
    }
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust max width as needed */
    margin: 20px auto; /* Center the container */
    overflow: hidden;
    border-radius: 12px; /* Adds rounded corners to the rectangle */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
}

.responsive-image {
    width: 100%; /* Make the image responsive */
    transition: transform 0.5s ease, filter 0.5s ease; /* Animation effects */
}

.image-container:hover .responsive-image {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
    filter: brightness(90%); /* Darken the image slightly */
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.responsive-image {
    animation: fadeIn 1s ease-out; /* Add fade-in animation */
}

/* testimonials*/

 .testimonials-section {
        padding: 50px 20px;
        background-color: #fefcf5;
    }

    .testimonials-section h2 {
        text-align: center;
        font-size: 28px;
        color: #6d6a57;
        margin-bottom: 20px;
    }

    .testimonials-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .testimonials-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        box-sizing: border-box;
        padding: 20px;
        background-color: transparent;
        border-radius: 0;
        text-align: center;
        box-shadow: none;
        margin: 0;
        border: 2px solid #7C7B63;
    }

    .testimonial + .testimonial {
        border-left: none;
    }

    .testimonials-wrapper .testimonial:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .testimonials-wrapper .testimonial:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .testimonial h3 {
       font-size: 15px;
        color: #532a00;
        margin: 30px 0;
        font-weight: 400;
        text-align: left;
    }

    .testimonial p {
        font-size: 25px;
        line-height: 1.6;
        color: #532a00;
        margin-bottom: 20px;
        text-align: left;
    }

    .testimonial span {
        font-size: 16px;
        color: #532a00;
        display: block;
        font-family: 'Gilroy', sans-serif;
        text-align: left;
        font-weight: 530;
    }

    .testimonial small {
        font-size: 14px;
        color: #532a00;
        float: left;
    }

    @media (max-width: 768px) {
        .testimonial {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
    
    
    /* testimonials */

.contact-section {
    background-color: #7c7b63;
    padding: 50px 20px;
}

.contact-info {
    color: #fff;
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #dcdcdc;
}

.contact-info p {
    font-size: 43px;
    line-height: 1.3;
    padding: 30px 0;
	color: #cfc8af;
    margin-bottom: 20px;
}

.contact-info strong {
    color: #fff;
}

.email-link {
    display: inline-block;
    font-size: 16px;
    color: #cfc8af;
    text-decoration: none;
    border: 1px solid #cfc8af;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.email-link:hover {
    background-color: #dcdcdc;
    color: #a8a58c;
}

.contact-form {
    /*background-color: #6d6a57;*/
    padding: 30px;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfc8af;
    border-radius: 5px;
    background-color: #ffffff00;
    font-size: 14px;
    color: #cfc8af;
}

input::placeholder {
    color: #CECDC8;
}

textarea::placeholder {
    color: #CECDC8;
}

input:focus::placeholder {
    color: #CECDC8;
}

textarea {
    resize: none;
    height: 100px;
}

button {
    padding: 10px;
    background-color: #fefcf5;
    color: #6d6a57;
    border: none;
    
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #dcdcdc;
    color: #a8a58c;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
}

.footer-section {
    background-color: #fefcf5;
    color: #4d4d4d;
    padding: 50px 20px;
}

.footer-link h4 {
    font-size: 22px;
    color: #68584A;
        font-family: 'Gilroy-Regular', sans-serif;
        font-weight: normal;
    margin-bottom: 5px;
}

.footer-link p {
    font-size: 17px;
    color: #7C7B63;
    margin: 0;
}

.logo-footer {
    font-size: 78px;
    font-weight: bold;
    color: #4d4d4d;
    text-transform: uppercase;
    letter-spacing: 38px;
    text-align: center;
    margin: 0;
    padding: 30px 0;
    word-wrap: break-word;
	font-family:"Posterama 2001 W04 Light";
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #6d6a57;
    border-top: 1px solid #dcdcdc;
    padding-top: 20px;
	
}

.center-container {
    margin: 0 auto;
    display: block;
}

.footer-link-bottom {
    color: #4d4d4d;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Gilroy-Regular', sans-serif;
}

.footer-link-bottom:hover {
    color: #6d6a57;
}

@media (max-width: 768px) {
    .footer-link {
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-footer {
        font-size: 36px;
        letter-spacing: 5px;
        padding: 20px 0;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Styling for the container */
.second-content {
    padding: 30px 15px;
}



/* Grid layout for projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Space between columns */
    justify-items: center;
    align-items: start;
}

/* Individual project card styling */
.project-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-right: 20px;
	margin-bottom: 20px;
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
}

.project-card h3 {
    font-size: 18px;
    color: #7C7B63;
    margin: 10px 0 0 0;
    font-family: 'Gilroy-Medium', sans-serif;
    
}

.project-card a {
    display: inline-block;
    color: #a8a58c;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Gilroy-Regular', sans-serif;
}

.project-card a:hover {
    text-decoration: underline;
}

/* Hover effects for the project card */
.project-card:hover {
    transform: scale(1.05);
}

/* Responsive design for smaller screens */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 576px) {
    .project-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
}
