/* ======================================================
   KUMARI KANDAM - STYLE.CSS (PART 1)
====================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */

:root{

--primary:#1F5E3B;
--secondary:#C89A32;
--light:#F9F7F2;
--white:#ffffff;
--dark:#222222;
--gray:#777;
--border:#e7e7e7;

--shadow:0 15px 40px rgba(0,0,0,.08);

}

/* ---------- RESET ---------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--dark);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

/* ---------- CONTAINER ---------- */

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ---------- SECTION ---------- */

section{

padding:100px 0;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

display:inline-block;
color:var(--secondary);
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:10px;

}

.section-title h2{

font-family:'Cinzel',serif;
font-size:42px;
color:var(--primary);
margin-bottom:20px;

}

.section-title p{

color:#666;
max-width:700px;
margin:auto;

}

/* ---------- BUTTON ---------- */

.btn{

display:inline-block;
padding:14px 35px;

background:var(--secondary);

color:#fff;

border-radius:40px;

font-weight:600;

transition:.4s;

}

.btn:hover{

background:var(--primary);

transform:translateY(-3px);

}

.btn-outline{

display:inline-block;

padding:14px 35px;

border:2px solid #fff;

border-radius:40px;

color:#fff;

margin-left:15px;

transition:.4s;

}

.btn-outline:hover{

background:#fff;

color:var(--primary);

}

/* ---------- HEADER ---------- */

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.85);

backdrop-filter:blur(15px);

box-shadow:0 2px 15px rgba(0,0,0,.08);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

/* ---------- LOGO ---------- */

.logo img{

height:90px;

}

/* ---------- NAV ---------- */

.navbar ul{

display:flex;

gap:35px;

}

.navbar a{

color:var(--dark);

font-weight:500;

position:relative;

transition:.3s;

}

.navbar a:hover,

.navbar .active{

color:var(--primary);

}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--secondary);

transition:.4s;

}

.navbar a:hover::after{

width:100%;

}

/* ---------- HERO ---------- */
/*
.hero{

height:100vh;

position:relative;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

}

.hero-image{

position:absolute;

width:100%;

height:100%;

object-fit:cover;

}

.hero{

    margin-top:90px;

    width:100%;

    height:auto;

}
section.hero {
    padding: 90px 0 0;
}
.hero img{

    width:100%;

    height:auto;

    display:block;

}*/

/* Hero */

.hero{

    margin-top:90px;
    width:100%;
    
    overflow:hidden;
    background:#000;

}

.heroSlider{

    width:100%;
    height:100%;

}
section.hero { padding: 0 0; }
.heroSlider .swiper-slide{

    display:flex;
    justify-content:center;
    align-items:center;

}

.heroSlider img{

    width:100%;
    height:100%;
    object-fit:contain;   /* Shows the full banner */

}

/* Pagination */

.swiper-pagination-bullet{

    background:#fff;
    opacity:.8;

}

.swiper-pagination-bullet-active{

    background:#C89A32;

}

/* Arrows */

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}
.overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55));

}

.hero-content{

position:relative;

text-align:center;

color:#fff;

max-width:850px;

padding:20px;

animation:fadeUp 1s ease;

}

.hero-content h4{

font-size:20px;

letter-spacing:3px;

margin-bottom:15px;

color:#F3D38C;

text-transform:uppercase;

}

.hero-content h1{

font-family:'Cinzel',serif;

font-size:70px;

line-height:1.2;

margin-bottom:25px;

}

.hero-content p{

font-size:20px;

line-height:1.8;

margin-bottom:35px;

}

/* ---------- HERO BUTTONS ---------- */

.hero-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:20px;

}

/* ---------- ABOUT ---------- */

.about{

background:#fff;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

border-radius:20px;

box-shadow:var(--shadow);

}

.about-content .sub-title{

display:inline-block;

font-weight:600;

color:var(--secondary);

margin-bottom:10px;

letter-spacing:2px;

}

.about-content h2{

font-family:'Cinzel',serif;

font-size:34px;

margin-bottom:25px;

color:var(--primary);

}

.about-content p{

margin-bottom:18px;

line-height:1.8;

color:#555;

}

/* ---------- ABOUT BOX ---------- */

.about-boxes{

display:flex;

gap:20px;

margin:35px 0;

flex-wrap:wrap;

}

.about-boxes .box{

flex:1;

min-width:150px;

padding:25px;

background:#f8f8f8;

border-radius:15px;

text-align:center;

transition:.4s;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.about-boxes .box:hover{

background:var(--primary);

color:#fff;

transform:translateY(-8px);

}

.about-boxes .box i{

font-size:35px;

color:var(--secondary);

margin-bottom:15px;

}

.about-boxes .box:hover i{

color:#fff;

}

/* ---------- ANIMATION ---------- */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/* ======================================================
   WHY CHOOSE US
====================================================== */

.why-choose{
    background:linear-gradient(180deg,#f8f7f2,#ffffff);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    border-top:5px solid transparent;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--secondary);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.why-card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* ======================================================
   PRODUCTS
====================================================== */

.products{
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 50px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:30px;
}

.product-info h3{
    color:var(--primary);
    margin-bottom:12px;
}

.product-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.btn-small{
    display:inline-block;
    padding:10px 24px;
    background:var(--primary);
    color:#fff;
    border-radius:30px;
    transition:.3s;
}

.btn-small:hover{
    background:var(--secondary);
}

/* ======================================================
   HERITAGE
====================================================== */

.heritage{
    background:linear-gradient(135deg,#184d35,#24583f);
    color:#fff;
}

.heritage .section-title h2,
.heritage .section-title span{
    color:#fff;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.timeline-item{
    text-align:center;
    position:relative;
}

.circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.timeline-item h3{
    margin-bottom:15px;
}

.timeline-item p{
    color:#ddd;
    line-height:1.8;
}

/* ======================================================
   PROCESS
====================================================== */

.process{
    background:#faf9f5;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.step{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.step:hover{
    transform:translateY(-10px);
}

.number{
    width:70px;
    height:70px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    font-weight:700;
}

.step h3{
    margin-bottom:15px;
    color:var(--primary);
}

.step p{
    color:#666;
    line-height:1.7;
}
/* ======================================================
   TESTIMONIALS
====================================================== */

.testimonials{
    background:#ffffff;
}

.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);
    transition:.4s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.stars{
    color:#f7b500;
    font-size:22px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:var(--primary);
}

/* ======================================================
   FAQ
====================================================== */

.faq{
    background:#f8f7f2;
}

.faq-box{
    max-width:900px;
    margin:auto;
}

.faq details{
    background:#fff;
    margin-bottom:18px;
    border-radius:12px;
    padding:18px 25px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.faq summary{
    cursor:pointer;
    font-weight:600;
    color:var(--primary);
    font-size:18px;
}

.faq p{
    margin-top:15px;
    line-height:1.8;
    color:#666;
}

/* ======================================================
   BLOG
====================================================== */

.blog{
    background:#fff;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.blog-card{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    background:#fff;
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card h3{
    padding:25px 25px 10px;
    color:var(--primary);
}

.blog-card a{
    display:inline-block;
    padding:0 25px 25px;
    color:var(--secondary);
    font-weight:600;
}

/* ======================================================
   CONTACT
====================================================== */

.contact{
    background:#faf9f5;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h3{
    font-family:'Cinzel',serif;
    color:var(--primary);
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
    color:#555;
}

.contact-info i{
    color:var(--secondary);
    margin-right:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

.contact-form textarea{
    resize:none;
}

/* ======================================================
   FOOTER
====================================================== */

footer{
    background:#143a2b;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:40px;
}

footer h3{
    margin-bottom:18px;
    color:#f5d27b;
}

footer ul li{
    margin-bottom:10px;
}

footer a{
    color:#ddd;
    transition:.3s;
}

footer a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#1e5b42;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--secondary);
}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:25px 0;
}

.copyright{
    text-align:center;
    color:#ddd;
}

/* ======================================================
   WHATSAPP BUTTON
====================================================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ======================================================
   BACK TO TOP
====================================================== */

.back-top{
    position:fixed;
    left:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:var(--secondary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.back-top:hover{
    background:var(--primary);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:992px){

.hero-content h1{
    font-size:48px;
}

.about .container,
.contact-grid{
    grid-template-columns:1fr;
}

.navbar{
    display:none;
}

.hero{
    height:80vh;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-outline{
    margin-left:0;
}

.product-grid,
.blog-grid,
.why-grid,
.process-grid,
.timeline,
.testimonial-grid{
    grid-template-columns:1fr;
}

.header .container{
    height:80px;
}

.logo img{
    height:55px;
}

section{
    padding:70px 0;
}

}