/* ==========================================
   Gulaz Business Centre Website
   style.css - Part 1
   ========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    font-size:16px;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ---------- COLORS ---------- */

:root{

    --primary:#024c23;
    --secondary:#0F766E;
    --dark:#1E293B;
    --light:#ffffff;
    --gray:#6B7280;
    --background:#F4F7FB;
    --border:#E5E7EB;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:15px;

}

/* ---------- BUTTONS ---------- */

.btn{

    display:inline-block;
    padding:15px 35px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    transition:.35s;
    font-weight:600;

}

.btn:hover{

    background:var(--secondary);
    transform:translateY(-3px);

}

.btn-outline{

    background:transparent;
    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;
    color:var(--primary);

}

/* ---------- HEADER ---------- */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    box-shadow:var(--shadow);
    z-index:999;

}

.logo{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:700;
    color:var(--primary);

}

.logo i{

    font-size:28px;

}

nav ul{

    display:flex;
    gap:30px;

}

nav ul li a{

    color:var(--dark);
    font-weight:500;
    transition:.3s;

}

nav ul li a:hover{

    color:var(--primary);

}

/* ---------- HERO ---------- */

.hero{

    min-height:100vh;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
    padding:120px 8% 60px;
    background:linear-gradient(135deg,#024c23,#078e22);

}

.hero-content h1{

    font-size:55px;
    color:#fff;
    line-height:1.2;

}

.hero-content h1 span{

    color:#FFE66D;

}

.hero-content p{

    color:#fff;
    margin:30px 0;
    font-size:18px;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

.hero-image{

    animation:float 4s ease-in-out infinite;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.hero-image img{

    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

/* ---------- FEATURES ---------- */

.features{

    padding:80px 8%;
    background:#fff;

}

.features .container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.feature{

    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:35px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

}

.feature i{

    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;

}

.feature h3{

    margin-bottom:15px;
    color:var(--dark);

}

.feature p{

    color:var(--gray);

}

/* ---------- ABOUT ---------- */

#about{

    padding:100px 8%;
    background:var(--background);

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;
    color:var(--dark);

}

.section-title p{

    color:var(--gray);
    margin-top:15px;

}

.about-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;

}

.about-grid img{

    border-radius:20px;
    box-shadow:var(--shadow);

}

.about-grid h3{

    font-size:32px;
    margin-bottom:20px;
    color:var(--dark);

}

.about-grid p{

    margin-bottom:20px;
    color:var(--gray);

}

/* ---------- ANIMATION ---------- */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================
   style.css - Part 2
   Services, Gallery, Pricing & Testimonials
========================================== */

/* ---------- SERVICES ---------- */

.services{
    padding:100px 8%;
    background:#ffffff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:0.3s ease;
    border:1px solid var(--border);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.service-card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card .service-icon{
    width:48px;
    height:48px;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--dark);
}

.service-card p{
    color:var(--gray);
}

/* ---------- GALLERY ---------- */

.gallery{
    padding:100px 8%;
    background:var(--background);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.4s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ---------- PRICING ---------- */

.pricing{
    padding:100px 8%;
    background:#ffffff;
}

.pricing table{
    width:100%;
    border-collapse:collapse;
    margin-top:40px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.pricing thead{
    background:var(--primary);
    color:#fff;
}

.pricing th,
.pricing td{
    padding:18px;
    text-align:left;
}

.pricing tbody tr:nth-child(even){
    background:#f4f7fb;
}

.pricing tbody tr:hover{
    background:#eef5ff;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials{
    padding:100px 8%;
    background:var(--background);
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    margin:25px auto;
    max-width:700px;
    text-align:center;
}

.testimonial-card p{
    font-size:18px;
    color:var(--gray);
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#FFD700;
    font-size:24px;
}

/* ---------- SECTION SPACING ---------- */

section{
    scroll-margin-top:90px;
}
/* ==========================================
   style.css - Part 3
   Contact, Footer, Responsive Design
========================================== */

/* ---------- CONTACT ---------- */

.contact{
    padding:100px 8%;
    background:#ffffff;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    background:#f8f9fa;
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    margin-bottom:20px;
    color:var(--primary);
}

.contact-info p{
    margin:18px 0;
    color:var(--gray);
}

.contact-info i{
    color:var(--primary);
    margin-right:10px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
}

/* ---------- SOCIAL ICONS ---------- */

.social-icons{
    margin-top:25px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    margin-right:10px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/* ---------- MAP ---------- */

.map iframe{
    display:block;
    width:100%;
    border:4px solid var(--primary);
    border-radius:20px;
    box-shadow:var(--shadow);
}

video,
iframe,
.video{
    border:4px solid var(--primary);
    border-radius:20px;
    box-shadow:var(--shadow);
}

.video-card video{
    width:100%;
    height:100%;
    min-height:220px;
    object-fit:cover;
    border-radius:15px;
    border:none;
    box-shadow:none;
}

.video-card{
    padding:0;
    overflow:hidden;
}

/* ---------- FOOTER ---------- */

footer{
    background:var(--dark);
    color:#fff;
    padding:70px 8% 30px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-content h3{
    margin-bottom:20px;
}

.footer-content p,
.footer-content li{
    color:#d1d5db;
    margin-bottom:10px;
}

.footer-content ul{
    padding:0;
}

.footer-content a{
    color:#d1d5db;
    transition:.3s;
}

.footer-content a:hover{
    color:#fff;
}

footer hr{
    margin:40px 0 20px;
    border:none;
    height:1px;
    background:#374151;
}

footer .copyright{
    text-align:center;
    color:#9ca3af;
}

/* ---------- BACK TO TOP ---------- */

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    font-size:20px;
    box-shadow:var(--shadow);
    transition:.3s;
}

#topBtn:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:992px){

    header{
        flex-direction:column;
        gap:15px;
        padding:15px 5%;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:160px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .about-grid,
    .contact-container{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:30px;
    }

    .pricing{
        overflow-x:auto;
    }

    .pricing table{
        min-width:600px;
    }

    .btn{
        display:inline-block;
        width:100%;
        text-align:center;
    }

    .social-icons{
        text-align:center;
    }
}

@media (max-width:480px){

    html{
        font-size:14px;
    }

    header{
        padding:15px;
    }

    .logo{
        font-size:20px;
    }

    .hero{
        padding:140px 20px 60px;
    }

    .services,
    .gallery,
    .pricing,
    .contact,
    #about{
        padding:70px 20px;
    }
}