*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
}

/* ================= TOP HEADER ================= */

.top-header{
    width:100%;
    background:#d6eefb;  
    padding:8px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#1b4965;
    position:relative;
    overflow:hidden;
}

/* Shine Effect */
.top-header::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:40%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.7),transparent);
    transform:skewX(-25deg);
    animation:shine 7s infinite;
}

@keyframes shine{
    0%{ left:-100%; }
    50%{ left:120%; }
    100%{ left:120%; }
}

.top-header i{
    margin-right:6px;
    color:#1f8acb;
}

.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.social-icons a{
    color:#1f8acb;
    margin-left:10px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#1b4965;
    transform:scale(1.1);
}


/* ================= MAIN HEADER ================= */

.main-header{
    width:100%;
    background:#ffffff;
    padding:15px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0px 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    height:70px;
    width:120px;
}

/* NAVIGATION */

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

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

.nav-menu ul li a{
    text-decoration:none;
    color:#1b4965;
    font-size:15px;
    font-weight:500;
    position:relative;
    padding:8px 14px;
    border-radius:8px;
    transition:0.3s ease;
}

/* Blue Glow Hover */

.nav-menu ul li a:hover{
    background:#f4fbff;
    box-shadow:0px 0px 15px rgba(31,138,203,0.35);
    color:#1f8acb;
}

/* CTA BUTTON (Blue Only) */

.cta-btn{
    padding:10px 22px;
    background:#1f8acb;
    color:#ffffff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#166b9c;
    transform:translateY(-2px);
    box-shadow:0px 8px 18px rgba(0,0,0,0.15);
}
/* Top Accent Line */
.header-divider{
    width:100%;
    height:3px;
    background:#2ea3f2;
}

/* ================= MARQUEE ================= */

.marquee{
    width:100%;
    background:#e1f2fc; 
    padding:10px 0px;
    overflow:hidden;
    position:relative;
}

.marquee-content{
    display:inline-block;
    white-space:nowrap;
    animation:scroll 20s linear infinite;
    font-size:14px;
    font-weight:500;
    color:#1f8acb;
}

/* Shine on marquee */
.marquee::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:40%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.7),transparent);
    transform:skewX(-25deg);
    animation:shine 9s infinite;
}

@keyframes scroll{
    0%{ transform:translateX(100%); }
    100%{ transform:translateX(-100%); }
}


/* ================= MOBILE VIEW ================= */

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
    color:#1b4965;
}

@media(max-width:992px){

    .top-header{
        flex-direction:column;
        gap:6px;
        padding:8px 20px;
        text-align:center;
    }

    .main-header{
        padding:15px 20px;
    }

    .nav-menu{
        position:absolute;
        top:90px;
        right:0;
        background:#ffffff;
        width:100%;
        flex-direction:column;
        align-items:center;
        padding:20px 0px;
        display:none;
        box-shadow:0px 10px 20px rgba(0,0,0,0.05);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu ul{
        flex-direction:column;
        gap:15px;
        margin-bottom:15px;
    }

    .menu-toggle{
        display:block;
    }

}

/* ================= HERO SLIDER ================= */

.hero-slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.slides{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

/* Blue overlay for luxury feel */
.slide::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(30,60,114,0.35);
}

/* Hero Content */

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#ffffff;
    width:80%;
    z-index:2;
}

.hero-content h1{
    font-size:48px;
    font-weight:600;
    margin-bottom:15px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-btn{
    padding:12px 28px;
    background:#1f8acb;
    color:#ffffff;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    transition:0.3s;
}

.hero-btn:hover{
    background:#166b9c;
    transform:translateY(-3px);
}

/* Arrows */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#ffffff;
    background:rgba(0,0,0,0.3);
    padding:8px 15px;
    cursor:pointer;
    border-radius:50%;
    z-index:3;
    transition:0.3s;
}

.arrow:hover{
    background:#1f8acb;
}

.arrow.left{
    left:30px;
}

.arrow.right{
    right:30px;
}

/* Dots */

.dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:3;
}

.dots span{
    width:10px;
    height:10px;
    background:#ffffff;
    border-radius:50%;
    cursor:pointer;
    opacity:0.6;
}

.dots span.active{
    opacity:1;
    background:#1f8acb;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .hero-slider{
        height:380px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:14px;
    }

    .arrow{
        font-size:22px;
        padding:6px 12px;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section{
    width:100%;
   padding:70px 80px;
    background:#ffffff;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* LEFT CONTENT */

.about-content{
      width:48%;
     text-align:left; 
}

.about-content h2{
    font-size:36px;
    color:#1b4965;
    margin-bottom:20px;
    position:relative;
}

.about-content h2::after{
    content:"";
    width:60px;
    height:3px;
    background:#1f8acb;
    position:absolute;
    bottom:-10px;
    left:0;
}

.about-content p{
    font-size:15px;
    line-height:26px;
    color:#4a4a4a;
    margin-bottom:20px;
   text-align:left;
}

.about-btn{
    display:inline-block;
    padding:12px 26px;
    background:#1f8acb;
    color:#ffffff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    transition:0.3s;
}

.about-btn:hover{
    background:#166b9c;
    box-shadow:0px 8px 20px rgba(31,138,203,0.3);
    transform:translateY(-3px);
}

/* RIGHT IMAGE */

.about-image{
    width:50%;
    position:relative;
    height:420px;   /* control height */
}

.about-image img{
    width:100%;
    height:100%;     /* fill container */
    object-fit:cover;  /* prevent distortion */
    border-radius:20px;
    position:relative;
    z-index:1;
    transition:0.4s ease;
}
/* Instagram style background shapes */

.about-image::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#d6eefb;
    border-radius:40px;
    top:-40px;
    left:-40px;
    z-index:0;
}

.about-image::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#eaf6fd;
    border-radius:50%;
    bottom:-30px;
    right:-30px;
    z-index:0;
}


/* Zoom + Glow on Hover */

.about-image:hover img{
    transform:scale(1.05);
    box-shadow:0px 15px 35px rgba(31,138,203,0.35);
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .about-section{
        padding:60px 20px;
    }

    .about-container{
        flex-direction:column;
    }

    .about-content,

        width:100%;
    }

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

    .about-content h2::after{
        left:50%;
        transform:translateX(-50%);
    }

}
@media(max-width:992px){

    .about-image{
        height:300px;  /* smaller on mobile */
    }

}

/* ================= COUNTER SECTION ================= */

.counter-section{
    width:100%;
    padding:90px 80px;
    background:#f7fbff;
}

.counter-container{
    max-width:1200px;
    margin:auto;
}

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

.counter-heading h2{
    font-size:38px;
    color:#1b4965;
    margin-bottom:15px;
}

.counter-heading p{
    font-size:16px;
    color:#555;
    max-width:700px;
    margin:auto;
    line-height:26px;
}

/* CARDS */

.counter-cards{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.counter-card{
    width:33%;
    background:#ffffff;
    padding:40px 30px;
    border-radius:16px;
    text-align:center;
    position:relative;
    transition:0.4s ease;
    border-top:4px solid transparent;
    box-shadow:0px 8px 25px rgba(0,0,0,0.05);
}

/* Hover Effect */

.counter-card:hover{
    transform:translateY(-8px);
    border-top:4px solid #1f8acb;
    box-shadow:0px 15px 35px rgba(31,138,203,0.25);
}

.counter-number{
    font-size:48px;
    font-weight:700;
    color:#1f8acb;
    margin-bottom:10px;
}

.counter-card h4{
    font-size:18px;
    color:#1b4965;
    margin-bottom:12px;
}

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

/* ================= MOBILE ================= */

@media(max-width:992px){

    .counter-section{
        padding:60px 20px;
    }

    .counter-cards{
        flex-direction:column;
    }

    .counter-card{
        width:100%;
    }

}


/* ================= INTERIOR MARQUEE ================= */

.interior-marquee{
    width:100%;
    padding:80px 0px;
    background:#ffffff;
    overflow:hidden;
}

.marquee-heading{
    text-align:center;
    margin-bottom:40px;
}

.marquee-heading h2{
    font-size:36px;
    color:#1b4965;
}

/* Wrapper */

.marquee-wrapper{
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:25px;
    animation:scrollLeft 25s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track{
    animation-play-state:paused;
}

@keyframes scrollLeft{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* Cards */

.marquee-card{
    min-width:320px;
    height:240px;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
    transition:0.4s;
    box-shadow:0px 8px 25px rgba(0,0,0,0.08);
}

.marquee-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

/* Hover Effect */

.marquee-card:hover{
    transform:translateY(-8px);
    box-shadow:0px 15px 35px rgba(31,138,203,0.3);
}

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


/* ================= MODAL ================= */

.image-modal{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    top:0;
    left:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.image-modal img{
    max-width:80%;
    max-height:80%;
    border-radius:12px;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .marquee-card{
        min-width:250px;
        height:200px;
    }

}

/* ================= FEATURED PROJECTS ================= */

.featured-projects{
    width:100%;
    padding:100px 80px;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:40px;
    color:#1b4965;
    margin-bottom:10px;
}

.section-heading p{
    font-size:16px;
    color:#666;
}

.project-row{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
}

.project-row.reverse{
    flex-direction:row-reverse;
}

.project-image{
    width:55%;
    height:420px;
    overflow:hidden;
    border-radius:20px;
}

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

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

.project-content{
    width:45%;
}

.project-content h3{
    font-size:28px;
    color:#1b4965;
    margin-bottom:15px;
}

.project-content p{
    font-size:15px;
    line-height:26px;
    color:#555;
    margin-bottom:25px;
}

.project-btn{
    padding:12px 28px;
    background:#1f8acb;
    color:#ffffff;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.project-btn:hover{
    background:#166b9c;
    box-shadow:0px 8px 20px rgba(31,138,203,0.3);
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:992px){

    .featured-projects{
        padding:60px 20px;
    }

    .project-row{
        flex-direction:column;
        gap:30px;
    }

    .project-row.reverse{
        flex-direction:column;
    }

    .project-image,
    .project-content{
        width:100%;
    }

    .project-image{
        height:300px;
    }

}

/* ================= HORIZONTAL PROJECTS ================= */

.horizontal-projects{
    padding:100px 0px;
    background:#f7fbff;
    overflow:hidden;
}

.horizontal-wrapper{
    overflow-x:auto;
    padding-left:80px;
}

.horizontal-wrapper::-webkit-scrollbar{
    display:none;
}

.horizontal-track{
    display:flex;
    gap:30px;
}

.horizontal-card{
    min-width:350px;
    height:400px;
    position:relative;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s;
}

.horizontal-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.horizontal-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color:#ffffff;
    font-size:18px;
    font-weight:500;
}

/* MOBILE */

@media(max-width:992px){

    .horizontal-wrapper{
        padding-left:20px;
    }

    .horizontal-card{
        min-width:260px;
        height:300px;
    }

}


/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.main-footer{
    background:#0c1a2b;
    color:#ffffff;
    padding:80px 0 0 0;
}

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

/* Make columns equal */

.footer-box{
    flex:1;
    min-width:250px;
}

/* Logo */

.footer-logo{
    height:70px;
  width: 120px;
  border-radius: 20px;
    margin-bottom:25px;
}

/* Headings */

.footer-box h4{
    font-size:18px;
    margin-bottom:20px;
    color:#1f8acb;
    position:relative;
}

/* Underline effect for heading */

.footer-box h4::after{
    content:"";
    width:40px;
    height:2px;
    background:#1f8acb;
    position:absolute;
    bottom:-8px;
    left:0;
}

/* Paragraph spacing */

.footer-box p{
    font-size:14px;
    line-height:24px;
    margin-bottom:3px;
    color:#cfcfcf;
}

/* Contact links */

.footer-box a{
    color:#1f8acb;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-box a:hover{
    color:#ffffff;
}

/* Social */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1f8acb;
    border-radius:50%;
    color:#ffffff;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ffffff;
    color:#1f8acb;
    transform:translateY(-4px);
}

/* Quick Links */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

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

.footer-links a{
    color:#cfcfcf;
    font-size:14px;
    transition:0.3s ease;
    display:inline-block;
}

.footer-links a:hover{
    color:#1f8acb;
    padding-left:6px;
}

/* Footer Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:60px;
    padding:22px 0;
    text-align:center;
    font-size:13px;
    color:#9a9a9a;
}

.footer-bottom a{
    color:#1f8acb;
    text-decoration:none;
    transition:0.3s;
}

.footer-bottom a:hover{
    color:#ffffff;
}
.footer-top-line{
    width:100%;
    height:4px;
    background:#2ea3f2;
}
/* Responsive */

@media(max-width:992px){

    .footer-container{
        flex-direction:column;
        gap:40px;
    }

}
/* ================= FLOATING BUTTONS ================= */

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:9999;
}

/* Common Style */

.float-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:22px;
    text-decoration:none;
    box-shadow:0px 8px 25px rgba(0,0,0,0.25);
    transition:0.3s ease;
}

/* Call Button */

.call-btn{
    background:#e63946;  /* red */
}

.call-btn:hover{
    transform:translateY(-6px);
    box-shadow:0px 12px 30px rgba(230,57,70,0.4);
}

/* Enquiry Button */

.enquiry-btn{
    background:linear-gradient(135deg, #1b4965, #1f8acb);
}

.enquiry-btn:hover{
    transform:translateY(-6px);
    box-shadow:0px 12px 30px rgba(31,138,203,0.4);
}

/* Mobile Adjust */

@media(max-width:768px){
    .float-btn{
        width:55px;
        height:55px;
        font-size:20px;
    }
}

/* ================= ENQUIRY MODAL ================= */

.enquiry-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    z-index:99999;
}

.enquiry-modal.active{
    opacity:1;
    visibility:visible;
}

.enquiry-modal-content{
    width:420px;
    background:#ffffff;
    padding:40px 30px;
    border-radius:16px;
    border-top:5px solid #1f8acb;   /* Blue accent line */
    position:relative;
    animation:modalPop 0.3s ease;
}

@keyframes modalPop{
    from{ transform:scale(0.9); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

/* Close Button */

.close-modal{
    position:absolute;
    top:15px;
    right:18px;
    font-size:26px;
    cursor:pointer;
    color:#666;
}

/* Logo */

.modal-logo{
    text-align:center;
    margin-bottom:15px;
}

.modal-logo img{
    height:60px;
}

/* Heading */

.enquiry-modal h2{
    text-align:center;
    font-size:20px;
    color:#1b4965;
    margin-bottom:25px;
}

/* Form */

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#1f8acb;
    box-shadow:0 0 0 2px rgba(31,138,203,0.1);
}

/* Submit */

.modal-submit-btn{
    width:100%;
    padding:12px;
    background:#1f8acb;
    color:#ffffff;
    border:none;
    border-radius:30px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}

.modal-submit-btn:hover{
    background:#166b9c;
}