/* ===================================
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;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
line-height:1.7;
color:#333;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* ===================================
TOP BAR
=================================== */

.topbar{
background:#6400a7;
padding:8px 0;
color:#fff;
}

.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.topbar-left{
display:flex;
gap:35px;
align-items:center;
}

.top-item{
font-size:15px;
font-weight:500;
}

.top-item i{
margin-right:8px;
}

.topbar-right{
display:flex;
align-items:center;
gap:15px;
}

.topbar-right span{
font-weight:600;
}

.topbar-right a{
width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.15);
border-radius:50%;
color:#fff;
transition:.3s;
}

.topbar-right a:hover{
background:#ff0070;
}

/* ===================================
HEADER
=================================== */

.header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
}

.logo img{
height:95px;
}

.nav-menu{
display:flex;
align-items:center;
gap:45px;
margin-top: 1rem;
}

.nav-menu a{
color:#222;
font-size:17px;
font-weight:600;
transition:.3s;
}

.nav-menu a:hover{
color:#ff0070;
}

.header-btn{
background:#ff0070;
padding:14px 28px;
border-radius:50px;
color:#fff;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
transition:.3s;
}

.header-btn:hover{
background:#e30063;
}

.header-btn span{
width:30px;
height:30px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#ff0070;
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
color:#6400a7;
}

/* ===================================
MOBILE MENU
=================================== */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:330px;
height:100%;
background:#070914;
z-index:99999;
transition:.4s;
overflow-y:auto;
}

.mobile-menu.active{
right:0;
}

.mobile-logo{
padding:40px;
text-align:center;
}

.mobile-logo img{
width:150px;
margin:auto;
}

.close-btn{
position:absolute;
right:20px;
top:20px;
font-size:28px;
color:#fff;
cursor:pointer;
}

.mobile-menu ul li{
border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu ul li a{
display:block;
padding:20px 25px;
color:#fff;
font-size:18px;
font-weight:500;
}

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:9999;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}

/* ===================================
BUTTONS
=================================== */

.btn{
display:inline-block;
background:#ff0070;
color:#fff;
padding:14px 30px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#ff0070;;
}

.btn-outline{
display:inline-block;
padding:14px 30px;
border:2px solid #fff;
color:#fff;
border-radius:50px;
font-weight:600;
margin-left:15px;
transition:.3s;
}

.btn-outline:hover{
background:#fff;
color:#111;
}

/* ===================================
HERO
=================================== */

.hero{
height:90vh;
background:url('../images/s1.jpg') center center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
}

.hero .overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:750px;
color:#fff;
}

.hero-content h1{
font-size:60px;
font-weight:800;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
}

/* ===================================
SECTION TITLE
=================================== */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.section-title p{
color:#777;
}

/* ===================================
SERVICES
=================================== */

.services{
padding:100px 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:40px 30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:45px;
color:#ff0070;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
}

/* ===================================
ABOUT
=================================== */

.about{
padding:100px 0;
background:#f8f8f8;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
border-radius:15px;
}

.about-content h2{
font-size:42px;
margin-bottom:20px;
}

.about-content p{
margin-bottom:25px;
}

/* ===================================
COUNTER
=================================== */

.counter{
padding:80px 0;
background:#6400a7;
color:#fff;
}

.counter-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.counter-grid h2{
font-size:48px;
font-weight:700;
}

/* ===================================
GALLERY
=================================== */

.gallery{
padding:100px 0;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
height:300px;
width:100%;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* ===================================
TESTIMONIAL
=================================== */

.testimonial{
padding:100px 0;
background:#f8f8f8;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.testimonial-card h4{
margin-top:20px;
color:#ff0070;
}

/* ===================================
CTA
=================================== */

.cta{
padding:100px 0;
text-align:center;
background:#6400a7;
color:#fff;
}

.cta h2{
font-size:45px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
}

/* ===================================
FOOTER
=================================== */
/* ==========================
PREMIUM FOOTER
========================== */

.footer{
    background:#0f172a;
    color:#fff;
    padding:80px 0 0;
    position:relative;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-box h3{
    font-size:22px;
    margin-bottom:25px;
    color:#fff;
    position:relative;
}

.footer-box h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#ff4da6;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ff4da6;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    background:#1e293b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff4da6;
    transform:translateY(-5px);
}

.footer-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#ff4da6;
    color:#fff;
    border-radius:30px;
    font-weight:600;
}

.footer-btn:hover{
    background:#ff2e93;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#94a3b8;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
        flex-direction:column;
    }

}
/* ===================================
RESPONSIVE
=================================== */

@media(max-width:992px){

.nav-menu,
.header-btn{
display:none;
}

.menu-btn{
display:block;
}

.topbar .container{
justify-content:center;
}

.topbar-left{
flex-direction:column;
gap:10px;
}

.topbar-right{
margin-top:15px;
}

.service-grid{
grid-template-columns:repeat(2,1fr);
}

.about-grid{
grid-template-columns:1fr;
}

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:45px;
}

}

@media(max-width:768px){

.hero{
height:80vh;
}

.hero-content h1{
font-size:36px;
}

.section-title h2{
font-size:32px;
}

.about-content h2{
font-size:32px;
}

.cta h2{
font-size:34px;
}

.gallery-grid,
.service-grid,
.counter-grid{
grid-template-columns:1fr;
}

.logo img{
height:70px;
}

.mobile-menu{
width:100%;
}

}

@media(max-width:576px){

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:15px;
}

.btn-outline{
margin-left:0;
margin-top:15px;
}

.top-item{
font-size:13px;
text-align:center;
}

.topbar-right{
justify-content:center;
}

}






/* ===================================
ABOUT PAGE BANNER
=================================== */

.page-header{
    position:relative;
    height:350px;
    background:url('../images/about-banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.page-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(74, 45, 115, 0.70);
}

.page-header-content{
    position:relative;
    z-index:2;
}

.page-header-content h1{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:35px;
    line-height:1.2;
}

.breadcrumb{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:8px 24px;
    border-radius:50px;
    font-size:20px;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.10);
}

.breadcrumb a{
    color:#111;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#ff0070;
}

.breadcrumb span{
    color:#6400a7;
}

/* ===================================
ABOUT COMPANY
=================================== */

.about-company{
    padding:100px 0;
}

.about-company .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-company img{
    border-radius:20px;
    width:100%;
}

.about-company h2{
    font-size:42px;
    margin-bottom:25px;
    color:#111;
}

.about-company p{
    margin-bottom:20px;
    color:#666;
}

/* ===================================
TEAM SECTION
=================================== */

.team-section{
    padding:100px 0;
    background:#f8f8f8;
}

.team-section .service-card{
    overflow:hidden;
}

.team-section img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:20px;
    transition:.4s;
}

.team-section .service-card:hover img{
    transform:scale(1.05);
}

/* ===================================
TESTIMONIALS
=================================== */

.testimonial{
    padding:100px 0;
    background:#fff;
}

.testimonial-card{
    position:relative;
}

.testimonial-card::before{
    content:"\f10d";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:35px;
    color:#ff0070;
    display:block;
    margin-bottom:15px;
}

/* ===================================
PAGE SECTION SPACING
=================================== */

.about-company,
.services,
.team-section,
.testimonial{
    position:relative;
}

.about-company::after,
.services::after,
.team-section::after{
    content:'';
    display:block;
    width:80px;
    height:3px;
    background:#ff0070;
    margin:60px auto 0;
    border-radius:10px;
}

/* ===================================
WHATSAPP BUTTON
=================================== */



/* ===================================
ACTIVE MENU
=================================== */

.nav-menu a.active{
    color:#ff0070;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:992px){

    .page-header{
        height:380px;
    }

    .page-header-content h1{
        font-size:52px;
    }

    .about-company .about-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .page-header{
        height:300px;
    }

    .page-header-content h1{
        font-size:38px;
        margin-bottom:20px;
    }

    .breadcrumb{
        padding:14px 25px;
        font-size:16px;
        gap:10px;
    }

    .about-company h2{
        font-size:32px;
    }

    .team-section img{
        height:260px;
    }

}

@media(max-width:576px){

    .page-header-content h1{
        font-size:32px;
    }

    .breadcrumb{
        padding:12px 20px;
        font-size:14px;
    }

    .about-company{
        padding:70px 0;
    }

}


/* ==========================
WHY CHOOSE SECTION
========================== */

.why-choose-section{
    padding:100px 0;
    background:#f8f9fa;
}

.why-choose-section .service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.why-choose-section .service-card:hover{
    transform:translateY(-8px);
}

.why-choose-section .service-card i{
    font-size:50px;
    color:#ff0070;
    margin-bottom:20px;
}

.why-choose-section .service-card h3{
    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
}



/* =========================
   SERVICES PAGE
========================= */

.services-section,
.featured-services,
.pricing-section,
.process-section,
.faq-section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#ff4d7d;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box i{
    font-size:50px;
    color:#ff4d7d;
    margin-bottom:20px;
}

.service-box h3{
    margin-bottom:15px;
}

/* PACKAGES */

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.package-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.package-content{
    padding:25px;
}

.package-content h3{
    color:#ff4d7d;
    margin-bottom:10px;
}

/* PRICING */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.pricing-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pricing-card.featured{
    background:linear-gradient(135deg,#ff4d7d,#ff8a00);
    color:#fff;
    transform:scale(1.05);
}

.price{
    font-size:42px;
    font-weight:700;
    margin:20px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.pricing-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

/* PROCESS */

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.process-card i{
    font-size:45px;
    color:#ff4d7d;
    margin-bottom:20px;
}

/* FAQ */

.faq-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

.faq-item{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#ff4d7d;
    margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .pricing-card.featured{
        transform:none;
    }

    .package-card img{
        height:220px;
    }

    .faq-container{
        grid-template-columns:1fr;
    }
}



/* =========================
   GALLERY PAGE
========================= */

.gallery-section{
    padding:80px 0;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.filter-btn{
    border:none;
    padding:12px 28px;
    border-radius:50px;
    background:#f5f5f5;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background:#ff4d7d;
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    color:#fff;
    font-size:24px;
    text-align:center;
}

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
}

.lightbox.active{
    display:flex;
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:260px;
    }

}

/* =========================
   GLOBAL RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
    color:#333;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   SECTION TITLE
========================= */
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

/* =========================
   BUTTON
========================= */
.btn{
    display:inline-block;
    padding:12px 25px;
    background:#ff4d7d;
    color:#fff;
    border-radius:30px;
    transition:0.3s;
    font-weight:600;
}

.btn:hover{
    background:#e63e6a;
}

/* =========================
   HEADER
========================= */
.header{
    background:#fff;
    padding:15px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-menu{
    display:flex;
    gap:20px;
}

.nav-menu li{
    list-style:none;
}

.nav-menu a:hover{
    color:#ff4d7d;
}

/* =========================
   PAGE HEADER
========================= */
.page-header{
    position:relative;
    background:url('../images/about1.jpg') center/cover no-repeat;
    padding:100px 0;
    color:#fff;
    text-align:center;
}

.page-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.page-header-content{
    position:relative;
    z-index:1;
}

.breadcrumb{
    margin-top:10px;
}

/* =========================
   CONTACT INFO GRID
========================= */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
}

.contact-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-card i{
    font-size:30px;
    color:#ff4d7d;
    margin-bottom:10px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section{
    padding:80px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* LEFT CONTENT */
.contact-content h2{
    font-size:28px;
    margin-bottom:10px;
}

.contact-content ul{
    margin-top:20px;
}

.contact-content li{
    margin-bottom:10px;
    color:#444;
}

/* FORM BOX */
.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#ff4d7d;
}

/* =========================
   MAP
========================= */
.map-box iframe{
    width:100%;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   FAQ
========================= */
.faq-container{
    max-width:800px;
    margin:auto;
}

.faq-item{
    background:#fff;
    padding:20px;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.faq-item h3{
    margin-bottom:8px;
}



/* =========================
   FOOTER
========================= */
.footer{
    background:#111;
    color:#ddd;
    padding:60px 0 20px;
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.footer-box h3{
    margin-bottom:15px;
    color:#fff;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a:hover{
    color:#ff4d7d;
}

.footer-logo{
    width:140px;
    margin-bottom:15px;
}

.footer-social a{
    margin-right:10px;
    color:#fff;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid #333;
    padding-top:20px;
}



/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .nav-menu{
        display:none;
    }

    .section-title h2{
        font-size:26px;
    }
}








/* ==========================
CONTAINER & GENERAL
========================== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #ff3366;
}

.section-title p {
    font-size: 16px;
    color: #555;
}

/* ==========================
CONTACT GRID
========================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: #fff;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ==========================
CONTACT FORM GRID
========================== */
.contact-form-section {
    padding: 50px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-content h2 {
    color: #ff3366;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-content p {
    color: #555;
    margin-bottom: 20px;
}

.contact-content ul {
    list-style: none;
    padding: 0;
}

.contact-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form-box button {
    background: #ff3366;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #e6004c;
}

/* Form inner grid */
.form-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ==========================
FAQ GRID
========================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 18px;
    color: #ff3366;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

/* ==========================
MAP SECTION
========================== */
.map-section {
    padding: 50px 0;
}

.map-section iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
}

/* ==========================
RESPONSIVE
========================== */
@media(max-width: 991px){
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-inner {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px){
    .contact-card {
        padding: 25px 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}
.contact-info {
    padding: 60px 0;
    background: #fef6f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Background colors for each card type */
.contact-card.call {
    background: linear-gradient(135deg, #ff7e5f, #ff3366);
}

.contact-card.email {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.contact-card.location {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

.contact-card.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}








@media only screen and (min-width: 320px) {
  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4000;
  }
}
@media only screen and (min-width: 320px) {
  .phonecall {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }
}