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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll during animations */
}

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

/* Navigation Styles with Logo Colors */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.nav-logo h2 {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(33, 150, 243, 0.3));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    animation: navItemSlide 0.6s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

@keyframes navItemSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Video Section with Logo Colors */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(76, 175, 80, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8f9fa" width="1200" height="800"/><text x="600" y="400" text-anchor="middle" font-size="48" fill="%23666">Construction Video Background</text></svg>');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7), rgba(76, 175, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: heroContentRise 1.2s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes heroContentRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    animation: titleGlow 1.5s ease forwards;
}

@keyframes titleGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
        text-shadow: none;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    animation: subtitleSlide 1s ease forwards 0.5s;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes subtitleSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.3);
    text-decoration: none;
    display: inline-block;
    animation: buttonBounce 1s ease forwards 1s, buttonPulse 2s ease-in-out infinite 2s;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes buttonBounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    60% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 5px 20px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(76, 175, 80, 0.5);
    }
    100% {
        box-shadow: 0 5px 20px rgba(33, 150, 243, 0.3);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.5);
}

/* index Projects Section with Logo Colors */
.index-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(76, 175, 80, 0.03));
}

.index-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionTitleRise 0.8s ease forwards;
}

@keyframes sectionTitleRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-projects h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    display: block;
    margin: 20px auto 50px;
    transform: scaleX(0);
    animation: underlineExpand 0.6s ease forwards 0.5s;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.index-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.index-project-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: projectItemRise 0.6s ease forwards;
}

.index-project-item:nth-child(1) { animation-delay: 0.2s; }
.index-project-item:nth-child(2) { animation-delay: 0.4s; }
.index-project-item:nth-child(3) { animation-delay: 0.6s; }
.index-project-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes projectItemRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-project-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.index-project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.index-project-item:hover img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    transform: translateX(-20px);
    opacity: 0;
    animation: projectInfoSlide 0.5s ease forwards 0.3s;
}

.project-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    transform: translateX(-20px);
    opacity: 0;
    animation: projectInfoSlide 0.5s ease forwards 0.5s;
}

@keyframes projectInfoSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Services Preview Section with Logo Colors */
.services-preview {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2196F3, #4CAF50, transparent);
    animation: wave 3s linear infinite;
}

@keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    animation: servicesTitleZoom 0.8s ease forwards;
}

@keyframes servicesTitleZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.services-preview h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    display: block;
    margin: 20px auto 50px;
    transform: scaleX(0);
    animation: underlineExpand 0.6s ease forwards 0.5s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotateY(90deg);
    animation: serviceCardFlip 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }
.service-card:nth-child(5) { animation-delay: 0.9s; }

@keyframes serviceCardFlip {
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.3), rgba(76, 175, 80, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .service-image::after {
    left: 100%;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Successful Projects Section with Logo Colors */
.services-preview2 {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(76, 175, 80, 0.03));
    position: relative;
}

.services-preview2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 4s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.services-preview2 h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleBounce 1s ease forwards;
}

@keyframes titleBounce {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-preview2 h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    display: block;
    margin: 20px auto 50px;
    transform: scaleX(0);
    animation: underlineExpand 0.8s ease forwards 0.5s;
}

.services-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card2 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-50px);
    animation: projectCard2Slide 0.8s ease forwards;
}

.service-card2:nth-child(odd) {
    animation-delay: 0.2s;
}

.service-card2:nth-child(even) {
    transform: translateX(50px);
    animation-delay: 0.4s;
}

@keyframes projectCard2Slide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

.services-grid2 .service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.services-grid2 .service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card2:hover .service-image::before {
    opacity: 1;
}

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

.service-card2:hover .service-image img {
    transform: scale(1.05);
}

.service-card2 h3 {
    padding: 25px 25px 10px;
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeUp 0.6s ease forwards 0.8s;
}

.service-card2 p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
    flex-grow: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: contentFadeUp 0.6s ease forwards 1s;
}

@keyframes contentFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us Section with Logo Colors */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(76, 175, 80, 0.03));
    position: relative;
    overflow: hidden;
}

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

.text-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: textContentSlide 1s ease forwards;
}

@keyframes textContentSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    animation: titleZoomIn 0.8s ease forwards 0.3s;
}

@keyframes titleZoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.text-content ul {
    list-style: none;
}

.text-content li {
    margin: 20px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    opacity: 0;
    transform: translateX(-30px);
    animation: listItemSlide 0.5s ease forwards;
}

.text-content li:nth-child(1) { animation-delay: 0.5s; }
.text-content li:nth-child(2) { animation-delay: 0.7s; }
.text-content li:nth-child(3) { animation-delay: 0.9s; }
.text-content li:nth-child(4) { animation-delay: 1.1s; }
.text-content li:nth-child(5) { animation-delay: 1.3s; }

@keyframes listItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-content i {
    color: #2196F3;
    font-size: 1.2rem;
    width: 20px;
    animation: iconBounce 0.6s ease infinite alternate;
}

@keyframes iconBounce {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

.image-content {
    opacity: 0;
    transform: translateX(50px);
    animation: imageContentSlide 1s ease forwards 0.5s;
}

@keyframes imageContentSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.1);
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.image-content:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* Floating Elements Animation with Logo Colors */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 50px;
    height: 50px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Page Styles with Logo Colors */
.about-hero,
.contact-hero,
.gallery-hero {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1,
.contact-hero h1,
.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p,
.contact-hero p,
.gallery-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.about-content {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.about-text h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    display: block;
    margin: 20px auto;
}

.about-text p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 600;
}

.services-detail h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    display: block;
    margin: 20px auto;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detail {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(76, 175, 80, 0.03));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-detail i {
    font-size: 3rem;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-detail p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Contact Page Styles with Logo Colors */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-btn {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Gallery Page Styles with Logo Colors */
.gallery-content {
    padding: 80px 0;
    background: white;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(76, 175, 80, 0.03));
    color: #333;
    border: 2px solid #e1e5e9;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    border-color: #2196F3;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f8f9fa;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(33, 150, 243, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 14px;
}

/* Category Indicators with Logo Colors */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item.concrete::before {
    background: #2196F3;
}

.gallery-item.formwork::before {
    background: #4CAF50;
}

.gallery-item.foundation::before {
    background: #007bff;
}

.gallery-item.structural::before {
    background: #ffc107;
}

.gallery-item.building::before {
    background: #6f42c1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2196F3;
}

.modal-caption {
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(76, 175, 80, 0.8));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.success-content p {
    margin-bottom: 25px;
    color: #666;
}

.success-content button {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.success-content button:hover {
    transform: translateY(-2px);
}

/* Send Options Modal Styles */
.send-options-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.send-options-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s ease forwards;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.send-options-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.send-options-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.send-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.send-btn {
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.send-btn:active {
    transform: translateY(0);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #D33B2C 100%);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, #D33B2C 0%, #EA4335 100%);
}

.both-btn {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
}

.both-btn:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
}

.send-btn i {
    font-size: 1.2rem;
}

.close-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Error Message Styles */
.error-message-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.error-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #dc3545;
}

.error-content i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.error-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.error-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.error-content button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.error-content button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Responsive Design for Modal */
@media screen and (max-width: 768px) {
    .send-options-content {
        padding: 30px 20px;
        max-width: 400px;
    }
    
    .send-options-content h3 {
        font-size: 1.5rem;
    }
    
    .send-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .send-btn i {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .send-options-content {
        padding: 25px 15px;
        margin: 10px;
    }
    
    .send-options-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .send-options-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .send-btn {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .close-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Loading state for buttons */
.send-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.send-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Spinner animation for loading states */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/*----------------------------------------footer--------------------------*/

/* Footer Styles with Deep Blue Design */
.footer {
    background: #1a2332;
    color: white;
    padding: 80px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

.footer-section h3 {
    color: #3498db;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #bdc3c7;
    font-size: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-links a:nth-child(1):hover {
    background: #3b5998; /* Facebook */
}

.social-links a:nth-child(2):hover {
    background: #e4405f; /* Instagram */
}

.social-links a:nth-child(3):hover {
    background: #0077b5; /* LinkedIn */
}

.social-links a:nth-child(4):hover {
    background: #1da1f2; /* Twitter */
}

.social-links a:nth-child(5):hover {
    background: #ff0000; /* YouTube */
}

.social-links a:nth-child(6):hover {
    background: #25d366; /* WhatsApp */
}

.social-links i {
    font-size: 1.3rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-links a::before {
    content: '▶';
    color: #3498db;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-detail i {
    color: #3498db;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-detail div {
    line-height: 1.6;
}

.contact-detail strong {
    color: #3498db;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.contact-detail a:hover {
    color: #3498db;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.newsletter-section p {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links span {
    color: #7f8c8d;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid2 {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .index-projects-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1,
    .contact-hero h1,
    .gallery-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p,
    .contact-hero p,
    .gallery-hero p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-detail {
        padding: 12px;
    }
    
    .contact-detail i {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }

    .about-hero h1,
    .contact-hero h1,
    .gallery-hero h1 {
        font-size: 1.8rem;
    }

    .index-projects h2,
    .services-preview h2,
    .services-preview2 h2,
    .about-text h2,
    .services-detail h2,
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }

    .footer-content {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links i {
        font-size: 1.1rem;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-detail i {
        margin-top: 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.scroll-to-top i {
    pointer-events: none;
}

/* Additional Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2196F3;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-link:hover,
    .nav-link.active {
        background: none;
        color: #000;
        text-decoration: underline;
    }
    
    .cta-button,
    .submit-btn,
    .send-btn {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .scroll-to-top,
    .send-options-modal,
    .success-message,
    .error-message-popup {
        display: none !important;
    }
    
    .footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .footer-section h3 {
        color: black !important;
    }
    
    .social-links,
    .newsletter-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
    
    .hero-content h1 {
        font-size: 24pt;
    }
    
    .about-hero h1,
    .contact-hero h1,
    .gallery-hero h1 {
        font-size: 20pt;
    }
}