*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
    line-height:1.6;
}
img{
    max-width:100%;
    height:auto;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 60px;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap: 15px;
}

.logo span{
    color:#fff;
    font-size:28px;
    font-weight:700;
    line-height:1;
    display:inline-block;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:500;
    position: relative;
    transition: 0.3s;
}

nav a:hover{
    color:#00d4ff;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#00d4ff;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.png");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:flex-start;
    align-items:center;

    position:relative;
}

.hero-content{
    text-align:left;
    color:#fff;
    max-width:650px;
    padding:20px;
    margin-left:80px;
    margin-top:-80px;
}
.hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:flex-start;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    border:none;
    cursor:pointer;
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
}

.about{
    padding:100px 0;
    text-align:center;
}

.services{
    padding:100px 0;
    background:#111;
    color:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.service-card{
    background:linear-gradient(145deg,#1a1a1a,#111);
    padding:35px;
    border-radius:20px;
    transition:0.4s;
    border:1px solid rgba(212,175,55,.2);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.service-card h3{
    margin-bottom:15px;
    color:#d4af37;
    font-size:22px;
}

.service-card p{
    color:#cfcfcf;
}

.projects{
    padding:100px 0;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:15px;
    transition:0.4s;
}

.project-card{
    overflow:hidden;
    border-radius:15px;
}

.project-card img:hover{
    transform:scale(1.08);
}

.contact-form{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-form form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}
.contact{
    padding:100px 0;
    text-align:center;
}

.contact p{
    margin:10px 0;
    font-size:18px;
}

.stats{
    background:#111;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    text-align:center;
    padding:80px 20px;
}

.stat-box h3{
    font-size:45px;
    color:#d4af37;
}

footer{
    background:#000;
    color:#fff;
    padding:70px 10%;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:10px;
}

.footer-grid h3{
    margin-bottom:15px;
    color:#d4af37;
}

.copyright{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
}

/* MOBILE */

@media(max-width:768px){

.navbar{
    padding:15px;
    flex-direction:column;
    gap:10px;
}

.logo span{
    font-size:18px;
}

.hero h1{
    font-size:36px;
    line-height:1.2;
}

.hero p{
    font-size:15px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:220px;
    text-align:center;
}

.gallery{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}
.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero{
    min-height:85vh;
    background-position:center;
}

.contact-card{
    width:100%;
    overflow:hidden;
}

.contact-card a{
    word-break:break-word;
    overflow-wrap:break-word;
}

nav{
    display:none;
}
}
.contact{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.contact-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.contact-card h3{
    margin-bottom:15px;
    color:#d4af37;
}
.contact-card a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    word-break: break-all;
overflow-wrap: anywhere;
}

.contact-card a:hover{
    color:#d4af37;
}
.footer-grid a{
    color:#ffffff;
    text-decoration:none;
}

.footer-grid a:hover{
    color:#d4af37;
}
.floating-whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

.floating-whatsapp:hover{
    transform: scale(1.05);
}
.contact-card p{
    word-break: break-word;
    overflow-wrap: anywhere;
}
.trust-bar{
    background:#d4af37;
    padding:18px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    font-weight:600;
    color:#000;
}

.trust-item{
    font-size:16px;
}

@media(max-width:768px){
.trust-bar{
    gap:15px;
}
.trust-item{
    font-size:14px;
}
}
.contact-card a{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.contact-card a:hover{
    background:#c19b2f;
    transform:translateY(-3px);
}
/* Floating Call Button */

.floating-call{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    background:#d4af37;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index:9999;
}
.floating-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index:9999;
}
.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content h3{
    font-size:32px;
    margin-bottom:20px;
    color:#d4af37;
}

.about-content p{
    font-size:18px;
    margin-bottom:20px;
    color:#555;
    line-height:1.9;
}

.about-features{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.about-features div{
    background:#f8f8f8;
    padding:15px;
    border-radius:10px;
    font-weight:600;
}
.hero{
    position:relative;
}

.hero-stats{
    position:absolute;
    bottom:60px;
    left:60px;
    display:flex;
    gap:40px;
    z-index:20;
}

.hero-stat{
    text-align:left;
}

.hero-stat h3{
    color:#d4af37;
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
}

.hero-stat p{
    color:#fff;
    font-size:16px;
    margin:0;
}

@media(max-width:768px){

.hero-stats{
    position:static;
    display:none;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:25px;
    padding:15px;
    width:100%;
}

.hero-stat{
    text-align:center;
}

.hero-stat h3{
    font-size:28px;
}

.hero-stat p{
    font-size:14px;
}
}

@media(max-width:768px){

.hero-content{
    margin-left:20px;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}
}
.why-choose{
    padding:100px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    color:#d4af37;
    margin-bottom:10px;
}
.testimonials{
    padding:100px 0;
    background:#f8f8f8;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    font-style:italic;
    margin-bottom:15px;
    color:#555;
}

.testimonial-card h4{
    color:#d4af37;
}
/* FAQ Section */

.faq{
    padding:100px 0;
    background:#fff;
}

.faq-box{
    background:#f8f8f8;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-box h3{
    color:#d4af37;
    margin-bottom:10px;
}

.faq-box p{
    color:#555;
}
/* Premium Project Cards */

.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.project-card h3{
    padding:20px;
    text-align:center;
    color:#d4af37;
    font-size:20px;
}
/* CTA Section */

.cta-section{
    background:#111;
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:30px;
    color:#ccc;
}
.project-card{
    overflow:hidden;
}

.project-card img{
    transition:0.4s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}
@media(max-width:768px){

.hero{
    flex-direction:column;
}

.hero-content{
    width:100%;
    margin-left:0;
    padding:20px;
    text-align:center;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}
}
@media(max-width:768px){

.hero-content{
    margin-left:0;
    margin-top:0;
    text-align:center;
    max-width:100%;
    padding:20px;
}

.hero h1{
    font-size:50px;
    line-height:1.2;
}

.hero{
    min-height:auto;
    padding:120px 0 50px;
}

.hero-stats{
    position:static;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

}
@media(max-width:768px){

.logo{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.logo img{
    height:70px;
}

.logo span{
    font-size:20px;
    line-height:1.2;
    text-align:center;
}

}
.menu-toggle{
    display:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
    position:absolute;
    right:20px;
    top:20px;
    z-index:1001;
}

nav{
    display:none;
    flex-direction:column;
    width:100%;
    text-align:center;
    margin-top:15px;
}

nav.active{
    display:flex;
}

}