/*================ GOOGLE FONT ================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f8f8;
}
/* ================= PREMIUM NAVBAR ================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:18px 20px;
    transition:.35s;
}

.header.sticky{
    padding:8px 20px;
    background:rgba(10,45,35,.96);
    backdrop-filter:blur(20px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.header.sticky .logo{
    width:55px;
    height:55px;
    transition:.35s;
}

.header.sticky .brand h2{
    font-size:24px;
    transition:.35s;
}

.header.sticky .brand p{
    font-size:12px;
    transition:.35s;
}

.logo{
    width:90px;
    height:90px;
    object-fit:contain;
    display:block;
}

.brand{
    font-size:32px;
    font-weight:800;
    color:#07e412;
    letter-spacing:-1px;
}

.brand span{
    color:#FF7A00;
}

.navbar{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(10,45,35,.95);
    backdrop-filter:blur(20px);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo{
    width:70px;
    height:70px;
    object-fit:contain;
}

.line{
    width:1px;
    height:45px;
    background:rgba(255,255,255,.25);
}



.menu{
    display:flex;
    list-style:none;
    gap:40px;
}

.menu li{
    position:relative;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.menu a:hover,
.menu a.active{
    color:#ff9800;
}

.menu a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:3px;
    border-radius:20px;
    background:#ff9800;
}

.visit-btn{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ff9800;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.visit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,152,0,.4);
}

/* Responsive */

@media (max-width:1100px){

.menu{
    display:none;
}

.brand h2{
    font-size:24px;
}

.brand p{
    display:none;
}

.logo{
    width:55px;
    height:55px;
}

.visit-btn{
    padding:12px 18px;
    font-size:16px;
}

}

/* LOGO */

.logo-area{

display:flex;

align-items:center;

gap:18px;

}

.logo{

width:60px;

}

.line{

width:1px;

height:60px;

background:#ffffff40;

}

.brand h2{

color:white;

font-size:30px;

font-weight:800;

}

.brand p{

color:#ffb347;

margin-top:6px;

font-size:16px;

}

/* MENU */

.menu{

display:flex;

gap:45px;

list-style:none;

}


.menu a:hover{

color:#ff9800;

}

.menu .active{

color:#ff9800;

}

.menu .active::after{

content:"";

position:absolute;

bottom:-10px;

left:0;

width:100%;

height:3px;

background:#ff9800;

border-radius:20px;

}



.visit-btn:hover{

transform:translateY(-5px);

box-shadow:0 12px 25px rgba(255,152,0,.45);

}

/*================ LOGO ================*/

.logo-section{

display:flex;

align-items:center;

gap:20px;

}

.logo-section img{

width:75px;

}

.divider{

width:1px;

height:70px;

background:rgba(255,255,255,.3);

}

.brand h2{

font-size:42px;

font-weight:800;

color:#fff;

}

.brand p{

margin-top:8px;

color:#ffb347;

font-size:18px;

font-weight:500;

}

/*================ MENU ================*/

.nav-links{

display:flex;

align-items:center;

list-style:none;

gap:45px;

}

.nav-links li{

position:relative;

}

.nav-links a{

color:white;

font-size:22px;

font-weight:600;

transition:.4s;

}

.nav-links a:hover{

color:#ff9800;

}

.nav-links a.active{

color:#ff9800;

}

.nav-links a.active::after{

content:"";

position:absolute;

left:0;

bottom:-10px;

width:100%;

height:3px;

background:#ff9800;

border-radius:20px;

}



.visit-btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 25px rgba(255,152,0,.45);

}

/*================ MOBILE ================*/

@media(max-width:1200px){

.brand h2{

font-size:30px;

}

.brand p{

display:none;

}

.nav-links{

gap:25px;

}

.visit-btn{

padding:14px 25px;

font-size:18px;

}

}

@media(max-width:992px){

.nav-links{

display:none;

}

.visit-btn{

display:none;

}

.logo-section img{

width:55px;

}

.brand h2{

font-size:24px;

}

.divider{

height:50px;

}

.navbar{

padding:15px 20px;

}

}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#fff;
    overflow-x:hidden;
}

section{
    padding:100px 8%;
}

a{
    text-decoration:none;
}

/* ================= NAVBAR ================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    z-index:1000;
    transition:.4s;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
}

.logo h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav ul a:hover{
    color:#ff8c00;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff8c00;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255,140,0,.4);
}

/* ================= HERO ================= */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.60),
    rgba(0,0,0,.60)),
    url("image/family-big-mart-attibele.jpg");
	

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;

}

.hero-content{
    max-width:750px;
}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    animation:up 1s;
}

.hero p{
    margin:25px auto;
    font-size:20px;
    line-height:1.8;
    animation:up 1.5s;
}

.hero .btn{
    animation:up 2s;
}

@keyframes up{

from{
    opacity:0;
    transform:translateY(60px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

nav ul{
    display:none;
}

.hero h1{
    font-size:45px;
}

.hero p{
    font-size:16px;
}

.logo h2{
    font-size:20px;
}

.logo img{
    width:45px;
}

section{
    padding:80px 20px;
}

}

/* ================= SECTION TITLE ================= */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#ff8c00;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    margin-top:10px;
    color:#222;
}

/* ================= ABOUT ================= */

.about{
    background:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-content h3{
    font-size:34px;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
}

.stats{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-box h2{
    color:#ff8c00;
    font-size:34px;
}

/* ================= CATEGORIES ================= */



/* ================= WHY US ================= */

.why-us{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    padding:40px;
    text-align:center;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#ff8c00;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.about-container{
    grid-template-columns:1fr;
}

.stats{
    flex-direction:column;
}

}


/* ================= GALLERY ================= */

.gallery{
    background:#fafafa;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ================= TESTIMONIALS ================= */

.testimonials{
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.testimonial-card p{
    margin:20px 0;
    color:#666;
    line-height:1.8;
}

.stars{
    color:#ffb400;
    font-size:22px;
}

/* ================= CONTACT ================= */

.contact{
    background:#fafafa;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-info h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:18px;
    color:#555;
}

.contact-info i{
    color:#ff8c00;
    margin-right:10px;
}

.map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
    border-radius:20px;
}

@media(max-width:900px){

.contact-wrapper{
grid-template-columns:1fr;
}

}


/* ================= FOOTER ================= */

footer{

background:#111827;

color:white;

padding:80px 8% 20px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer-box h3{

margin:20px 0;

}

.footer-box p{

line-height:1.8;

color:#ddd;

}

.footer-box a{

display:block;

margin:12px 0;

color:#ddd;

transition:.3s;

}

.footer-box a:hover{

color:#ff8c00;

padding-left:8px;

}

.copyright{

text-align:center;

margin-top:40px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.1);

color:#bbb;

}

/* WhatsApp */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:white;

box-shadow:0 15px 30px rgba(0,0,0,.2);

z-index:999;

transition:.4s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/* Top Button */

#topBtn{

position:fixed;

bottom:100px;

right:25px;

width:55px;

height:55px;

border:none;

background:#ff8c00;

color:white;

font-size:20px;

border-radius:50%;

cursor:pointer;

display:none;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/* Hover Animation */

.category-card,
.why-card,
.stat-box,
.testimonial-card{

transition:.4s;

}

.category-card:hover,
.why-card:hover,
.stat-box:hover,
.testimonial-card:hover{

transform:translateY(-10px);

}

/* Fade Animation */

.fade{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.fade.show{

opacity:1;

transform:translateY(0);

}


/*================ LOCATIONS ================*/

.locations{

padding:120px 8%;

background:#f8f8f8;

}

.location-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:30px;

margin-top:60px;

}

.location-card{

background:white;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.location-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.location-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

}

.location-card:hover img{

transform:scale(1.08);

}

.location-content{

padding:28px;

}

.location-content h3{

font-size:28px;

color:#173d31;

margin-bottom:15px;

}

.location-content p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.location-content a{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 22px;

background:#173d31;

color:white;

border-radius:14px;

font-weight:600;

transition:.3s;

}

.location-content a:hover{

background:#ff9800;

}

.location-content a i{

transition:.3s;

}

.location-content a:hover i{

transform:translateX(8px);

}

@media(max-width:768px){

.location-grid{

grid-template-columns:1fr;

}

}