.footer-contact, .footer-contact *, .footer-contact a {
    color: #fff !important;
}
html {
    scroll-behavior: smooth;
}
.slider-img,
.two-col-image img[src*="internet_school"],
.two-col-image img[src*="solar_charger"],
.two-col-image img[src*="chillnwash4"] {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.footer-links h4 {
    margin-bottom: 1rem;
}
.two-col-image img {
    max-width: 400px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #fff;
}
@media (max-width: 900px) {
    .two-col-image img {
        object-fit: contain;
    }
}
/* Two Column Section: Text Left, Image Right */
.two-col-section {
    padding: 3rem 0;
    background: #f9f9f9;
}
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.two-col-text {
    padding: 1rem 2rem;
}
.two-col-text h2 {
    margin-bottom: 1rem;
    color: #00008b;
}
.two-col-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}
.two-col-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.two-col-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
    .two-col-text, .two-col-image {
        padding: 1rem 0;
    }
    .two-col-image img {
        max-width: 100%;
    }
}
/* Image Slider and 2-Column Layout */
.slider-text-section {
    padding: 3rem 0;
    background: #f9f9f9;
}
.slider-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.slider-column {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.slider-img.active {
    opacity: 1;
    z-index: 2;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.slider-arrow:hover {
    background: rgba(0,0,0,0.7);
}
.slider-arrow-left {
    left: 10px;
}
.slider-arrow-right {
    right: 10px;
}
.text-column {
    padding: 1rem 2rem;
}
.text-column h2 {
    margin-bottom: 1rem;
    color: #00008b;
}
.text-column p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .slider-text-grid {
        grid-template-columns: 1fr;
    }
    .slider-column, .text-column {
        padding: 1rem 0;
    }
    .image-slider {
        max-width: 100%;
        height: 220px;
    }
}
/* Left align h3 and ul in project section */
#projects-hero .hero-text h3,
#projects-hero .hero-text ul {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}
/* Ensure all .vision-card .service-icon are perfect circles and uniform */
.vision-card .service-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    border-radius: 50% !important;
    background: #00008b !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    aspect-ratio: 1 / 1 !important;
}
.vision-card {
    background: #e6f0fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #fef2f2;
    min-width: 320px;
    width: 100%;
    min-height: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 2rem;
    text-align: center;
}
}
/* ...existing code... */
.service-card {
    text-align: center;
    align-items: center;
}
.service-card * {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}
}
/* Remove bullets from project section list */
#projects-hero ul {
    list-style: none;
    padding-left: 0;
}
/* Story Section 2-column layout (image left, text right) */
.story-2col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}
.story-img-col img {
    width: 100%;
    border-radius: 12px;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}
.story-text-col {
    text-align: left;
}
.footer-links {
    text-align: center;
}
.navbar {
    background: #fff;
}
/* Image Slider and 2-Column Layout */
.slider-text-section {
    padding: 3rem 0;
    background: #f9f9f9;
}
.slider-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.slider-column {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.slider-img.active {
    opacity: 1;
    z-index: 2;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.slider-arrow:hover {
    background: rgba(0,0,0,0.7);
}
.slider-arrow-left {
    left: 10px;
}
.slider-arrow-right {
    right: 10px;
}
.text-column {
    padding: 1rem 2rem;
}
.text-column h2 {
    margin-bottom: 1rem;
    color: #00008b;
}
.text-column p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .slider-text-grid {
        grid-template-columns: 1fr;
    }
    .slider-column, .text-column {
        padding: 1rem 0;
    }
    .image-slider {
        max-width: 100%;
        height: 220px;
    }
}
/* Simplified Project Slider */
.project-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
    opacity: 1;
    z-index: 2;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px 15px 15px;
    font-size: 14px;
    text-align: center;
    z-index: 3;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .project-slider {
        height: 200px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-caption {
        font-size: 12px;
        padding: 20px 10px 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-indicators {
        bottom: 10px;
        gap: 8px;
    }
}


/* Siya & Gao Holdings - Red Theme */
:root {
    --primary-color: #000000;
    --primary-dark: #00008b;
    --secondary-color: #add8e6;
    --accent-color: #00008b;
    --text-dark: #1f2937;
    --text-light: #1f2937;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2f2ac1 0%, #2f2ac1 100%);
    --shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
    --shadow-hover: 0 20px 40px rgba(239, 68, 68, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(239, 68, 68, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand img {
    height: 40px;   /* Set your desired height */
    width: auto;    /* Keeps aspect ratio */
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url('images/home_hero.jpg') top right/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ef4444" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');-->*/
    /*opacity: 0.3;*/
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    /* Add padding if needed */
}    

.hero-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.80);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.hero-content > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 900) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}
.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.building {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 120px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: build 4s ease-in-out infinite;
}

.building i {
    font-size: 3rem;
    color: white;
}

.wiring {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 60px;
    height: 80px;
    background: var(--text-dark);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wire 3s ease-in-out infinite;
}

.wiring i {
    font-size: 2rem;
    color: var(--primary-color);
}

.panel {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 60px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: panel 5s ease-in-out infinite;
}

.panel i {
    font-size: 2rem;
    color: white;
}

@keyframes build {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes wire {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes panel {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* About section two-column layout */
.about {
    background: url('images/about-hero.jpg') top left/cover no-repeat;
}

.about-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Align text in the Ownership section to the left */
#ownership .hero-text {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}
/* Make the Services section hero take up the full viewport height */
#services.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #fef2f2;
    min-width: 320px;
    width: 100%;
    min-height: 220px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #00008b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.service-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.project-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image i {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"/><circle cx="30" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="70" r="1.5" fill="white" opacity="0.1"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.scrolling-images {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    /* Optional for hiding scrollbar on Webkit browsers: */
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.scrolling-images::-webkit-scrollbar {
    height: 8px;
}
.scrolling-images::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.scroll-img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
    /* Prevent images from shrinking */
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-location {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: none;
}

/* Make Contact Hero Section full width and background image cover */
#contact-hero.hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 60vh; /* or 100vh if you want full screen height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}
.contact-item:hover,
.contact-item:hover *,
.contact-item:hover strong {
    color: #fff !important;
}
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item h4 {
    font-family: 'Merriweather', serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
    border: 1px solid #fef2f2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #00008b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #add8e6;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-services h4,
.footer-contact h4 {
    font-family: 'Merriweather', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    padding: 0.3rem 0;
    color: #d1d5db;
}

/* Align text in the footer services section to the center */
.footer-services {
    text-align: center;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

/* Align text in the footer contact section to the right */
.footer-contact {
    text-align: right;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .construction-animation {
        width: 250px;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
     ul {
            list-style-type: none; /* Removes bullets */
            margin: 0; /* Removes default margin */
            padding: 0; /* Removes default padding */
   }
} 

/* Make the footer section full width */
.footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #00008b !important;
    color: white;
    padding: 3rem 0 1rem;
    box-sizing: border-box;
}