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

body{
  background:black;
  color:white;
  font-family:Arial, sans-serif;
}

.hero{
    min-height:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding: 125px 80px 60px;
}

.left{
    width:60%;
    max-width:700px;
}

.right{
  width:45%;
  display:flex;
  justify-content:center;
  align-items: center;
}

.tag{
  color:#bdbdbd;
  letter-spacing:2px;
  margin-bottom:20px;
}

h1{
    font-size:96px;
    line-height:0.95;
    letter-spacing:-3px;
    font-weight:800;
    margin-bottom:30px;
}

.description{
    color:#9f9f9f;
    max-width:550px;
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

button{
  background:white;
  color:black;
  border:none;
  padding:18px 40px;
  border-radius:999px;
  cursor:pointer;
  transition: all 0.3s ease;
}

.orb{
    width:320px;
    height:320px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        #d9b15f,
        #7c5a16,
        transparent
    );

    filter:blur(60px);

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(50px);
    }

    50%{
        transform:translateY(-85px);
    }

    100%{
        transform:translateY(50px);
    }

}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 80px;

    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(30px);

    border-bottom:1px solid rgba(255,255,255,0.05);

    z-index:1000;
    transition: all 0.3s ease;
}

 nav a{
    color:white;
    text-decoration:none;
}

nav a:visited{
    color:white;
}

.logo{
    width:55px;
    height:55px;

    background:#d9b15f;
    color:black;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:22px;
}

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


nav li{
    color:#d0d0d0;
    cursor:pointer;
    transition:0.3s;
}

nav li:hover{
    color:#d9b15f;
    transform:translateY(-4px);
}

.nav-btn{
    background:white;
    color:black;

    border:none;

    padding:14px 28px;
    border-radius:999px;

    font-weight:600;
}

.hero-btn,
.nav-btn{
    background:#d9b15f;
    color:black;
    border:none;
    font-weight:600;
}

.hero-btn:hover,
.nav-btn:hover{
    transform:translateY(-3px);
}

.stats-card{
    margin-top:50px;

    display:flex;
    gap:50px;

    width:max-content;

    padding:25px 35px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:24px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);

    backdrop-filter: blur(20px);
}

.stat h3{
    color:#d9b15f;
    font-size:28px;
    margin-bottom:8px;
}

.stat p{
    color:#9f9f9f;
    font-size:14px;
}

 button{
    transition:0.3s;
}

button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217,177,95,0.3);
}

.services{
    padding:140px 80px;
}

.section-tag{
    color:#d9b15f;
    letter-spacing:2px;
    margin-bottom:20px;
}

.services h2{
    font-size:56px;
    margin-bottom:60px;
    letter-spacing:-2px;
}

.service-grid{
    display:flex;
    gap:30px;
}

.service-card{
    flex:1;

    background:rgba(255,255,255,0.03);;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:24px;

    padding:40px;

    transition:0.4s ease;

    min-height:280px;
}

.service-card:hover{
    transform: translateY(-12px) scale(1.02);
    border-color: #d9b15f;
    box-shadow: 0 20px 50px rgba(217,177,95,0.15);
}

.icon{
    font-size:55px;
    margin-bottom:30px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#9a9a9a;
    line-height:1.7;
}

.service-card:hover h3{
    color:#d9b15f;
}

.why-us{
    padding:140px 80px;
}

.why-card{
    transition:0.4s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    background:#111;
}

.features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:60px;
}

.feature{
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:35px;
}

.feature span{
    font-size:40px;
}

.feature h3{
    margin:20px 0;
    font-size:24px;
}

.feature p{
    color:#9a9a9a;
    line-height:1.7;
}

.trust{
    padding:140px 80px;
    text-align:center;
}

.trust h2{
    font-size:56px;
    margin-top:15px;
    margin-bottom:60px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:40px;
    transition:all 0.35s;
}

.trust-card:hover{
    transform:translateY(-10px);
    border-color:#d9b15f;
}

.trust-card h3{
    font-size:52px;
    color:#d9b15f;
    margin-bottom:10px;
}

.trust-card p{
    color:#9a9a9a;
}

.testimonials{
    padding:140px 80px;
}

.testimonials h2{
    font-size:56px;
    margin-bottom:60px;
}

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

.testimonial-card{
    background: rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.06);

    border-radius:24px;

    padding:35px;

    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#d9b15f;
}

.testimonial-card p{
    color:#b0b0b0;
    line-height:1.8;
    margin-bottom:30px;
}

.testimonial-card h4{
    color:white;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#d9b15f;
}

.cta{
    text-align:center;
    padding:140px 80px;
}

.cta-tag{
    color:#d9b15f;
    letter-spacing:3px;
    margin-bottom:20px;
}

.cta h2{
    font-size:64px;
    margin-bottom:20px;
}

.cta-text{
    color:#9f9f9f;
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.7;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.call-btn,
.whatsapp-btn{
    padding:18px 36px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:#d9b15f;
    color:black;
}

.whatsapp-btn{
    border:1px solid #333;
    color:white;
}

.footer{
    padding:80px;
    border-top:1px solid #1f1f1f;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:20px;
}

.footer-col p{
    color:#9f9f9f;
    line-height:1.8;
}

.footer-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid #1f1f1f;
    text-align:center;
    color:#777;
}

.footer-col p a{
    color:#9f9f9f;
    text-decoration:none;
    transition:0.3s;
}

.footer-col p a:visited{
    color:#9f9f9f;
}

.footer-col p a:hover{
    color:#d9b15f;
}

html{
    scroll-behavior:smooth;
}

@media (max-width: 768px){

    nav{
        padding:15px 20px;
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px 25px;
        font-size:14px;
    }

    .hero{
        flex-direction:column;
        padding:120px 20px 60px;
        text-align:center;
    }

    .left,
    .right{
        width:100%;
    }

    h1{
        font-size:56px;
    }

    .service-grid,
    .features-grid,
    .testimonial-grid{
        grid-template-columns:1fr;
    }

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

    .cta h2{
        font-size:42px;
    }

    .orb{
        width:220px;
        height:220px;
        margin-top:40px;
    }

}

.services,
.why-us,
.footer{
    scroll-margin-top: 120px;
}

.gallery{
    padding:100px 80px;
}

.gallery h2{
    font-size:3rem;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.videos{
    padding:100px 80px;
}

.videos h2{
    font-size:3rem;
    margin-bottom:50px;
}

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

.video-grid video{
    width:100%;
    border-radius:20px;
    background:#111;
}

.whatsapp-float{
    position:fixed;

    bottom:30px;
    right:30px;

    background:#25D366;
    color:white;

    padding:15px 22px;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    z-index:9999;

    transition:0.3s;
}

.whatsapp-float:hover{
    transform:translateY(-3px);
}

.hero-buttons{
    display:flex;
    gap:15px;
    align-items:center;
    margin-top:30px;
}

.whatsapp-hero-btn{
    background:transparent;
    color:white;

    border:1px solid #d9b15f;

    text-decoration:none;

    padding:18px 36px;

    border-radius:999px;

    font-weight:600;

    transition:all 0.3s ease;
}

.whatsapp-hero-btn:hover{
    background:#d9b15f;
    color:black;
}

.call-btn,
.whatsapp-hero-btn{
    min-width:180px;
    text-align:center;
}

.quote-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.quote-content{
    width:500px;
    max-width:90%;
    background:#111;
    padding:30px;
    border-radius:20px;
}

.quote-content h2{
    color:white;
    margin-bottom:20px;
}

.quote-content form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-content input,
.quote-content textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#222;
    color:white;
}

.quote-content button{
    background:#d9b15f;
    color:black;
    border:none;
    padding:15px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}

.close-modal{
    color:white;
    float:right;
    font-size:30px;
    cursor:pointer;
}

.quote-content select{
    width:100%;
    padding:15px;
    background:#222;
    color:white;
    border:none;
    border-radius:10px;
    font-size:16px;
    outline:none;
    cursor:pointer;
}

.quote-content select:focus{
    border:1px solid #d9b15f;
}

.quote-content option{
    background:#222;
    color:white;
}

.quote-content select:focus{
    box-shadow:0 0 10px rgba(217,177,95,0.4);
}

.slider-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.photo-slider{
    text-align:center;
}

.section-tag{
    color:#d9b15f;
    letter-spacing:3px;
    margin-bottom:10px;
}

.photo-slider h2{
    font-size:48px;
    margin-bottom:40px;
}

.hero{
    padding-bottom: 60px;
}

.slider-container{
    width:100%;
    max-width:1200px;
    height:650px;      /* fixed height */
    overflow:hidden;
    border-radius:20px;
}

.slider-container img{
    width:100%;
    height:100%;
    object-fit:contain;  /* makes all images same size */
    display:block;
}

#sliderImage{
    opacity:1;
    transition:opacity 0.3s ease;
}

#sliderImage.fade{
    opacity:0;
}

#sliderImage{
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:1;

    transition:
        opacity 0.5s ease,
        transform 2.5s ease;
}

.location-section{
    padding:120px 80px;
    text-align:center;
}

.location-section h2{
    margin-bottom:40px;
}

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

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.08);
}

.map-container iframe{
    width:100%;
    height:500px;
    display:block;
}

.location-info{
    text-align:center;
    margin-top:30px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.location-call-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;

    background:#d9b15f;
    color:#000;

    border-radius:999px;

    text-decoration:none;
    font-weight:700;
}

.review-slider{
    max-width:800px;
    margin:auto;
}

.review-card{
    background:#111;
    border:1px solid rgba(217,177,95,.2);
    border-radius:24px;
    padding:40px;
    text-align:center;
}

.review-card h3{
    color:#fff;
    margin:15px 0;
    transition:.3s;
}

.review-card p{
    color:#bdbdbd;
    line-height:1.8;
    transition:.3s;
}

.stars{
    color:#d9b15f;
    font-size:24px;
    letter-spacing:3px;
}

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

@media(max-width:900px){
    .testimonial-slider{
        grid-template-columns:1fr;
    }
}

.testimonial-card{
    transition:0.5s;
}

.testimonial-wrapper{
    overflow:hidden;
    width:100%;
    margin-top:50px;
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:transform .8s ease;
}

.testimonial-card{
    min-width:calc((100% - 60px)/3);

    background:#111;
    border:1px solid rgba(217,177,95,.15);

    border-radius:24px;
    padding:30px;

    flex-shrink:0;
}

.testimonial-card h3{
    color:#fff;
    margin:15px 0;
}

.testimonial-card p{
    color:#aaa;
    line-height:1.7;
}

.stars{
    color:#d9b15f;
    font-size:20px;
}

@media(max-width:900px){

    .testimonial-card{
        min-width:100%;
    }

}

.testimonial-wrapper{
    overflow:hidden;
    width:100%;
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:transform .8s ease;
}

.testimonial-card{
    flex:0 0 calc((100% - 60px) / 3);
    min-height:260px;

    background:#080808;
    border:1px solid rgba(217,177,95,.4);
    border-radius:32px;
    padding:40px;
}

.work-showcase{
    padding:120px 80px;
}

.work-carousel{
    display:flex;
    gap:20px;

    overflow-x:auto;
    scroll-behavior:smooth;
}

.work-carousel::-webkit-scrollbar{
    display:none;
}

.work-carousel img,
.work-carousel video{

    flex:0 0 380px;

    width:380px;
    height:250px;

    object-fit:cover;

    border-radius:20px;

    transition:0.3s;
}

.work-carousel img:hover,
.work-carousel video:hover{

    transform:translateY(-5px);

}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,0.8);
    color:white;

    cursor:pointer;
    z-index:100;
}

#prevWorkBtn{
    left:-30px;
}

#nextWorkBtn{
    right:-30px;
}

nav ul li a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}

nav ul li a:hover{
    color:#d9b15f;
}

nav ul li a.active{
    color:#d9b15f;
}

html{
    scroll-behavior:smooth;
}

body{
    animation:fadeIn .5s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }

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

@media (max-width: 768px){

    nav{
        padding:15px 20px;
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px 25px;
        font-size:14px;
    }

    .hero h1,
    .about-hero h1,
    .services-hero h1{
        font-size:48px;
        line-height:1.1;
    }

    .hero p,
    .about-hero p,
    .services-hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    footer{
        text-align:center;
    }
}

.video-wrapper{
    position:relative;
}

h1{
    font-size:96px;
}
.hero{
    min-height:auto;
}
@media (max-width:768px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding:120px 20px 60px;
    }

    .left,
    .right{
        width:100%;
        max-width:100%;
    }

    h1{
        font-size:48px;
        line-height:1.1;
    }

    .description{
        font-size:18px;
    }

    .stats-card{
        flex-direction:column;
        gap:20px;
        width:100%;
    }

    .service-grid,
    .trust-grid,
    .features-grid,
    .footer-grid{
        display:grid;
        grid-template-columns:1fr;
    }

    .work-showcase,
    .services,
    .why-us,
    .trust,
    .testimonials,
    .footer{
        padding:80px 20px;
    }

    .work-carousel img,
    .work-carousel video{
        width:280px;
        height:180px;
    }

    .nav-btn{
        padding:10px 20px;
        font-size:14px;
    }

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:36px;
    }

    .trust h2,
    .services h2,
    .why-us h2,
    .testimonials h2{
        font-size:36px;
    }

    .location-section{
        padding:80px 20px;
    }

    .location-section h2{
        font-size:36px;
    }

    .map-container iframe{
        height:300px;
    }

    .testimonial-card{
        min-width:100%;
        flex:0 0 100%;
    }

    .video-header h2{
        font-size:36px;
    }
}
