/* ==========================================================
   GLOBAL STYLES
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Segoe UI",sans-serif;
    background:#f4f7f2;
    color:#333;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{

    width:100%;
}

/* ==========================================================
   HERO SECTION
========================================================== */

.range-hero{

    position:relative;

    height:650px;

    background:url("../images/chikkodi-banner.jpg")
    center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;
}


/* Dark Overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(0,0,0,.55),

    rgba(0,0,0,.65)

    );

}


/* Hero Content */

.hero-content{

    position:relative;

    z-index:10;

    width:90%;

    max-width:1200px;

    margin:auto;

    color:#fff;
}


/* ==========================================================
   BREADCRUMB
========================================================== */

.breadcrumb{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

    font-size:15px;
}

.breadcrumb a{

    color:#ffffff;

    opacity:.85;

    transition:.3s;
}

.breadcrumb a:hover{

    color:#FFD54F;
}

.breadcrumb span{

    color:#ddd;
}

.breadcrumb .active{

    color:#FFD54F;

    font-weight:600;
}


/* ==========================================================
   HERO TITLE
========================================================== */

.hero-content h1{

    font-size:62px;

    font-weight:800;

    margin-bottom:12px;

    line-height:1.1;

    letter-spacing:.5px;
}


/* Subtitle */

.hero-content h2{

    color:#FFD54F;

    font-size:28px;

    margin-bottom:25px;

    font-weight:600;
}


/* Description */

.hero-content p{

    max-width:760px;

    font-size:19px;

    color:#eee;

    line-height:1.9;
}


/* ==========================================================
   INFO SECTION
========================================================== */

.info-section{

    padding:80px 0;

    background:#f8faf7;
}

.info-grid{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;
}


/* ==========================================================
   COMMON CARD
========================================================== */

.info-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:

    0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 18px 45px rgba(0,0,0,.15);
}


/* Green Top Border */

.info-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:#2E7D32;
}


/* ==========================================================
   CARD TITLES
========================================================== */

.info-card h3{

    font-size:28px;

    color:#1B5E20;

    margin-bottom:25px;

    font-weight:700;
}

.info-card h4{

    color:#2E7D32;

    margin-bottom:15px;

    font-size:21px;
}


/* ==========================================================
   CARD PARAGRAPH
========================================================== */

.info-card p{

    font-size:17px;

    color:#555;

    margin-bottom:18px;
}


/* ==========================================================
   LIST STYLE
========================================================== */

.info-card ul li{

    margin-bottom:16px;

    font-size:17px;

    color:#444;

    padding-left:10px;

    border-left:4px solid #66BB6A;
}

.info-card strong{

    color:#1B5E20;
}


/* ==========================================================
   DID YOU KNOW
========================================================== */

.fact-box{

    background:#FFF8E1;

    border-left:6px solid #FFC107;

    padding:25px;

    border-radius:15px;
}

.fact-box h4{

    color:#F57C00;
}

.fact-box p{

    margin:0;
}


/* ==========================================================
   NATURE CARD
========================================================== */

.nature-card{

    grid-column:span 2;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.hero-content h1{

    font-size:48px;
}

.hero-content h2{

    font-size:24px;
}

.nature-card{

    grid-column:span 1;
}

}


@media(max-width:768px){

.range-hero{

    height:560px;
}

.hero-content{

    width:92%;
}

.hero-content h1{

    font-size:38px;
}

.hero-content h2{

    font-size:22px;
}

.hero-content p{

    font-size:16px;
}

.info-grid{

    grid-template-columns:1fr;
}

.info-card{

    padding:25px;
}

}


@media(max-width:480px){

.hero-content h1{

    font-size:30px;
}

.hero-content h2{

    font-size:18px;
}

.breadcrumb{

    font-size:13px;
}

.info-card h3{

    font-size:22px;
}

}
/* ==========================================================
   NATURE & COMMUNITY SECTION
========================================================== */

.nature-community-section{

    padding:90px 0;

    background:#eef5ec;
}

.nature-community-grid{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1.4fr 1fr;

    gap:35px;

    align-items:start;
}


/* ==========================================================
   COMMON CARD
========================================================== */

.wildlife-card,
.community-card,
.legacy-card{

    background:#fff;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.35s;
}

.wildlife-card:hover,
.community-card:hover,
.legacy-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);
}


/* ==========================================================
   WILDLIFE CARD
========================================================== */

.wildlife-card{

    padding:35px;
}

.wildlife-card h3{

    font-size:30px;

    color:#1B5E20;

    margin-bottom:20px;
}

.wildlife-card h4{

    margin:25px 0 20px;

    color:#2E7D32;

    font-size:22px;
}

.wildlife-card p{

    color:#555;

    font-size:17px;

    line-height:1.8;
}

.bottom-text{

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid #e5e5e5;

    color:#666;
}


/* ==========================================================
   WILDLIFE GRID
========================================================== */

.wildlife-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:20px;
}


/* ==========================================================
   ANIMAL CARD
========================================================== */

.animal{

    background:#f7faf7;

    border-radius:16px;

    overflow:hidden;

    text-align:center;

    transition:.3s;

    border:1px solid #e6efe6;
}

.animal:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.animal img{

    height:170px;

    object-fit:cover;
}

.animal span{

    display:block;

    padding:15px;

    font-weight:600;

    color:#1B5E20;

    font-size:16px;
}


/* ==========================================================
   RIGHT SIDE
========================================================== */

.right-side{

    display:flex;

    flex-direction:column;

    gap:30px;
}


/* ==========================================================
   COMMUNITY CARD
========================================================== */

.community-card{

    display:flex;

    min-height:320px;
}

.community-card .text{

    flex:1;

    padding:35px;
}

.community-card h3{

    color:#1B5E20;

    font-size:28px;

    margin-bottom:20px;
}

.community-card p{

    color:#555;

    font-size:16px;

    line-height:1.8;

    margin-bottom:18px;
}

.community-card .image{

    width:42%;
}

.community-card .image img{

    width:100%;

    height:100%;

    object-fit:cover;
}


/* ==========================================================
   LEGACY CARD
========================================================== */

.legacy-card{

    padding:35px;
}

.legacy-card h3{

    color:#1B5E20;

    font-size:28px;

    margin-bottom:25px;
}

.legacy-card ul{

    list-style:none;

    margin-bottom:25px;
}

.legacy-card li{

    margin-bottom:16px;

    padding:12px 16px;

    background:#f7faf7;

    border-left:5px solid #4CAF50;

    border-radius:10px;

    color:#444;

    transition:.3s;
}

.legacy-card li:hover{

    background:#eef7ee;

    transform:translateX(6px);
}

.legacy-card p{

    margin-top:15px;

    color:#666;

    line-height:1.8;

    font-size:16px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

.nature-community-grid{

    grid-template-columns:1fr;
}

.community-card{

    flex-direction:column;
}

.community-card .image{

    width:100%;

    height:280px;
}

}


@media(max-width:768px){

.nature-community-section{

    padding:70px 0;
}

.wildlife-card,
.community-card .text,
.legacy-card{

    padding:25px;
}

.wildlife-list{

    grid-template-columns:1fr;
}

.community-card h3,
.wildlife-card h3,
.legacy-card h3{

    font-size:24px;
}

.community-card .image{

    height:240px;
}

.animal img{

    height:220px;
}

}


@media(max-width:480px){

.wildlife-card h3,
.community-card h3,
.legacy-card h3{

    font-size:22px;
}

.wildlife-card p,
.community-card p,
.legacy-card p{

    font-size:15px;
}

.animal img{

    height:180px;
}

.animal span{

    font-size:15px;
}

}
/* ==========================================================
   GALLERY SECTION
========================================================== */

.gallery-section{

    padding:100px 0;

    background:#f8faf7;
}

.section-title{

    width:90%;

    max-width:1200px;

    margin:0 auto 60px;

    text-align:center;
}

.section-title h2{

    font-size:42px;

    color:#1B5E20;

    margin-bottom:20px;

    font-weight:700;
}

.section-title h2 i{

    color:#4CAF50;

    margin-right:12px;
}

.section-title p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    color:#666;

    line-height:1.8;
}


/* ==========================================================
   GALLERY GRID
========================================================== */

.gallery-grid{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}


/* ==========================================================
   GALLERY CARD
========================================================== */

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:280px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    transition:.4s ease;
}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.18);
}


/* ==========================================================
   IMAGE
========================================================== */

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;
}

.gallery-card:hover img{

    transform:scale(1.12);
}


/* ==========================================================
   OVERLAY
========================================================== */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.15),

        rgba(0,0,0,.82)

    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:center;

    text-align:center;

    padding:25px;

    transition:.35s;
}

.gallery-card:hover .gallery-overlay{

    background:linear-gradient(

        rgba(27,94,32,.15),

        rgba(27,94,32,.92)

    );
}


/* ==========================================================
   ICON
========================================================== */

.gallery-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    transition:.35s;
}

.gallery-card:hover .gallery-icon{

    transform:scale(1.1) rotate(8deg);

    background:#FFD54F;
}

.gallery-icon i{

    font-size:28px;

    color:#1B5E20;
}


/* ==========================================================
   TITLE
========================================================== */

.gallery-overlay h3{

    color:#fff;

    font-size:22px;

    font-weight:600;

    line-height:1.4;

    text-shadow:0 2px 8px rgba(0,0,0,.35);
}


/* ==========================================================
   FADE-UP ANIMATION
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;
}

.fade-up.show{

    opacity:1;

    transform:translateY(0);
}


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#edf3ea;
}

::-webkit-scrollbar-thumb{

    background:#4CAF50;

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{

    background:#2E7D32;
}


/* ==========================================================
   BUTTON (OPTIONAL)
========================================================== */

.btn-green{

    display:inline-block;

    background:#2E7D32;

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;
}

.btn-green:hover{

    background:#1B5E20;

    transform:translateY(-3px);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

.gallery-grid{

    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);
}

.section-title h2{

    font-size:34px;
}

}

@media(max-width:768px){

.gallery-section{

    padding:70px 0;
}

.gallery-grid{

    grid-template-columns:1fr;

    gap:25px;
}

.gallery-card{

    height:300px;
}

.section-title{

    margin-bottom:40px;
}

.section-title h2{

    font-size:30px;
}

.section-title p{

    font-size:16px;
}

.gallery-overlay h3{

    font-size:20px;
}

}

@media(max-width:480px){

.gallery-card{

    height:250px;
}

.gallery-icon{

    width:55px;

    height:55px;
}

.gallery-icon i{

    font-size:22px;
}

.gallery-overlay h3{

    font-size:18px;
}

}