/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: solid 8px #b47a3f;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2b2225;
    text-transform: uppercase;
}

.logo-divider {
    display: block;
    width: 120px;
    height: 2px;
    background-color: #b47a3f;
}

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

.chat-button {
    background-color: #e5d9d2;
    color: #b47a3f;
    padding: 12px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 217, 210, 0.2);
}

.chat-button:hover {
    background-color: #d4c8bf;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 217, 210, 0.4);
}

.chat-button span {
    display: inline-block;
}

/* Hero Section - Main Slider */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-left: 0;
    margin-right: 0;
}

/* Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Add overlay gradient for better text visibility */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.05) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .dot.active {
    background-color: #b47a3f;
    width: 30px;
    border-radius: 6px;
}

.slider-indicators .dot:hover {
    background-color: #b47a3f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    width: 90%;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: #e5d9d2;
    color: #b47a3f;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 217, 210, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d4c8bf;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 217, 210, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .about-wrapper {
        gap: 40px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .chat-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .hero-content {
        bottom: 100px;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .quote-section {
        min-height: 400px;
    }
    
    .quote-image img,
    .quote-content {
        height: 400px;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-section {
        padding-left: 0;
    }
    
    .about-title,
    .about-content {
        text-align: center;
    }
    
    .about-logos {
        width: 100%;
    }
    
    .brand-logo {
        max-width: 180px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .completed-projects-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
    }
    
    .footer-addresses {
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        bottom: 80px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .chat-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Additional Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure hero section is visible from the start */
body {
    padding-top: 0;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b47a3f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a06e35;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #b47a3f #f1f1f1;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-section {
    flex: 1;
    padding-left: 40px;
}

.about-title {
    font-size: 3rem;
    font-weight: 400;
    color: #2b2225;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content {
    text-align: left;
}

.about-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.brand-logo {
    width: 100%;
    max-width: 200px;
}

.main-logo {
    max-width: 250px;
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Footer Section */
.footer-section {
    background-color: #e5d9d2;
    color: #2b2225;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-addresses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.address-item {
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.address-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.address-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2225;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.address-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #2b2225;
    margin-bottom: 0;
}

.footer-email {
    font-size: 0.95rem;
    color: #2b2225;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Ongoing Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: #2b2225;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card.animate:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.project-type {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #b47a3f;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b2225;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.project-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-brochure {
    display: block;
    padding: 12px 30px;
    background-color: #e5d9d2;
    color: #b47a3f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: auto;
}

.btn-brochure:hover {
    background-color: #d4c8bf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 217, 210, 0.3);
}

/* Completed Projects Section */
.completed-projects-section {
    padding: 100px 0;
    background-color: #fff;
}

.completed-projects-section .section-title {
    font-size: 3rem;
    font-weight: 400;
    color: #2b2225;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Quote Section */
.quote-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.quote-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.quote-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.quote-content {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 40px;
}

.quote-text {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    max-width: 900px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive - Projects & About Sections */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .footer-addresses {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-section {
        padding-left: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo {
        width: 100%;
    }
    
    .footer-addresses {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .address-item {
        text-align: center;
    }
    
    .footer-contact {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .about-title {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-logos {
        width: 100%;
    }
    
    .brand-logo {
        max-width: 180px;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .completed-projects-section {
        padding: 60px 0;
    }
    
    .quote-section {
        min-height: 400px;
    }
    
    .quote-image img,
    .quote-content {
        height: 400px;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-info {
        padding: 25px;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .about-wrapper {
        gap: 30px;
    }
    
    .brand-logo {
        max-width: 140px;
    }
    
    .main-logo {
        max-width: 160px;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .address-item h4 {
        font-size: 1rem;
    }
    
    .address-item p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }
    
    .projects-section {
        padding: 50px 0;
    }
    
    .completed-projects-section {
        padding: 50px 0;
    }
    
    .quote-section {
        min-height: 350px;
    }
    
    .quote-image img,
    .quote-content {
        height: 350px;
    }
    
    .quote-content {
        padding: 0 20px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
    
    .btn-brochure {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
