/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= GLOBAL ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fafc;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */
header{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:linear-gradient(135deg,#ff4fa3,#8b5cf6,#3b82f6);
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#fff;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ffe082;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* ================= HERO ================= */
.hero{
    min-height:75vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
    background:linear-gradient(
rgba(255,79,163,.55),
rgba(139,92,246,.55),
rgba(59,130,246,.55)
),
    url('../images/hero.jpg')
   
    center/cover no-repeat;
}

.hero-text{
    max-width:850px;
}

.hero h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:15px;
    text-shadow:0 3px 15px rgba(0,0,0,.4);
}

.hero p{
    color:#fff;
    font-size:22px;
    font-weight:400;
}

/* ================= ABOUT ================= */
.about{
    padding:90px 8%;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-img img{
    border-radius:20px;
    height:420px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content h2{
    font-size:40px;
    margin-bottom:20px;
    color:#8b5cf6;
    font-weight:700;
}

.about-content p{
    margin-bottom:15px;
    color:#555;
    font-size:17px;
}

/* ================= SERVICES ================= */
.services{
    padding:90px 8%;
    background:#f8fafc;
    text-align:center;
}

.services h2{
    font-size:40px;
    margin-bottom:50px;
    color:#8b5cf6;
    font-weight:700;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff4fa3,#8b5cf6,#3b82f6,#ff9800);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.card i{
    font-size:42px;
    margin-bottom:15px;
    color:#8b5cf6;
}

.card h3{
    margin-bottom:10px;
    font-size:20px;
    font-weight:600;
}

.card p{
    color:#666;
}
/* ================= WHY CHOOSE US ================= */
.why{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.why h2{
    font-size:40px;
    margin-bottom:50px;
    color:#8b5cf6;
    font-weight:700;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card i{
    font-size:42px;
    color:#ff9800;
    margin-bottom:15px;
}

.why-card h3{
    margin-bottom:10px;
    font-size:20px;
}

.why-card p{
    color:#666;
}

/* ================= CONTACT ================= */
.contact{
    padding:90px 8%;
    background:#f8fafc;
}

.contact-title{
    text-align:center;
    font-size:40px;
    color:#8b5cf6;
    margin-bottom:10px;
}

.contact-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    max-width:1200px;
    margin:auto;
}

.contact-info-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-item:last-child{
    margin-bottom:0;
}

.info-icon{
    font-size:22px;
    color:#8b5cf6;
    margin-top:5px;
}

.info-item h4{
    margin-bottom:5px;
    color:#222;
}

.info-item p{
    color:#666;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.contact-info-card a{
    text-decoration:none;
    color:#555;
    font-weight:600;
}

.contact-info-card a:hover{
    color:#8b5cf6;
}
/* ================= FOOTER ================= */
footer{
    background:linear-gradient(135deg,#1e1b4b,#312e81,#6d28d9);
    color:#fff;
    padding:70px 8% 20px;
}

.footer-content{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.footer-section h3{
    margin-bottom:20px;
    font-size:22px;
    color:#ffd54f;
}

.footer-section p{
    color:#e5e7eb;
    margin-bottom:10px;
}

.footer-section a{
    display:block;
    text-decoration:none;
    color:#e5e7eb;
    margin-bottom:10px;
    transition:.3s;
}

.footer-section a:hover{
    color:#ffd54f;
}

.footer-bottom{
    max-width:1200px;
    margin:auto;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#e5e7eb;
}

.footer-bottom a{
    color:#ffd54f;
    text-decoration:none;
    font-weight:600;
}

/* ================= TABLET ================= */
@media(max-width:992px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}

/* ================= MOBILE MENU ================= */
@media(max-width:768px){

    header{
        padding:15px 5%;
    }

    .logo{
        font-size:24px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:linear-gradient(135deg,#ff4fa3,#8b5cf6,#3b82f6);
        display:none;
        flex-direction:column;
        text-align:center;
        padding:20px;
        gap:18px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
    }

    nav.active{
        display:flex;
    }

    .hero{
        min-height:60vh;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:18px;
    }

    .services h2,
    .why h2,
    .contact-title,
    .about-content h2{
        font-size:30px;
    }

    .service-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .contact-info-card{
        padding:25px;
    }
}