:root {
    --navy-blue: #0A2647;
    --dark-blue: #144272;
    --steel-blue: #205295;
    --light-blue: #2C74B3;
    --warm-gold: #D4AF37;
    --light-gold: #F4E4A6;
    --soft-green: #4CAF50;
    --charcoal: #2C2C2C;
    --dark-gray: #4A4A4A;
    --medium-gray: #7D7D7D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --warm-beige: #F5F1EA;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.logo i {
    margin-right: 10px;
    color: var(--warm-gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: rgb(0, 0, 0);
    font-weight: bold;
}

nav ul li a.active {
    color: rgb(3, 3, 3);
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--warm-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 95vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

/* Slideshow Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.92)),
        url("../image/house1.jpg");
    background-size: cover;
    background-position: center;
    animation: slideshow 5s infinite;
    z-index: -1;
}

@keyframes slideshow {
    0%, 25% {
        background-image: 
            linear-gradient(rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.92)),
            url("../image/house1.jpg");
    }
    26%, 50% {
        background-image: 
            linear-gradient(rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.92)),
            url("../image/house2.jpg");
    }
    51%, 75% {
        background-image: 
            linear-gradient(rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.92)),
            url("../image/house3.jpg");
    }
    76%, 100% {
        background-image: 
            linear-gradient(rgba(10, 38, 71, 0.85), rgba(10, 38, 71, 0.92)),
            url("../image/house4.jpg");
    }
}

.hero-content {
    max-width: 850px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Introduction Section */
.intro-section {
    padding: 20px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--warm-gold);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.highlight-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--soft-green);
}

.highlight-box p {
    font-style: italic;
    color: var(--dark-gray);
    margin: 0;
}

.intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Why Choose Us Section */
.choose-section {
    padding: 10px 0;
    background-color: var(--warm-beige);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    border-top: 4px solid var(--warm-gold);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 42px;
    color: var(--steel-blue);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before, .testimonial-text::after {
    content: '"';
    color: var(--warm-gold);
    font-size: 24px;
    font-weight: bold;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--warm-gold);
    background-color: var(--steel-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    color: var(--navy-blue);
}

.client-project {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Page Content Styles */
.page-content {
    padding: 85px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 42px;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--warm-gold);
}

.page-header p {
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
    color: var(--medium-gray);
}

/* About Page */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.founder-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.founder-info p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    margin-top: 60px;
}

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 42px;
    color: var(--warm-gold);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.company-section {
    padding: 50px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
    border-left: 4px solid var(--steel-blue);
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--steel-blue);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-card i {
    margin-right: 15px;
    color: var(--steel-blue);
    font-size: 24px;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.services-company {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 100%);
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
    color: var(--white);
}

.services-company h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
}

.services-company h2 i {
    color: var(--warm-gold);
    margin-right: 15px;
}

.services-company ul {
    margin-left: 20px;
    margin-top: 20px;
    list-style-type: none;
}

.services-company ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.services-company ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-weight: bold;
}

/* Projects Page */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: var(--white);
    transition: all 0.3s ease;
}

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

.project-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.project-info {
    padding: 30px;
    background-color: var(--white);
}

.project-tag {
    display: inline-block;
    background-color: var(--soft-green);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-tag.ongoing {
    background-color: var(--light-blue);
}

.project-tag.completed {
    background-color: var(--medium-gray);
}

.project-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Process Page */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--steel-blue), var(--warm-gold));
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-right: 40px;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(32, 82, 149, 0.3);
}

.step-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    border-left: 4px solid var(--warm-gold);
}

.quality-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
    padding: 60px;
    border-radius: 8px;
    color: var(--white);
}

.quality-section h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.quality-section ul {
    margin-left: 20px;
    margin-top: 20px;
}

.quality-section ul li {
    margin-bottom: 6px;
    padding-left: 10px;
    line-height: 1.5;
}

.quality-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-size: 24px;
    line-height: 1;
}

/* Joint Ventures Page */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 32px;
    color: var(--warm-gold);
    margin-right: 25px;
    flex-shrink: 0;
}

.partnership-cta {
    text-align: center;
    padding: 70px 60px;
    background: linear-gradient(rgba(10, 38, 71, 0.85), rgba(7, 34, 65, 0.92)), url('../image/house7.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partnership-cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--steel-blue);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 20px;
    color: var(--warm-gold);
    margin-right: 20px;
    width: 30px;
    margin-top: 3px;
}

/* Add these styles for phone and email links */
.mobile, .office, .email {
    color: #0066cc; /* Blue color for links */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile:hover, .office:hover, .email:hover {
    color: #000000; /* Darker blue on hover */
    text-decoration: underline;
}

/* Ensure phone numbers in contact section are styled */
.contact-detail a.mobile,
.contact-detail a.office,
.contact-detail a.email {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-detail a.mobile:hover,
.contact-detail a.office:hover,
.contact-detail a.email:hover {
    color: #2850a7c4;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--steel-blue);
    box-shadow: 0 0 0 2px rgba(44, 116, 179, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

/* Simple Footer Logo Effects */
.footer-logo {
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #f4f5f5);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(10, 38, 71, 0.2);
    transition: all 0.4s ease;
}

.footer-logo .logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(10, 38, 71, 0.3);
}

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

.footer-logo .logo-image:first-child:hover {
    transform: scale(1.1) rotate(2deg);
}

.footer-logo .logo-image:last-child:hover {
    transform: scale(1.1) rotate(-2deg);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--warm-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--warm-gold);
}

/* Add these styles to remove underline from footer links */
footer .mobile:hover,
footer .office:hover,
footer .email:hover {
    text-decoration: none !important; /* Remove underline on hover */
}

/* Also ensure default state has no underline in footer */
footer .mobile,
footer .office,
footer .email {
    text-decoration: none !important;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--light-gold);
}

/* Page Navigation */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .intro-content,
    .founder-section,
    .services-grid,
    .projects-grid,
    .contact-container,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: auto;
        background-color: var(--off-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Logo Responsive */
    .logo-image {
        height: 45px;
        max-width: 120px;
    }
    
    .footer-logo .logo-image {
        height: 40px;
        max-width: 100px;
    }
    
    /* Layout adjustments */
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Text adjustments */
    .hero h1 {
        font-size: 36px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 30px;
    }
    
    .hero {
        height: 85vh;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    /* Logo adjustments for very small screens */
    .logo-image {
        height: 40px;
        max-width: 100px;
    }
    
    .footer-logo .logo-image {
        height: 35px;
        max-width: 90px;
    }
    
    .footer-logo .logo {
        padding: 8px 15px;
        gap: 8px;
    }
    
    /* Other adjustments */
    .hero h1 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .service-card,
    .company-section,
    .services-company,
    .quality-section,
    .partnership-cta {
        padding: 30px 20px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    /* Mobile menu button spacing */
    .mobile-menu-btn {
        margin-left: 10px;
    }
}

    /* Projects Page Styles */

    #projects.page {
        padding: 80px 0;
        background-color: #f8fafc;
    }

    #projects .page-content {
        width: 100%;
    }

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

    #projects .page-header {
        text-align: center;
        margin-bottom: 60px;
    }

    #projects .page-header h1 {
        font-size: 2.5rem;
        color: #0c1e3d;
        margin-bottom: 15px;
        font-weight: 700;
    }

    #projects .page-header p {
        font-size: 1.1rem;
        color: #4a5568;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    #projects .section-title {
        margin-bottom: 30px;
        color: #2c5282;
        font-size: 1.8rem;
        font-weight: 600;
    }

    #projects .section-title.earlier-projects {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    /* Project Tabs */
    #projects .project-tabs {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
    }

    #projects .project-tab {
        padding: 12px 30px;
        background-color: #f0f0f0;
        color: #333;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    #projects .project-tab.active {
        background-color: #2c5282;
        color: white;
    }

    #projects .project-tab:hover {
        background-color: #e0e0e0;
    }

    #projects .project-tab.active:hover {
        background-color: #1a365d;
    }

    /* Project Tab Panes */
    #projects .project-tab-pane {
        display: none;
    }

    #projects .project-tab-pane.active {
        display: block;
    }

    /* Featured Project Cards */
    #projects .project-card.featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
    }

    #projects .project-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    #projects .project-image {
        height: 400px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.5s ease;
    }

    #projects .project-image:hover {
        transform: scale(1.03);
    }

    #projects #presto-image {
        background-image: url('../image/apartment.jpg');
    }

    #projects #lakeside-image {
        background-image: url('../image/house3.jpg');
    }

    #projects #orchid-image {
        background-image: url('../image/apartment1.jpg');
    }

    #projects #house-image {
        background-image: url('../image/house5.jpg');
    }

    #projects .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.3));
        pointer-events: none;
    }

    /* Project Info */
    #projects .project-info {
        padding: 20px;
    }

    #projects .project-tag {
        display: inline-block;
        padding: 6px 16px;
        color: white;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #projects .project-tag.ongoing {
        background-color: #2c5282;
    }

    #projects .project-tag.ready {
        background-color: #38a169;
    }

    #projects .project-tag.completed {
        background-color: #38a169;
    }

    #projects .project-info h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #2d3748;
        font-weight: 600;
    }

    #projects .project-details-text {
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 25px;
        font-size: 1rem;
    }

    #projects .project-details-grid {
        display: grid;
        gap: 12px;
        margin-bottom: 25px;
    }

    #projects .detail-item {
        display: flex;
        align-items: flex-start;
    }

    #projects .detail-label {
        min-width: 100px;
        font-weight: 600;
        color: #4a5568;
        flex-shrink: 0;
    }

    #projects .detail-value {
        color: #4a5568;
        line-height: 1.5;
    }

    /* Project Buttons */
    #projects .project-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    #projects .btn {
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
        border: none;
        cursor: pointer;
    }

    #projects .btn-primary {
        background-color: #2c5282;
        color: white;
    }

    #projects .btn-primary:hover {
        background-color: #1a365d;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    #projects .btn-next {
        background-color: #38a169;
        color: white;
    }

    #projects .btn-next:hover {
        background-color: #2f855a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    #projects .btn-prev {
        background-color: #38a169;
        color: white;
    }

    #projects .btn-prev:hover {
        background-color: #2f855a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    #projects .btn-outline {
        padding: 10px 20px;
        border: 2px solid #2c5282;
        color: #2c5282;
        background: transparent;
    }

    #projects .btn-outline:hover {
        background-color: #2c5282;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Projects Grid for Earlier Projects */
    #projects .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    #projects .projects-grid .project-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

    #projects .projects-grid .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    #projects .projects-grid .project-image {
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        #projects .project-card.featured {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        #projects .project-image {
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        #projects .project-tabs {
            flex-direction: column;
        }
        
        #projects .project-tab {
            width: 100%;
            text-align: center;
        }
        
        #projects .projects-grid {
            grid-template-columns: 1fr;
        }
        
        #projects .page-header h1 {
            font-size: 2rem;
        }
        
        #projects .section-title {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        #projects .project-buttons {
            flex-direction: column;
        }
        
        #projects .btn {
            width: 100%;
            justify-content: center;
        }
        
        #projects .detail-item {
            flex-direction: column;
            gap: 5px;
        }
        
        #projects .detail-label {
            min-width: auto;
        }
    }

    /* Force mobile menu button to top right */
    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 2000;
    }

    /* Fix for mobile button overlapping */
    .hero-content div {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 30px;
    }


    /* Simple background effect */
    .header-container .logo {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Or with a solid color */
    .header-container .logo {
        background-color: #f8f9fa;
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgb(243, 221, 27);
    }