/* ======================
   Global CSS
====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ======================
   Top Bar
====================== */

.top-bar {
    background: #0d6efd;
    color: white;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ======================
   Header
====================== */

header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 20px;
    color: #0d6efd;
}

.company-name h2 {
    font-size: 22px;
    margin-bottom: 3px;
    color: #0d6efd;
    margin: 0;
}

.company-name p {
    font-size: 14px;
    margin-top: 5px;
    color: #555;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #0d6efd;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0d6efd;
}

/* Mobile View */

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        margin-top: 15px;
        gap: 15px;
        padding: 15px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        text-align: center;
    }

    .menu a {
        font-size: 16px;
    }
}

/* ======================
   Hero Section
====================== */

.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0, 0, 0, .6),
            rgba(0, 0, 0, .6)),
        url('images/hero.png');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.hero-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #0d6efd;
    color: white;
    border-radius: 5px;
    transition: .3s;
}

.btn:hover {
    background: #084298;
}

/* ======================
   About
====================== */

.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0d6efd;
}

.about p {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* ======================
   Services
====================== */

.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.icon {
    width: 70px;
    height: 70px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 30px;
    margin-bottom: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: .4s;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.card h3 {
    margin-bottom: 15px;
    color: #0d6efd;
}

.card a {
    color: #0d6efd;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.card:hover .icon {
    transform: rotate(360deg);
    transition: 0.8s;
}

/* ======================
   Why Us
====================== */

.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

/* ======================
   Stats
====================== */

.stats {
    background: #0d6efd;
    color: white;
    padding: 80px 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: 50px;
}

/* ======================
   CTA
====================== */

.cta {
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 25px;
}

/* ======================
   Footer
====================== */

footer {
    background: #111;
    color: white;
    padding: 50px 0;
    text-align: center;
}

footer p {
    margin-top: 5px;
}

footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    margin: 25px 0;
}

.footer-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .3);
    margin: 25px 0;
}

.footer-bottom {
    text-align: center;
    color: white;
    padding-bottom: 20px;
}

/* ======================
   Mobile Responsive
====================== */

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
    }

    .menu {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .stats .container {
        gap: 30px;
    }
}

/* About Page */

.page-banner {
    height: 400px;
    background:
        linear-gradient(rgba(0, 0, 0, .6),
            rgba(0, 0, 0, .6)),
        url('images/aboutus.png');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.page-banner h1 {
    font-size: 50px;
}

.about-page {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content h2 {
    color: #0d6efd;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}

.why-about {
    padding: 80px 0;
}

.why-about h2 {
    text-align: center;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}

/* Services Page */

.service-page {
    padding: 80px 0;
}

.service-box {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.service-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.service-content h2 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

.service-box:hover {
    transform: translateY(-5px);
    transition: .4s;
}

/* Gallery Page */

.gallery-page {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact Page */

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 25px;
    color: #0d6efd;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.info-box i {
    color: #0d6efd;
    font-size: 22px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
}

.map {
    margin-top: 50px;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}

.whatsapp {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.clients-page {
    padding: 80px 0;
}

.clients-page h1 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 50px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.client-card {
    background: #fff;
    
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.client-card img {
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.testimonials{
    padding:80px 0;
    background:#f8f9fa;
}

.testimonials h2{
    text-align:center;
    color:#0d6efd;
    margin-bottom:40px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.testimonial-card h4{
    margin-top:15px;
    color:#0d6efd;
}