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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory !important;
    overflow-y: scroll;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

p, li {
    color: #212529 !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
/* img{
    padding: 2px 0px;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Snap Styles */
section {
    /* scroll-snap-align: start;
    scroll-snap-stop: always; */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.active-section {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Navigation */
header {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 40px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-right: auto;
    margin-left: 40px;
}

.nav-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F77E2A;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FFF;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.menu-icon {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-line {
    width: 100%;
    height: 2px;
    background-color: #F77E2A;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-position: 50% 23%;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background-color: rgba(253, 216, 191, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    z-index: 2;
    text-align: center;
    border-radius: 8px;
}

.hero-title {
    color: rgba(1, 11, 19, 0.82);
    font-family: 'Playfair Display', serif;
    font-size: 61px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    font-style: italic;
}

.hero-title .second-line {
    display: inline-block;
    margin-top: 12px;
}

/* Typing text effect */
.typing-text {
    display: inline-block;
    position: relative;
    min-width: 10px;
}

.typing-text::after {
    content: "";
    position: absolute;
    right: -5px;
    font-weight: 500;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Section Styles (Common) */
.architecture, .interior, .construction, .process, .home-decor {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.architecture .container, .interior .container, .construction .container, .process .container, .home-decor .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    /* gap: 30px; */
    max-width: 100%;
    width: 100%;
    padding: 0;
    background-color: #fafaf9 ;
}


.architecture .section-text, .interior .section-text, .construction .section-text, .process .section-text, .home-decor .section-text {
    flex: 0 0 50%;
    padding-right: 5%;
    padding-left: 5%;
    animation: fadeIn 1s ease forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.architecture .section-text h2, .interior .section-text h2, .construction .section-text h2, .process .section-text h2, .home-decor .section-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 500;
}

.architecture .section-text h3, .interior .section-text h3, .construction .section-text h3, .process .section-text h3, .home-decor .section-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.architecture .section-text p, .interior .section-text p, .construction .section-text p, .process .section-text p, .home-decor .section-text p {
    margin-bottom: 15px;
    font-size: 16px;
    opacity: 0.85;
}

.architecture .section-text .process-list, .interior .section-text .process-list, .construction .section-text .process-list, .process .section-text .process-list, .home-decor .section-text .process-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.architecture .section-text .process-list li, .interior .section-text .process-list li, .construction .section-text .process-list li, .process .section-text .process-list li, .home-decor .section-text .process-list li {
    margin-bottom: 8px;
    font-size: 16px;
    opacity: 0.85;
}

.architecture .section-text .btn-more, .interior .section-text .btn-more, .construction .section-text .btn-more, .process .section-text .btn-more, .home-decor .section-text .btn-more {
    display: inline-block;
    margin-top: 20px;
    color: inherit;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.architecture .section-text .btn-more::after, .interior .section-text .btn-more::after, .construction .section-text .btn-more::after, .process .section-text .btn-more::after, .home-decor .section-text .btn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
}

.architecture .section-gallery, .interior .section-gallery, .construction .section-gallery, .process .section-gallery, .home-decor .section-gallery {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    height: 100vh;
}

.architecture .gallery-image, .interior .gallery-image, .construction .gallery-image, .process .gallery-image, .home-decor .gallery-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.architecture .gallery-image.large, .interior .gallery-image.large, .construction .gallery-image.large, .process .gallery-image.large, .home-decor .gallery-image.large {
    margin-bottom: 0;
}

.architecture .gallery-image img, .interior .gallery-image img, .construction .gallery-image img, .process .gallery-image img, .home-decor .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    border-top: 1px solid #F8D6BC;
    border-bottom: 1px solid #F8D6BC;
}

.architecture .gallery-image:hover img, .interior .gallery-image:hover img, .construction .gallery-image:hover img, .process .gallery-image:hover img, .home-decor .gallery-image:hover img {
    transform: scale(1.05);
}

/* Home Decor Section */
.btn-visit {
    display: inline-block;
    margin-top: 30px;
    background-color: #FF6B00;
    color: white;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 40%;
    text-align: center;
}

.btn-visit:hover {
    background-color: #e66000;
}

/* Our Profile Section */
.our-profile {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../images/profile-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    /* scroll-snap-align: start; */
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1s ease forwards;
}

.profile-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* .profile-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
} */

/* Team Member Profile Section */
.team-profile {
    padding: 0;    
    /* scroll-snap-align: start; */
    height: 200vh; /* Two 100vh sections */
    overflow: hidden;
}

.team-container {
    width: 100%;
    height: 200vh; /* Two 100vh sections */
    display: flex;
    flex-direction: column;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100vh; /* Each team member takes up full viewport height */
    position: relative;
}

.team-image img:hover {
    transition: transform 0.4s ease;
    transform: scale(1.05);
}

.section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    background-color: #fafaf9;
    animation: fadeIn 1s ease forwards;
    height: 100%;
    overflow-y: auto;
}

.team-profile h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-profile p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.85;
}

.team-image {
    height: 100%;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
    background-color: rgb(250, 250, 250);
    /* border: 1px solid black; */
    /* padding: -20px 0px !important;
    margin: -20px 0px !important; */
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}

/* Contact Us Section */
.contact-us {
    padding: 0;
    height: 100%;
    /* scroll-snap-align: start; */
}

.contact-us .container {
    display: flex;
    padding: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.map-container {
    flex: 1;
    padding: 10px 0px;
    height: 70vh;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    max-width: 50%;
    background-color: #fafaf9;
    animation: fadeIn 1s ease forwards;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-address {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
}

/* .address-icon {
    height: 60%;
} */

.contact-address p {
    margin-bottom: 0;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
    gap: 0px;
}

.social-icon, .social-icon img {
    height: 80%;
}

.social-icon:hover {
    transform: translateY(-5px);
}


/* Footer Section */
.footer {
    background-color: #f8d6bc;
    padding: 60px 0 40px;
    /* scroll-snap-align: start; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer.active-section {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 14px;
    color: #555 !important; 
    font-weight: 400;
}

/* Custom scrollbar for better visual */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(247, 127, 42, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(247, 127, 42, 0.8);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f77e2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(247, 127, 42, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: rgba(247, 127, 42, 0.8);
    transform: translateY(-3px);
}
.item-center{
    display: flex;
    align-items: center !important;
}


