@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

a, p {
    text-decoration: none;
    color: unset;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.6;
}

.custom-container {
    width: 87%;
    margin: auto;
}

h2 {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.common-h2 h2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.common-h2 p {
    padding-top: 1rem;
    width: 100%;
    max-width: 640px;
}

header {
    width: 100%;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #1E1D1D;
}

header .custom-container {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    position: relative;
    z-index: 103;
}

.logo img {
    width: 100px;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #1E1D1D;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.header.open .nav-menu {
    transform: translateY(0);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-contact {
    padding: 0.4rem 1.6rem;
    border: 1px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background-color: white;
    color: black;
}

.hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    height: 19px;
    gap: 7px;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 103;
    transition: all 0.3s ease;
}

.header.open .hamburger {
    gap: 1px;
}

.hamburger span {
    width: 19px;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header.open .hamburger span:nth-child(1) {
    width: 18px;
    transform: rotate(45deg) translate(2px, 1px);
}

.header.open .hamburger span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, 0px);
}

.hero-section {
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #1E1D1D;
    color: #fff;
    background-image: url('../image/Pic-to-Naveen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .custom-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 7vw;
    font-weight: 300;
    line-height: 1.2;
}

.about-section {
    width: 100%;
    padding: 6rem 0;
    background-color: #fff;
    color: #000;
}

.about-section .custom-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-lft h2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.marquee-section {
    padding: 0 0 2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 2rem;
    display: flex;
    align-items: center;
}

.marquee-item span {
    margin: 0 0 0.5rem 3rem;
    font-size: 2rem;
}


.service-section {
    width: 100%;
    padding: 6rem 0;
    background-color: #1E1D1D;
    color: #fff;
}

.service-section .custom-container > h2 {
    margin-bottom: 4rem;
}

.service-list {
    width: 100%;
}

.service-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid #6D6464;
}

.service-list .service-item:first-child {
    border-top: 1px solid #6D6464;
}

.service-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b7082;
}

.service-name {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.service-description {
    line-height: 1.6;
    color: #8d8d8d;
}

.work-section {
    width: 100%;
    padding: 6rem 0;
}

.work-section .custom-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.work-gallery {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.work-item {
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-item div {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin: 1rem;
}

.work-item div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.work-item h3 {
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-section {
    background-color: #f5f5f5;
    width: 100%;
    padding: 6rem 0;
}

.blog-section .custom-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-list {
    display: flex;
    gap: 1.5rem 1rem;
    flex-wrap: wrap;
}

.blog-item {
    width: calc(50% - 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    color: #fff;
    border-radius: 0.5rem;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.blog-item div {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.8rem;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.blog-item h3 {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-item a {
    font-size: 0.75rem;
    text-decoration: underline;
}

.footer {
    background-color: #1E1D1D;
    color: #fff;
}

.footer-contact {
    padding: 6rem 0 4rem;
}

.footer-contact h2 {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-contact .custom-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-contact-lft {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-contact-lft p {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

.footer-contact-lft img {
    width: 180px;
}

.footer-contact-ryt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-ryt div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-social div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-contact-social div img {
    width: 1.2rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    color: #8d8d8d;
}

.footer-bottom .custom-container {
    padding: 1rem 0;
    border-top: 1px solid #6D6464;
}

/* --- Enquiry Form Section --- */
.enquiry-section {
    padding: 6rem 0;
}

.enquiry-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem auto;
}

.enquiry-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enquiry-header p {
    color: #8d8d8d;
    font-size: 1rem;
}

.enquiry-form {
    max-width: 42rem;
    margin: 0 auto;
}

.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
    border: none;
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: #f5f5f5;
    color: #1E1D1D;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

.form-textarea {
    resize: vertical;
}

.enquiry-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #D72C6C 0%, #6194C4 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    border-radius: 0.375rem;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
}

.enquiry-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1.2rem; /* Prevents layout shift */
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
    border: 1px solid #ef4444;
}

.form-input.is-invalid:focus {
    outline: 1px solid #ef4444;
}