*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#222;
    line-height:1.6;
    scroll-behavior:smooth;
    }
    
    
    /* NAVBAR */
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
    }
    
    .logo{
    font-weight:600;
    font-size:20px;
    letter-spacing:1px;
    }
    
    .navbar ul{
    display:flex;
    gap:28px;
    list-style:none;
    }
    
    .navbar a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
    }
    
    .navbar a::after{
    content:"";
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:#ff6b00;
    transition:0.4s;
    }
    
    .navbar a:hover::after{
    width:100%;
    }
    
    
    /* HERO */
    
    .hero{
    height:75vh;
    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1556388158-158ea5ccacbd") center/cover;
    
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    }
    
    .hero h1{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:white;
    margin-bottom:10px;
    }
    
    .hero p{
    color:#ddd;
    font-size:18px;
    }
    
    
    /* INTRO */
    
    .intro{
    display:flex;
    gap:60px;
    padding:90px 8%;
    align-items:center;
    }
    
    .intro-text h2{
    font-size:32px;
    margin-bottom:15px;
    }
    
    .intro-text p{
    color:#555;
    margin-bottom:10px;
    }
    
    .intro img{
    width:100%;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }
    
    
    /* SERVICES */
    
    .services{
    padding:80px 8%;
    }
    
    .service{
    display:flex;
    gap:50px;
    align-items:center;
    margin-bottom:80px;
    transition:0.6s;
    }
    
    .reverse{
    flex-direction:row-reverse;
    }
    
    .service img{
    width:420px;
    border-radius:12px;
    transition:0.6s;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    }
    
    .service img:hover{
    transform:scale(1.06);
    }
    
    .service-text h3{
    font-size:28px;
    margin-bottom:10px;
    }
    
    .service-text p{
    color:#555;
    }
    
    .btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    border-radius:30px;
    background:#ff6b00;
    color:white;
    text-decoration:none;
    transition:0.3s;
    }
    
    .btn:hover{
    background:#e65c00;
    transform:translateY(-2px);
    }
    
    
    /* WHY SECTION */
    
    .why{
    padding:90px 8%;
    text-align:center;
    background:white;
    }
    
    .why h2{
    font-size:36px;
    margin-bottom:40px;
    }
    
    .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    }
    
    .card{
    background:#fafafa;
    padding:30px;
    border-radius:12px;
    transition:0.4s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    }
    
    .card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
    }
    
    .icon{
    font-size:32px;
    margin-bottom:12px;
    }
    
    
    /* LINKS */
    
    .links{
    display:flex;
    gap:80px;
    padding:70px 8%;
    background:#f1f1f1;
    }
    
    .links h4{
    margin-bottom:10px;
    }
    
    .links a{
    display:block;
    margin-bottom:6px;
    text-decoration:none;
    color:#333;
    }
    
    .links a:hover{
    color:#ff6b00;
    }
    
    
    /* FOOTER */
    
    footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
    }
    
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .hero h1{
    font-size:34px;
    }
    
    .service,
    .intro{
    flex-direction:column;
    text-align:center;
    }
    
    .service img{
    width:100%;
    }
    
    .why-grid{
    grid-template-columns:1fr;
    }
    
    .links{
    flex-direction:column;
    }
    
    }



    /* FOOTER TOP */

.footer-top{

    background:#111;
    color:white;
    
    padding:80px 8%;
    
    }
    
    .footer-grid{
    
    display:grid;
    
    grid-template-columns:repeat(4,1fr);
    
    gap:40px;
    
    }
    
    .footer-col h3{
    
    font-size:22px;
    margin-bottom:15px;
    
    }
    
    .footer-col h4{
    
    margin-bottom:15px;
    
    }
    
    .footer-col p{
    
    color:#bbb;
    line-height:1.6;
    
    }
    
    .footer-col a{
    
    display:block;
    
    margin-bottom:8px;
    
    text-decoration:none;
    
    color:#bbb;
    
    transition:0.3s;
    
    }
    
    .footer-col a:hover{
    
    color:#ff6b00;
    padding-left:5px;
    
    }
    
    
    
    /* FOOTER */
    
    footer{
    
    background:#000;
    
    color:#aaa;
    
    text-align:center;
    
    padding:25px;
    
    font-size:14px;
    
    }
    
    
    
    



    /* ===== UNIVERSAL NAVBAR RESPONSIVE FIX ===== */

.navbar{
    flex-wrap:wrap;
    }
    
    /* NAV LINKS FLEX */
    
    .nav-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    }
    
    /* DROPDOWN POSITION FIX */
    
    .dropdown{
    top:100%;
    left:0;
    }
    
    /* TABLET */
    
    @media (max-width:1024px){
    
    .navbar{
    padding:12px 5%;
    }
    
    .logo{
    font-size:20px;
    }
    
    .nav-links{
    gap:20px;
    }
    
    }
    
    /* MOBILE */
    
    @media (max-width:768px){
    
    .navbar{
    padding:12px 4%;
    }
    
    .nav-links{
    
    width:100%;
    justify-content:center;
    margin-top:10px;
    
    }
    
    .nav-links a{
    font-size:14px;
    }
    
    .dropdown{
    width:100%;
    }
    
    }
    
    /* SMALL MOBILE */
    
    @media (max-width:480px){
    
    .logo{
    font-size:18px;
    }
    
    .nav-links{
    gap:15px;
    }
    
    .nav-links a{
    font-size:13px;
    }
    
    }


     /* ===== CONTACT PAGE MOBILE FIX ===== */

@media (max-width:768px){

    .contact-container{
    display:flex;
    flex-direction:column;
    gap:25px;
    padding:0 15px;
    }
    
    .contact-column{
    width:100%;
    }
    
    .contact-column iframe{
    width:100%;
    }
    .footer-grid{
        display: flex;
        flex-direction: column;
     }
    

    }