/* ===========================
   GOOGLE FONT & RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

/* ===========================
      COLORS
=========================== */

:root{

    --primary:#1A2238;

    --secondary:#F7CA18;

    --white:#ffffff;

    --light:#f5f5f5;

    --text:#444;

}

/* ===========================
      CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;
    

}

/* ===========================
      TOP BAR
=========================== */

 .my-address{
        width: 100%;
        background-color: yellow;
        color: #222;
        height: 60px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        
        
    }
    .time{
        margin-bottom: 10px;
    }
    .my-cont{
        margin-left: 6px;
    }
    .my-info{
        display: flex;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }











.top-bar{

     /* background:var(--secondary);  */
   background-color:rgb(242, 242, 27);
    color:darkmagenta;

    font-size:14px;

    font-weight:500;

}

.top-bar .container{
/* 
    display:flex;

    justify-content:space-between; */
  
    align-items:center;
       justify-content: center;
       text-align: center;
    padding:10px 0;

    flex-wrap:wrap;
    background-color:yellow;
}

/*====================
      NAVBAR
=========================== */

header{
    /* margin-top: 100px; */
    
    position:sticky;

    top:0;

    z-index:999;

    background:rgba(26,34,56,.95);

    backdrop-filter:blur(10px);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    text-decoration:none;

}

.logo h2{

    color:var(--secondary);

    font-size:30px;

    font-weight:800;

}

.logo span{

    color:white;

    letter-spacing:3px;

    font-size:12px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:30px;

}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover,

.nav-links .active{

    color:var(--secondary);

}

.menu-btn{

    display:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/* ===========================
      HERO
=========================== */

.hero{

    position:relative;

    height:150vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

/* ===========================
   BACKGROUND SLIDER
=========================== */

.hero-slider{

    position:absolute;

    width:100%;

    min-height:100%;

    top:0;

    left:0;

}

.slide{

    position:absolute;

   min-height: 160vh; 
   width:100%;

    

    background-size:cover;

    background-position:center;

    opacity:0;

    animation:slider 15s infinite;

}

.slide:nth-child(1){

background-image:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../images/hero1.jpeg");

animation-delay:0s;

}

.slide:nth-child(2){

background-image:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../images/hero2.png");

animation-delay:5s;

}

.slide:nth-child(3){

background-image:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../images/hero3.png");

animation-delay:10s;

}

@keyframes slider{

0%{

opacity:0;

transform:scale(1);

}

10%{

opacity:1;

}

30%{

opacity:1;

transform:scale(1.1);

}

40%{

opacity:0;

}

100%{

opacity:0;

}

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.25);

}

/* ===========================
   HERO CONTENT
=========================== */

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

}

.hero-tag{

    display:inline-block;

    background:rgba(247,202,24,.15);

    color:var(--secondary);

    padding:8px 20px;

    border:1px solid var(--secondary);

    border-radius:50px;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:clamp(2.8rem,7vw,5rem);

    color:var(--secondary);

    font-weight:800;

}

.hero-content h2{

    font-size:clamp(1.5rem,4vw,2.5rem);

    color:white;

    margin-bottom:20px;

}

.hero-content p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    font-size:18px;

    margin-bottom:35px;

}

/* ===========================
     BUTTONS
=========================== */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;


}

.btn{

padding:14px 35px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.4s;

}

.btn-primary{

background:var(--secondary);

color:black;

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-outline{

border:2px solid white;

color:white;

}

.btn-outline:hover{

background:white;

color:black;

}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:768px){

/* .top-bar .container{

flex-direction:column;

gap:8px;

text-align:center;

} */

@media(max-width:768px){
    .my-address{
        width: 100%;
        background-color: yellow;
        color: #222;
        height: 60px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        
        
    }
    .time{
        margin-bottom: 10px;
    }
    .my-cont{
        margin-left: 6px;
    }
    .my-info{
        display: flex;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
}
        
.logo img {
           background-color: transparent;
           mix-blend-mode: screen;
}
/* =======

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.hero{

height:90vh;

}

.hero-content p{

font-size:16px;

}

}*/

/* =====================================
        ABOUT SECTION
===================================== */

.about{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:15px;
    font-weight:700;
}

.section-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:60px;
    font-size:17px;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content h3{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:20px;
}

.about-content p{
    line-height:1.8;
    color:var(--text);
    margin-bottom:20px;
}

/* =====================================
          COMPANY STATS
===================================== */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.stat-card{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    color:var(--secondary);
    font-size:2.5rem;
}

.stat-card p{
    color:#666;
    margin-top:10px;
}

/* =====================================
        SERVICES
===================================== */

.services{
    padding:100px 0;
    background:#f8f9fc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:15px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    border-top:5px solid var(--secondary);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:35px;

    margin-bottom:20px;

}

.service-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* =====================================
      WHY CHOOSE US
===================================== */

.choose{

    padding:100px 0;

    background:white;

}

.choose-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:50px;

}

.choose-card{

padding:35px;

border-radius:15px;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.choose-card:hover{

background:var(--primary);

color:white;

transform:translateY(-10px);

}

.choose-card h3{

margin-bottom:15px;

}

.choose-card p{

line-height:1.8;

}

/* =====================================
        FEATURED PROJECTS
===================================== */

.projects{

padding:100px 0;

background:#f8f9fc;

}

.project-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:30px;

}

.project-card{

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:0 15px 30px rgba(0,0,0,.1);

transition:.4s;

}

.project-card:hover{

transform:translateY(-12px);

}

.project-image{

height:250px;

overflow:hidden;

}

.project-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.project-card:hover img{

transform:scale(1.1);

}

.project-content{

padding:25px;

}

.project-content h3{

margin-bottom:10px;

color:var(--primary);

}

.project-content p{

color:#666;

line-height:1.7;

margin-bottom:20px;

}

.project-btn{

display:inline-block;

padding:12px 28px;

background:var(--secondary);

color:#000;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.project-btn:hover{

background:var(--primary);

color:white;

}

/* =====================================
      RESPONSIVE
===================================== */

@media(max-width:991px){

.about-container{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.section-title{

font-size:2rem;

}

.stats{

grid-template-columns:1fr;

}

}

/* ==========================================
            CONTACT SECTION
========================================== */

.contact{
    padding:100px 0;
    background:#ffffff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    font-size:2.3rem;
    color:var(--primary);
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.info-icon{
    width:60px;
    height:60px;
    background:var(--secondary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    margin-right:18px;
    flex-shrink:0;
}

.info-text h4{
    color:var(--primary);
    margin-bottom:8px;
}

.info-text p,
.info-text a{
    color:#666;
    text-decoration:none;
    line-height:1.7;
}

/* ==========================================
            CONTACT FORM
========================================== */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form h3{
    color:var(--primary);
    margin-bottom:25px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
    font-family:'Poppins',sans-serif;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(247,202,24,.2);
}

.contact-form button{
    background:var(--secondary);
    color:#000;
    border:none;
    padding:15px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

/* ==========================================
               GOOGLE MAP
========================================== */

.map-section{
    padding:0 0 100px;
    background:#fff;
}

.map{
    width:100%;
    height:450px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* ==========================================
                 FOOTER
========================================== */

.footer{
    background:var(--primary);
    color:#ddd;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-logo h2{
    color:var(--secondary);
    margin-bottom:10px;
}

.footer-logo p{
    line-height:1.8;
}

.footer h3{
    color:#fff;
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    text-decoration:none;
    color:#ccc;
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--secondary);
    padding-left:8px;
}

.footer-contact p{
    margin-bottom:12px;
    line-height:1.8;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-links a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.social-links a:hover{
    background:var(--secondary);
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    text-align:center;
    color:#aaa;
    font-size:15px;
}

/* ==========================================
              RESPONSIVE
========================================== */

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.map{
    height:350px;
}

}

@media(max-width:768px){

.contact{
    padding:70px 0;
}

.contact-form{
    padding:25px;
}

.info-box{
    align-items:flex-start;
}

.footer{
    text-align:center;
}

.social-links{
    justify-content:center;
}

}

/* ==========================================
        FLOATING ACTION BUTTONS
========================================== */

.whatsapp-btn,
.call-btn,
.top-btn{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp-btn{
    background:#25D366;
    right:20px;
    bottom:20px;
}

.call-btn{
    background:#007BFF;
    left:20px;
    bottom:20px;
}

.top-btn{
    background:var(--secondary);
    color:#000;
    right:20px;
    bottom:95px;
    opacity:0;
    visibility:hidden;
}

.whatsapp-btn:hover,
.call-btn:hover,
.top-btn:hover{
    transform:translateY(-6px) scale(1.08);
}

.top-btn.show{
    opacity:1;
    visibility:visible;
}

/* ==========================================
          SCROLL ANIMATION
========================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ==========================================
            BUTTON RIPPLE
========================================== */

.btn,
.project-btn,
.contact-form button{
    position:relative;
    overflow:hidden;
}

.btn::after,
.project-btn::after,
.contact-form button::after{

    content:"";

    position:absolute;

    width:0;

    height:0;

    background:rgba(255,255,255,.3);

    border-radius:50%;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    transition:.5s;

}

.btn:hover::after,
.project-btn:hover::after,
.contact-form button:hover::after{

    width:300px;

    height:300px;

}

/* ==========================================
            IMAGE HOVER
========================================== */

img{
    max-width:100%;
    display:block;
}

.about-image,
.project-image{
    overflow:hidden;
}

.about-image img,
.project-image img{
    transition:.5s;
}

.about-image:hover img,
.project-card:hover img{
    transform:scale(1.08);
}

/* ==========================================
          SECTION SPACING
========================================== */

section{
    scroll-margin-top:90px;
}

/* ==========================================
         LARGE SCREEN
========================================== */

@media(min-width:1400px){

.container{

    max-width:1320px;

}

.hero-content h1{

    font-size:5.5rem;

}

.hero-content p{

    font-size:20px;

}

}

/* ==========================================
            TABLET
========================================== */

@media(max-width:992px){

.hero{

    height:90vh;

}

.services-grid,
.project-grid,
.choose-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* ==========================================
            MOBILE
========================================== */

@media(max-width:768px){

.hero{

    height:85vh;

}

.hero-content h1{

    font-size:2.8rem;

}

.hero-content h2{

    font-size:1.5rem;

}

.hero-content p{

    font-size:15px;

    padding:0 10px;

}

.services-grid,
.project-grid,
.choose-grid{

    grid-template-columns:1fr;

}

.whatsapp-btn,
.call-btn,
.top-btn{

    width:52px;

    height:52px;

    font-size:24px;

}

}


@media (max-width:768px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:80px;
        right:-100%;
        width:260px;
        height:calc(100vh - 80px);
        background:#1A2238;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        gap:25px;
        padding-top:35px;
        transition:.4s;
        z-index:999;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a{
        font-size:18px;
        display:block;
        width:100%;
        text-align:center;
        padding:10px;
    }

}
/* ==========================================
         SMALL MOBILE
========================================== */

@media(max-width:480px){

.container{

    width:94%;

}

.hero-content h1{

    font-size:2.3rem;

}

.hero-content p{

    font-size:14px;

}

.section-title{

    font-size:1.8rem;

}

.contact-form{

    padding:20px;

}

}

/* ==========================================
            END OF CSS
========================================== */
/* Sticky Navbar */

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}

.slide.active{
    opacity:1;
}

/* Background Images */

.slide:nth-child(1){
    background-image:url("../images/hero1.jpg");
}

.slide:nth-child(2){
    background-image:url("../images/hero2.jpg");
}

.slide:nth-child(3){
    background-image:url("../images/hero3.jpg");
}

/* Scroll Animation */

.service-card,
.project-card,
.about-card,
.info-box,
.why-box,
.invest-box{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}
@media(max-width:768px){
    .top-bar .container{background-color: yellow;}
}

.hero-slider .slide:nth-child(1){
    background: url("../images/hero6.png") center center/cover no-repeat;
}

.hero-slider .slide:nth-child(2){
    background: url("../images/hero2.png") center center/cover no-repeat;
}

.hero-slider .slide:nth-child(3){
    background: url("../images/hero3.png") center center/cover no-repeat;
}
.hero-slider .slide:nth-child(4){
    background: url("../images/hero4.png") center center/cover no-repeat;
}

.hero-slider .slide:nth-child(5){
    background: url("../images/hero5.png") center center/cover no-repeat;
}

.hero-slider .slide:nth-child(6){
    background: url("../images/hero1.jpeg") center center/cover no-repeat;
}