/* ==========================================================
   AAROGYAM INDIA
   STYLE.CSS
   VERSION : 2.0
   PART : 1 / 6
   ========================================================== */

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

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

/* ==========================================================
   CSS RESET
   ========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f8fa;

    color:#222;

    line-height:1.6;

    overflow-x:hidden;

}

/* ==========================================================
   ROOT VARIABLES
   ========================================================== */

:root{

    --primary:#0B7A3E;

    --primary-dark:#066633;

    --secondary:#FF9800;

    --white:#ffffff;

    --black:#222222;

    --gray:#666666;

    --light:#f7f8fa;

    --border:#e5e5e5;

    --shadow:0 8px 30px rgba(0,0,0,.08);

    --radius:14px;

    --transition:.35s ease;

    --max-width:1320px;

}

/* ==========================================================
   CONTAINER
   ========================================================== */

.container{

    width:92%;

    max-width:var(--max-width);

    margin:auto;

}

/* ==========================================================
   LINKS
   ========================================================== */

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

img{

    width:100%;

    display:block;

}

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

section{

    padding:90px 0;

}

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

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:var(--black);

    margin-bottom:18px;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:var(--gray);

    font-size:17px;

}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 34px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   CARD
   ========================================================== */

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    overflow:hidden;

}

/* ==========================================================
   COMMON IMAGE
   ========================================================== */

.full-banner{

    width:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

}
/* ==========================================================
   TOP BAR
========================================================== */

.top-bar{

    background:var(--primary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.top-left{

    font-weight:500;

}

.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-right a{

    color:#fff;

    font-weight:500;

}

.top-right a:hover{

    opacity:.8;

}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

 background:#ffffff;
    z-index:9999;

   background: linear-gradient(to right, #FFF3E0 0%, #FFCC80 40%, #EF6C00 100%);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:45px;

}

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

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:80px;

    height:auto;

}

/* ==========================================================
   HEADER RIGHT
========================================================== */

.header-right{

    display:flex;

    align-items:center;

    gap:25px;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.nav-menu{

    display:flex;

    align-items:center;

    gap:28px;

}

.nav-menu li{

    position:relative;

}

.nav-menu li a{

    display:block;

    padding:30px 0;

    font-size:15px;

    font-weight:600;

    color:var(--black);

    transition:var(--transition);

}

.nav-menu li a:hover{

    color:var(--primary);

}

.nav-menu li a.active{

    color:var(--primary);

}

/* ==========================================================
   DROPDOWN
========================================================== */

.dropdown-menu{

    position:absolute;

    left:0;

    top:100%;

    min-width:250px;

    background:#fff;

    border-radius:12px;

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

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    padding:15px 20px;

    font-size:15px;

    border-bottom:1px solid #eeeeee;

}

.dropdown-menu li:last-child a{

    border-bottom:none;

}

.dropdown-menu li a:hover{

    background:#f5f5f5;

    color:var(--primary);

    padding-left:28px;

}

/* ==========================================================
   HEADER ACTIONS
========================================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

/* ==========================================================
   SEARCH BUTTON
========================================================== */

.search-btn{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

   background: #16A34A;
color: #fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:var(--transition);

}

.search-btn img{

    width:22px;

}

.search-btn:hover{

    background:var(--primary);

}

.search-btn:hover img{

    filter:brightness(0) invert(1);

}

/* ==========================================================
   LOGIN BUTTON
========================================================== */

.login-btn{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--black);

}

.login-btn img{

    width:22px;

}

.login-btn:hover{

    color:var(--primary);

}

/* ==========================================================
   CART BUTTON
========================================================== */

.cart-btn{

    position:relative;

    display:flex;

    align-items:center;

}

.cart-btn img{

    width:24px;

}

.cart-count{

    position:absolute;

    top:-8px;

    right:-8px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:#ff3b30;

    color:#fff;

    font-size:11px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.menu-btn{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

.menu-btn img{

    width:28px;

}

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

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

  background: linear-gradient(to bottom, #D97706 0%, #F59E0B 30%, #FFF8E8 70%, #EAF8E6 100%);

    z-index:10000;

    transition:.4s;

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

    overflow-y:auto;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.mobile-menu-header img{

    width:150px;

}

#closeMenu{

    background:none;

    border:none;

    cursor:pointer;

}

#closeMenu img{

    width:24px;

}

.mobile-nav{

    padding:20px;

}

.mobile-nav li{

    border-bottom:1px solid #eee;

}

.mobile-nav li a{

    display:block;

    padding:16px 0;

    font-weight:600;

}

.mobile-nav li a:hover{

    color:var(--primary);

}
/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    width:100%;

    height:85vh;

    overflow:hidden;

    background:#eef8ee;

}

.hero-slider{

    position:relative;

    width:100%;

    height:100%;

}

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

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:opacity .8s ease;

}

.slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;

}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1);

    transition:transform 8s linear;

}

.slide.active img{

    transform:scale(1.08);

}

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

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.40),
        rgba(0,0,0,.18)
    );

    z-index:1;

}

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

.hero-content{

    position:absolute;

    top:50%;

    left:8%;

    transform:translateY(-50%);

    max-width:600px;

    color:#fff;

    z-index:5;

    animation:heroFade .9s ease;

}

.hero-tag{

    display:inline-block;

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

    backdrop-filter:blur(12px);

    padding:10px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}

.hero-content h1{

    font-size:60px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:24px;

}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:600px;

    color:#f1f1f1;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

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

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(-50%) translateX(-40px);

    }

    to{

        opacity:1;

        transform:translateY(-50%) translateX(0);

    }

}

/* ==========================================================
   SLIDER ARROWS
========================================================== */

.slider-prev,
.slider-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

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

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:26px;

    cursor:pointer;

    transition:.35s;

    z-index:20;

}

.slider-prev{

    left:30px;

}

.slider-next{

    right:30px;

}

.slider-prev:hover,
.slider-next:hover{

    background:var(--primary);

}

/* ==========================================================
   SLIDER DOTS
========================================================== */

.slider-dots{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:20;

}

.dot{

    width:14px;

    height:14px;

    border-radius:50%;

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

    cursor:pointer;

    transition:.35s;

}

.dot.active{

    width:38px;

    border-radius:20px;

    background:var(--secondary);

}

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

@media(max-width:992px){

.hero{

    height:80vh;

}

.hero-content{

    left:6%;

    right:6%;

    max-width:100%;

}

.hero-content h1{

    font-size:44px;

}

.hero-content p{

    font-size:17px;

}

}

@media(max-width:768px){

.hero{

    height:72vh;

}

.hero-content{

    text-align:center;

    left:20px;

    right:20px;

}

.hero-content h1{

    font-size:34px;

}

.hero-content p{

    font-size:15px;

}

.hero-buttons{

    justify-content:center;

}

.slider-prev,
.slider-next{

    display:none;

}

.hero-tag{

    font-size:12px;

}

}

@media(max-width:480px){

.hero{

    height:65vh;

}

.hero-content h1{

    font-size:28px;

}

.hero-content p{

    font-size:14px;

}

.btn{

    width:100%;

}

}
/* ==========================================================
   CATEGORIES SECTION
========================================================== */

.categories{

    background:var(--light);

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.category-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.category-card h3{

    padding:25px 25px 10px;

    font-size:24px;

    color:var(--black);

}

.category-card p{

    padding:0 25px 30px;

    color:var(--gray);

    font-size:15px;

    line-height:1.8;

}

/* ==========================================================
   FEATURED BOOK
========================================================== */

.featured-book{

    background:#ffffff;

}

.featured-book-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    align-items:center;

    gap:70px;

}

.book-image img{

    border-radius:18px;

    box-shadow:var(--shadow);

}

.book-content span{

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.book-content h2{

    margin:18px 0;

    font-size:44px;

    line-height:1.2;

}

.book-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:35px;

}

/* ==========================================================
   SERVICES
========================================================== */

.services{

    background:#f8f9fb;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.service-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    color:#fff;

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef8f2;

    font-size:42px;

    margin-bottom:25px;

}

.service-card:hover .service-icon{

    background:#fff;

}

.service-card h3{

    font-size:25px;

    margin-bottom:18px;

}

.service-card p{

    line-height:1.9;

}

/* ==========================================================
   CROP DOCTOR
========================================================== */

.crop-doctor{

    background:#fff;

}

.crop-doctor-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.crop-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.crop-content span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.crop-content h2{

    margin:20px 0;

    font-size:44px;

    line-height:1.2;

}

.crop-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:25px;

}

.crop-list{

    margin-bottom:35px;

}

.crop-list li{

    padding:12px 0;

    font-weight:600;

    color:var(--black);

}

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

@media(max-width:992px){

.category-grid{

    grid-template-columns:repeat(2,1fr);

}

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.featured-book-wrapper{

    grid-template-columns:1fr;

}

.crop-doctor-wrapper{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.category-grid{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:1fr;

}

.book-content h2{

    font-size:34px;

}

.crop-content h2{

    font-size:34px;

}

.service-card{

    padding:30px;

}

}
/* ==========================================================
   WEATHER SECTION
========================================================== */

.weather{

    background:#f7f8fa;

}

.weather-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.weather-card{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.weather-card:hover{

    transform:translateY(-10px);

}

.weather-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.weather-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:25px;

}

/* ==========================================================
   MANDI SECTION
========================================================== */

.mandi{

    background:#ffffff;

}

.mandi-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.mandi-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.mandi-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-8px);

}

.mandi-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.section-btn{

    text-align:center;

    margin-top:45px;

}

/* ==========================================================
   TRAINING SECTION
========================================================== */

.training{

    background:#f7f8fa;

}

.training-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.training-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.training-content h3{

    font-size:42px;

    margin-bottom:20px;

}

.training-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:35px;

}

/* ==========================================================
   BLOG SECTION
========================================================== */

.blog{

    background:#ffffff;

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.blog-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.blog-card:hover{

    transform:translateY(-10px);

}

.blog-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.blog-content{

    padding:28px;

}

.blog-category{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    margin-bottom:12px;

}

.blog-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.blog-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:20px;

}

.read-more{

    color:var(--primary);

    font-weight:700;

}

/* ==========================================================
   ACHIEVERS
========================================================== */

.achievers{

    background:#f8f9fb;

}

.achievers .full-banner{

    border-radius:22px;

}

/* ==========================================================
   FARMER COMMUNITY
========================================================== */

.farmer-community{

    position:relative;

    background:#ffffff;

}

.community-content{

    text-align:center;

    max-width:760px;

    margin:45px auto 0;

}

.community-content h2{

    font-size:42px;

    margin-bottom:20px;

}

.community-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:35px;

}

/* ==========================================================
   OFFER SECTION
========================================================== */

.offer{

    background:#f7f8fa;

}

.offer-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.offer-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.offer-content span{

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

}

.offer-content h2{

    font-size:44px;

    margin:18px 0;

}

.offer-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:35px;

}

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

@media(max-width:992px){

.weather-wrapper{

    grid-template-columns:1fr;

}

.mandi-grid{

    grid-template-columns:repeat(2,1fr);

}

.blog-grid{

    grid-template-columns:1fr;

}

.training-wrapper{

    grid-template-columns:1fr;

}

.offer-wrapper{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.mandi-grid{

    grid-template-columns:1fr;

}

.training-content h3{

    font-size:34px;

}

.community-content h2{

    font-size:34px;

}

.offer-content h2{

    font-size:34px;

}

}
/* ==========================================================
   CALL TO ACTION
========================================================== */

.cta{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

}

.cta-wrapper{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-content span{

    display:inline-block;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.cta-content h2{

    font-size:48px;

    line-height:1.3;

    margin-bottom:25px;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 40px;

    line-height:2;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

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

.footer{

    background:#151515;

    color:#ffffff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:45px;

}

.footer-logo{

    width:100px;

    margin-bottom:25px;

}

.footer-column h3{

    font-size:22px;

    margin-bottom:20px;

}

.footer-column p{

    color:#cccccc;

    line-height:2;

    margin-bottom:12px;

}

.footer-column ul li{

    margin-bottom:14px;

}

.footer-column ul li a{

    color:#cccccc;

    transition:var(--transition);

}

.footer-column ul li a:hover{

    color:var(--secondary);

    padding-left:6px;

}

/* ==========================================================
   SOCIAL
========================================================== */

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin:50px 0 30px;

}

.footer-social a{

    width:50px;

    height:50px;

    background:#262626;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:var(--transition);

}

.footer-social img{

    width:24px;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

/* ==========================================================
   COPYRIGHT
========================================================== */

.copyright{

    text-align:center;

    padding-top:25px;

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

}

.copyright p{

    color:#bdbdbd;

    font-size:15px;

}

/* ==========================================================
   WHATSAPP FLOAT
========================================================== */

.whatsapp-float{

    position:fixed;

    right:22px;

    bottom:22px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    z-index:999;

    transition:var(--transition);

}

.whatsapp-float img{

    width:34px;

}

.whatsapp-float:hover{

    transform:scale(1.12);

}

/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top{

    position:fixed;

    right:22px;

    bottom:100px;

    width:55px;

    height:55px;

    background:var(--secondary);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:998;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

/* ==========================================================
   PRELOADER
========================================================== */

.preloader{

    position:fixed;

    inset:0;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.preloader img{

    width:130px;

    animation:loader 1.2s linear infinite;

}

@keyframes loader{

    0%{

        transform:rotate(0deg);

    }

    100%{

        transform:rotate(360deg);

    }

}

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

@media(max-width:992px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

.cta-content h2{

    font-size:38px;

}

}

@media(max-width:768px){

.top-bar{

    display:none;

}

.header .container{

    min-height:60px;

}

.logo img{

    width:100px;

}

.navbar{

    display:none;

}

.login-btn span{

    display:none;

}

.menu-btn{

    display:flex;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:auto auto 20px;

}

.footer-social{

    flex-wrap:wrap;

}

.cta-content h2{

    font-size:30px;

}

.cta-content p{

    font-size:16px;

}

.whatsapp-float{

    width:58px;

    height:58px;

}

.whatsapp-float img{

    width:30px;

}

}

@media(max-width:480px){

section{

    padding:65px 0;

}

.container{

    width:94%;

}

.section-title h2{

    font-size:28px;

}

.btn{

    width:100%;

}

.hero-buttons{

    flex-direction:column;

}

.cta-buttons{

    flex-direction:column;

}

}

/* ==========================================================
   END OF STYLE.CSS
   VERSION 2.0
   AI BIBLE V2 LOCK
========================================================== */
/* ==========================================================
   ABOUT PAGE
========================================================== */

.page-banner{

    background:linear-gradient(135deg,#f57c00,#2e7d32);

    color:#fff;

    text-align:center;

    padding:80px 20px;

}

.page-banner h1{

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner p{

    font-size:18px;

    opacity:.95;

}

/* ========================================= */

.about-section{

    padding:80px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:45px;

}

.about-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.about-card h3{

    color:#f57c00;

    font-size:24px;

    margin-bottom:18px;

}

.about-card p{

    color:#555;

    line-height:1.9;

    font-size:16px;

}

/* ========================================= */

.section-title{

    text-align:center;

    margin-bottom:20px;

}

.section-title h2{

    font-size:40px;

    color:#222;

    margin-bottom:15px;

}

.section-title p{

    max-width:900px;

    margin:auto;

    line-height:2;

    color:#666;

}
/* ==========================================================
   MISSION & VISION
========================================================== */

.mission-section{

    padding:80px 0;

    background:#f8faf8;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.mission-box{

    background:#ffffff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.mission-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.mission-box h2{

    color:#2e7d32;

    font-size:30px;

    margin-bottom:18px;

}

.mission-box p{

    line-height:2;

    color:#555;

}

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

.why-us{

    padding:80px 0;

    background:#ffffff;

}

/* ==========================================================
   CTA
========================================================== */

.cta{

    background:linear-gradient(135deg,#f57c00,#2e7d32);

    color:#ffffff;

    text-align:center;

    padding:80px 20px;

}

.cta-content span{

    display:block;

    font-size:18px;

    margin-bottom:15px;

    opacity:.95;

}

.cta-content h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta-content p{

    max-width:700px;

    margin:auto;

    line-height:2;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:180px;

}

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

@media(max-width:992px){

.about-grid{

    grid-template-columns:1fr;

}

.mission-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.page-banner{

    padding:60px 20px;

}

.page-banner h1{

    font-size:34px;

}

.section-title h2{

    font-size:30px;

}

.about-card{

    padding:25px;

}

.mission-box{

    padding:25px;

}

.cta-content h2{

    font-size:30px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

}
/* ==========================================================
   INFORMATION HUB
========================================================== */

.info-hub{

    padding:70px 0;

    background:#f8fafc;

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:40px;

}

.info-card{

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    text-decoration:none;

    color:#333;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    border:2px solid transparent;

}

.info-card:hover{

    transform:translateY(-8px);

    border-color:#f57c00;

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.info-icon{

    font-size:48px;

    margin-bottom:20px;

}

.info-card h3{

    font-size:24px;

    color:#f57c00;

    margin-bottom:12px;

}

.info-card p{

    color:#666;

    line-height:1.7;

}

/* ================= Mobile ================= */

@media(max-width:992px){

.info-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.info-grid{

    grid-template-columns:1fr;

}

.info-card{

    padding:25px;

}

}
/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-section{

    padding:80px 0;

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:40px;

}

.contact-card{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.contact-card h3{

    color:#f57c00;

    font-size:24px;

    margin-bottom:15px;

}

.contact-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:10px;

}

/* ==========================================================
   SOCIAL CONNECT
========================================================== */

.social-connect{

    padding:80px 0;

    background:#f8faf8;

}

.social-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:40px;

}

.social-card{

    background:#ffffff;

    text-decoration:none;

    color:#333;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.social-card:hover{

    transform:translateY(-8px);

    background:#f57c00;

    color:#ffffff;

}

.social-card h3{

    margin-bottom:12px;

    font-size:22px;

}

.social-card p{

    line-height:1.7;

}

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

.contact-form-section{

    padding:80px 0;

    background:#ffffff;

}

.contact-form{

    max-width:850px;

    margin:auto;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#f57c00;

}

.contact-form button{

    margin-top:20px;

}

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

@media(max-width:992px){

.contact-grid{

    grid-template-columns:1fr;

}

.social-grid{

    grid-template-columns:repeat(2,1fr);

}

.form-row{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.social-grid{

    grid-template-columns:1fr;

}

.contact-card{

    padding:25px;

}

.social-card{

    padding:25px;

}

}
/* =====================================================
   PRIVACY POLICY
===================================================== */

.policy-section{

    padding:80px 0;

    background:#f8fafc;

}

.policy-card{

    background:#ffffff;

    max-width:1000px;

    margin:auto;

    padding:50px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.policy-card h2{

    color:#E65100;

    margin-top:35px;

    margin-bottom:15px;

    font-size:28px;

    border-left:5px solid #2E7D32;

    padding-left:15px;

}

.policy-card p{

    font-size:17px;

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

}

.policy-card ul{

    padding-left:25px;

    margin-bottom:25px;

}

.policy-card li{

    margin-bottom:12px;

    color:#444;

    line-height:1.8;

}

.policy-card strong{

    color:#2E7D32;

}

.policy-card a{

    color:#E65100;

    text-decoration:none;

}

.policy-card a:hover{

    text-decoration:underline;

}

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

@media(max-width:768px){

.policy-card{

    padding:25px;

}

.policy-card h2{

    font-size:22px;

}

.policy-card p,

.policy-card li{

    font-size:15px;

}

}
