/* ==========================================
   VAATSALAYA KUTIR
   Main Stylesheet
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#222;
    background:#faf7ef;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}




/* Main Heading */
h1,
h2,
.hero-title,
.section-title h2{

    font-family: "Cinzel", serif;

    font-weight:700;

    letter-spacing:1px;

    color:#0F2C59;

}

/* Small Heading */

h3,
h4,
.card-title{

    font-family:"Marcellus", serif;

    font-weight:400;

    color:#0F2C59;

}

/* Body */

body{

    font-family:"Poppins", sans-serif;

    font-size:16px;

    color:#4B4B4B;

    line-height:1.8;

}

/* Menu */

.nav-menu a{

    font-family:"Poppins", sans-serif;

    font-weight:600;

    font-size:15px;

    letter-spacing:.5px;

}

/* Buttons */

.primary-btn,
.secondary-btn{

    font-family:"Poppins", sans-serif;

    font-weight:600;

    letter-spacing:.5px;

}

/* Quotes */

blockquote{

    font-family:"Marcellus", serif;

    font-size:24px;

    color:#6A4B22;

    font-style:italic;

}

/* Highlight Text */

.section-title span{

    font-family:"Poppins", sans-serif;

    text-transform:uppercase;

    letter-spacing:3px;

    color:#D4A64A;

    font-weight:600;

}


/* ==========================================
   COLORS
========================================== */

:root{

    --primary:#0f2c59;
    --secondary:#d4af37;
    --light:#ffffff;
    --cream:#faf7ef;
    --text:#333;
    --gray:#777;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*=========================================
    TOP BAR
=========================================*/

.top-bar{

    background:#0b234d;

    color:#fff;

    font-size:15px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:55px;

}

/* Left Side */

.top-left{

    display:flex;

    align-items:center;

}

.top-left a{

    display:flex;

    align-items:center;

    color:#fff;

    text-decoration:none;

    padding:0 22px;

    position:relative;

    transition:.3s;

}

.top-left a:first-child{

    padding-left:0;

}

/* Vertical Line */

.top-left a:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:24px;

    background:rgba(255,255,255,.25);

}

.top-left i{

    color:#d8a23c;

    margin-right:10px;

    font-size:16px;

}

.top-left a:hover{

    color:#d8a23c;

}

/* Right Side */

.top-right{

    display:flex;

    align-items:center;

}

.follow-text{

    margin-right:20px;

    font-weight:600;

}

/* Social Icons */

.top-right a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    position:relative;

    transition:.3s;

}

/* Vertical Line */

.top-right a:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:22px;

    background:rgba(255,255,255,.25);

}

.top-right a:hover{

    color:#d8a23c;

    transform:translateY(-2px);

}

/* ==========================================
   HEADER
========================================== */
/*==================================================
                HEADER SECTION
==================================================*/

.header{
    background:#fff;
    padding:15px 0;
    position:relative;
    z-index:100;
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/*==================================
            LOGO AREA
==================================*/

.logo{
    display:flex;
    align-items:center;
    gap:25px;
    text-decoration:none;
}

.logo img{
    width:110px;
    height:auto;
}

.logo-content{
    display:flex;
    flex-direction:column;
}

.logo-content h1{
    font-family:"Cinzel", serif;
    font-size:26px;
    font-weight:700;
    color:#0b2f5b;
    letter-spacing:2px;
    margin:0;
    line-height:1.1;
    text-transform:uppercase;
}

.logo-content p{
    margin:12px 0 0;
    color:#b8860b;
    font-size:12px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
}

/* Decorative Divider */

.logo-content p::before,
.logo-content p::after{
    content:"";
    flex:1;
    height:1px;
    background:#d9b05f;
}

/*==================================
          HEADER CTA
==================================*/

.header-cta{
    display:flex;
    align-items:center;
    gap:18px;
}

/*==================================
          CTA BOX
==================================*/

.cta-box{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border:1px solid #e5c170;
    border-radius:10px;
    padding:10px 10px;
    min-width:220px;
    transition:.35s;
}

.cta-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.cta-box .icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d9b05f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.cta-box h4{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:#0b2f5b;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.cta-box span{
    display:block;
    margin-top:6px;
    color:#666;
    font-size:12px;
    line-height:1.5;
}




/*====================================
REPORT ANIMAL BUTTON
====================================*/

.report-btn{

    display:flex;
    align-items:center;
    gap:16px;

    min-width:220px;
    padding:10px 10px;

    border:1px solid #D4A64A;
    border-radius:12px;

    background:#fff;

    text-decoration:none;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.report-btn::before{

    content:"";

    position:absolute;

    left:-100%;
    top:0;

    width:100%;
    height:100%;

    background:#D4A64A;

    transition:.45s;

    z-index:0;

}

.report-btn:hover::before{

    left:0;

}

.report-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    background:#D4A64A;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    position:relative;
    z-index:2;

    transition:.35s;

}

.report-content{

    position:relative;
    z-index:2;

}

.report-content h4{

    margin:0;

    font-size:14px;

    color:#0f2c59;

    font-weight:700;

    transition:.35s;

}

.report-content span{

    display:block;

    margin-top:6px;

    font-size:12px;

    color:#666;

    transition:.35s;

}

/* Hover */

.report-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.report-btn:hover .report-content h4,

.report-btn:hover .report-content span{

    color:#fff;

}

.report-btn:hover .report-icon{

    background:#fff;

}

.report-btn:hover svg path{

    fill:#D4A64A;

}


/*=========================================
DONATE BUTTON
=========================================*/

.donate-btn{

    display:flex;
    align-items:center;
    gap:10px;

    min-width:250px;
    padding:18px 24px;

    background:linear-gradient(135deg,#D4A64A,#B9851C);

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    transition:.35s ease;

    overflow:hidden;

    position:relative;

}

.donate-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.15);

    transition:.45s;

}

.donate-btn:hover::before{

    left:100%;

}

.donate-icon{

    width:44px;
    height:44px;

    background:rgba(255,255,255,.18);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

}

.donate-content h4{

    margin:0;

    font-size:20px;

    font-weight:700;

    color:#fff;

}

.donate-content span{

    display:block;

    margin-top:6px;

    font-size:14px;

    color:rgba(255,255,255,.9);

}

.donate-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}


/*====================================
CLICKABLE CTA BUTTONS
====================================*/

.volunteer-btn,
.adopt-btn{

    text-decoration:none;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    transition:.35s;

}

.volunteer-btn::before,
.adopt-btn::before{

    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:#D4A64A;
    transition:.4s;
    z-index:0;

}

.volunteer-btn:hover::before,
.adopt-btn:hover::before{

    left:0;

}

.volunteer-btn .icon,
.adopt-btn .icon{

    position:relative;
    z-index:2;

}

.volunteer-btn div:last-child,
.adopt-btn div:last-child{

    position:relative;
    z-index:2;

}

.volunteer-btn:hover h4,
.volunteer-btn:hover span,
.adopt-btn:hover h4,
.adopt-btn:hover span{

    color:#fff;

}

.volunteer-btn:hover .icon,
.adopt-btn:hover .icon{

    background:#fff;

}

.volunteer-btn:hover svg path,
.adopt-btn:hover svg circle{

    fill:#D4A64A;

}

.volunteer-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.adopt-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}





/*==================================
          DONATE BUTTON
==================================*/

.donate-btn{
    display:flex;
    align-items:center;
    gap:14px;
    background:linear-gradient(135deg,#d6a243,#c68920);
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    padding:10px 10px;
    min-height:96px;
    transition:.35s;
}

.donate-btn i{
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.donate-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(198,137,32,.35);
}

/*==================================
        HEADER SHADOW
==================================*/

.header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:#ececec;
}


/*=====================================
FULL WIDTH NAVBAR
======================================*/

.navbar{

    width:100%;
    background:#0b234d;
    border-top:3px solid #d8a23c;
    border-bottom:3px solid #d8a23c;
    position:relative;
    z-index:999;

}

.nav-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1400px;
    margin:auto;
    height:72px;

}

/* Home Button */

.home-btn{

    width:72px;
    height:72px;
    background:#d8a23c;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    transition:.3s;

}

.home-btn:hover{

    background:#c58f25;

}

/* Menu */

.nav-menu{

    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;

}

.nav-menu>li{

    position:relative;

}

.nav-menu>li>a{

    display:flex;
    align-items:center;
    gap:8px;
    padding:0 22px;
    height:72px;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;

}

/* Search */

.nav-right{

    width:72px;
    display:flex;
    justify-content:center;
    align-items:center;

}

.nav-right a{

    color:#fff;
    font-size:20px;

}


/* ==========================================
   MAIN NAVBAR
========================================== */

.navbar{
    background:var(--primary);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:72px;
}

/* ==========================================
   NAV MENU
========================================== */

/* ============================
   DROPDOWN
============================ */

.nav-menu .dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    left:0;

    top:110%;

    min-width:260px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    z-index:999;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    color:#333;

    padding:14px 22px;

    font-size:15px;

    border-bottom:1px solid #f2f2f2;

    transition:.3s;

}

.dropdown-menu li:last-child a{

    border-bottom:none;

}

.dropdown-menu li a:hover{

    background:#0f2c59;

    color:#fff;

    padding-left:30px;

}

.dropdown > a{

    display:flex;

    align-items:center;

    gap:8px;

}

.dropdown > a i{

    font-size:12px;

}



.nav-menu{
    display:flex;
    align-items:center;
    gap:5px;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:block;
    padding:24px 20px;
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.35s;
    position:relative;
}

/* Hover */

.nav-menu li a:hover{
    color:var(--secondary);
}

/* Active */

.nav-menu li a.active{
    color:var(--secondary);
}


/* ==========================================
   DROPDOWN MENU
========================================== */

/*=====================================
    TOP MENU UNDERLINE
======================================*/

.nav-menu > li > a{
    position:relative;
    overflow:hidden;
}

.nav-menu > li > a::after{

    content:"";

    position:absolute;

    bottom:14px;

    left:50%;

    width:0;

    

    background:var(--secondary);

    

}

/* Hover */

.nav-menu > li:hover > a::after{

    width:70%;
    height:3px;

    border-radius:10px;

    transform:translateX(-50%);

    transition:width .35s ease;

}

/* Active */

.nav-menu > li > a.active::after{

    width:70%;

}

/* Remove underline from submenu */

.dropdown-menu a::after{

    display:none !important;

    content:none !important;

}

.dropdown-menu a:hover::after{

    display:none !important;

}
.dropdown-menu li a{

    position:relative;

    padding:14px 20px 14px 24px;

    transition:.35s;

}

.dropdown-menu li a:hover{

    background:#0f2c59;

    color:#fff;

    padding-left:35px;

}

.dropdown-menu li a::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:var(--secondary);

    transform:scaleY(0);

    transition:.3s;

}

.dropdown-menu li a:hover::before{

    transform:scaleY(1);

}

.nav-menu li ul{

    position:absolute;

    left:0;

    top:100%;

    min-width:240px;

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

}

.dropdown.active .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.nav-menu li ul li{

    width:100%;

}

.nav-menu li ul li a{

    color:#333;

    padding:14px 20px;

    border-bottom:1px solid #eee;

    background:#fff;

}

.nav-menu li ul li a:hover{

    background:#f7f7f7;

    color:var(--primary);

    padding-left:28px;

}

.nav-menu li ul li:last-child a{

    border-bottom:none;

}


/* Mobile submenu icon */

.submenu-icon{

    transition:.3s;

}

.dropdown.active > a .submenu-icon{

    transform:rotate(180deg);

}

/* Mobile submenu */

@media(max-width:992px){

.dropdown-menu{

    display:none;

}

.dropdown.active>.dropdown-menu{

    display:block;

}

}

.submenu-icon{
    margin-left:auto;
    transition:.3s ease;
}

.dropdown.active > a .submenu-icon{
    transform:rotate(180deg);
}

@media(max-width:992px){

.dropdown-menu{
    display:none;
}

.dropdown.active > .dropdown-menu{
    display:block;
}

}
/* ==========================================
   RIGHT NAV
========================================== */

.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-right a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:18px;

    transition:.35s;

}

.nav-right a:hover{

    background:var(--secondary);

    color:#111;

    transform:rotate(12deg);

}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-toggle{

    display:none;

    width:50px;

    height:50px;

    border-radius:10px;

    background:var(--secondary);

    color:#111;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:24px;

    transition:.35s;

}

.menu-toggle:hover{

    transform:scale(1.05);

}

/* ==========================================
   STICKY EFFECT
========================================== */

.navbar.sticky{

    animation:stickyNav .5s ease;

}

@keyframes stickyNav{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}

/* ==========================================
   NAV LINK ICON (Optional)
========================================== */

.nav-menu li a i{

    margin-left:6px;

    font-size:12px;

}
/*=====================================================
    FEATURE BAR
======================================================*/

.feature-bar{
    background:#ffffff;
    padding:25px 0;
    border-bottom:1px solid #ececec;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.feature-bar .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px;
    
    border-radius:16px;
    transition:all .35s ease;
    cursor:pointer;
    
}

.feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.feature-item i{
    width:65px;
    height:65px;
    background:var(--secondary);
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
}

.feature-item h3{
    font-size:16px;
    color:var(--primary);
    margin-bottom:6px;
    font-weight:600;
    line-height: 24px;
}

.feature-item p{
    font-size:14px;
    color:#777;
}

/*=====================================================
    HERO SECTION
======================================================*/

.hero{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(10,32,70,.65),rgba(10,32,70,.65)),
    url("../img/hero-bg.jpg") center center/cover no-repeat;
}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    top:-250px;

    right:-250px;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-200px;

    left:-180px;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:720px;

}

.hero h5{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    font-weight:500;

    backdrop-filter:blur(6px);

}

.hero h2{

    font-family:'Cinzel',serif;

    font-size:24px;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

.hero p{

    font-size:14px;

    color:#f2f2f2;

    max-width:620px;

    margin-bottom:40px;

    line-height:1.1;

}

/*=====================================================
    HERO BUTTONS
======================================================*/

.hero-btn{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    background:var(--secondary);

    color:#111;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.primary-btn:hover{

    transform:translateY(-4px);

    background:#e4bc42;

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

}

/*=====================================================
    HERO STATS
======================================================*/

.hero-stats{

    margin-top:70px;

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.stat-box{

    color:#fff;

}

.stat-box h3{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:6px;

}

.stat-box span{

    font-size:16px;

    opacity:.9;

}

/*=====================================================
    SCROLL INDICATOR
======================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    color:#fff;

    font-size:30px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-15px);

    }

    60%{

        transform:translate(-50%,-8px);

    }

}

/*=====================================================
    SECTION TITLE
======================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);

    font-size:18px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    color:var(--primary);

    margin-top:15px;

}

.section-title p{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

}

/*=========================================
        FOOTER
==========================================*/

.footer{
    background:#0f2c59;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-logo img{
    width:80px;
    margin-bottom:20px;
}

.footer h3{
    font-size:22px;
    margin-bottom:25px;
    color:#d4af37;
    font-family:'Cinzel',serif;
}

.footer p{
    color:#d6d6d6;
    line-height:1.8;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#ddd;
    transition:.35s;
}

.footer-links li a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer-contact li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#ddd;
}

.footer-contact i{
    color:#d4af37;
    width:20px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    transition:.35s;
}

.footer-social a:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-5px);
}

/*=========================================
        COPYRIGHT
==========================================*/

.copyright{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

    text-align:center;

    color:#bbb;

    font-size:15px;

}

/*=========================================
      BACK TO TOP
==========================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#111;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.back-top.active{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    transform:translateY(-5px);

}

/*=========================================
        WHATSAPP BUTTON
==========================================*/

.whatsapp{

    position:fixed;

    left:30px;

    bottom:30px;

    width:60px;

    height:60px;

    background:#25d366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.6);

    }

    70%{

        box-shadow:0 0 0 20px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/*=========================================
      PAGE LOADER
==========================================*/

.loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader span{

    width:70px;

    height:70px;

    border:6px solid #eee;

    border-top:6px solid #d4af37;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*=========================================
      UTILITIES
==========================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mt-80{

    margin-top:80px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}

.py-100{

    padding:100px 0;

}

.bg-light{

    background:#faf7ef;

}

.bg-white{

    background:#fff;

}

/*=========================================
      CUSTOM SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:#0f2c59;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d4af37;

}

/*=========================================
      TEXT SELECTION
==========================================*/

::selection{

    background:#d4af37;

    color:#111;

}

/*=========================================
      IMAGE HOVER
==========================================*/

.img-hover{

    overflow:hidden;

    border-radius:18px;

}

.img-hover img{

    transition:.5s;

}

.img-hover:hover img{

    transform:scale(1.08);

}

/*=========================================
      CARD
==========================================*/

.card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

/*=========================================
      BUTTONS
==========================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 35px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn-primary{

    background:#d4af37;

    color:#111;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid #0f2c59;

    color:#0f2c59;

}

.btn-outline:hover{

    background:#0f2c59;

    color:#fff;

}



/*=========================================
        HERO INTRO
=========================================*/

.hero-intro{
    background:#fbf7ef;
    padding:70px 0 35px;
    position:relative;
    overflow:hidden;
}

.hero-intro::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(212,166,74,.10),
    transparent 70%);
    pointer-events:none;
}

.hero-intro-wrapper{

    display:grid;
    grid-template-columns:30% 40% 30%;
    gap:45px;
    align-items:center;
    max-width: 1150px;
}



/*==================================
FEATURE BAR
==================================*/

.feature-bar{

    padding:20px 0;
    background:transparent;

}

.feature-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    align-items:center;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:18px;

    padding:10px 30px;

    position:relative;

}

.feature-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;
    top:10px;
    bottom:10px;

    width:1px;

    background:#d8b46a;

}

.feature-icon{

    width:58px;
    height:58px;

    flex-shrink:0;

    border-radius:50%;

    background:#082b63;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    transition:.35s;

}

.feature-item:hover .feature-icon{

    background:#d4a64a;

    transform:translateY(-4px);

}

.feature-content h3{

    margin:0;

    color:#17305f;

    font-family:Georgia,serif;

    font-size:22px;

    font-weight:700;

    text-transform:uppercase;

}

.feature-content p{

    margin-top:5px;

    color:#222;

    font-size:16px;

    line-height:1.4;

}
/*=========================================
        LEFT LOGO
=========================================*/

.hero-logo{
    text-align:center;
}

.hero-logo img{

    width:100%;
    max-width:430px;
    margin:auto;
    display:block;
}


/*=========================================
        CENTER CONTENT
=========================================*/

.hero-content{

    text-align:center;
}

.om-icon{

    width:100%;
    margin-bottom:15px;
}

.hero-content h1 {
    font-family: Georgia, serif;
    color: #4b2813;
    font-size: 38px !important;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-divider{

    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;

    color:#7a4d17;
    font-size:24px;
    font-weight:600;

    margin-bottom:28px;
}

.hero-divider span{

    color:#d4a64a;
}

.hero-quote{

    max-width:620px;
    margin:auto;

    color:#444;

    font-size:24px;

    line-height:1.6;

    margin-bottom:18px;
}

.hero-content h4{

    color:#5b3518;

    font-size:24px;

    font-weight:600;
}


/*=========================================
        RIGHT CARD
=========================================*/

.hero-card{

    background:#fffdf8;

    border:2px solid #e8d3a5;

    border-radius:20px;

    padding:35px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.hero-card h2{

    text-align:center;

    color:#18325f;

    font-size:40px;

    margin-bottom:35px;

    font-family:Georgia,serif;

    line-height:1.3;
}

.card-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

    margin-bottom:30px;
}

.card-item:last-child{

    margin-bottom:0;
}

.card-item img{

    width:55px;
    flex-shrink:0;
}

.card-item h4 {
    font-size: 18px;
    color: #4b2813;
    margin-bottom: 8px;
    line-height: 1.0em;
}

.card-item p{

    color:#555;

    line-height:1.1;

    font-size:14px;
}


/*=========================================
        BLUE STRIP
=========================================*/

.hero-strip{

    background:#0f2c59;

    padding:18px 0;
}

.hero-strip .container{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;
}

.hero-strip h3{

    color:#fff;

    font-size:32px;

    letter-spacing:.5px;

    text-transform:uppercase;

    text-align:center;

    font-family:Georgia,serif;
}

.hero-strip span{

    color:#d4a64a;

    font-size:34px;
}


/*=========================================
        SEVA SECTION
=========================================*/

.seva-section{
    padding:80px 0;
    background:#faf6ef;
}

.seva-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}


/*=========================================
        CARD
=========================================*/

.seva-card{

    background: #fff7e8;

    border:1px solid #dfc89a;

    border-radius:16px;

    overflow:hidden;

    transition:.35s;

    display:flex;

    flex-direction:column;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.seva-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}


/*=========================================
        HEADER
=========================================*/

.card-header{

    text-align:center;

    padding:18px 15px 10px;

}

.card-header h2{

    font-size:24px!important;

    font-family:Georgia,serif;

    color:#18325f;

    margin-bottom:8px;

    font-weight:700;

    text-transform:uppercase;

}

.card-header h2 i{

    color:#8b4513;

    font-size:18px;

    margin:0 8px;

}

.card-header p{

    color:#3c2d22;

    font-size:18px;

    line-height:1.45;

}


/*=========================================
        IMAGE
=========================================*/

.animal-image{

    overflow:hidden;

}

.animal-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.seva-card:hover .animal-image img{

    transform:scale(1.05);

}


/*=========================================
        CONTENT
=========================================*/

.card-content{

    padding:22px;

    text-align:center;

}

.card-content p{

    color:#333;

    font-size:18px;

    line-height:1.75;

}


/*=========================================
        BELIEF BOX
=========================================*/

.belief-box{

    margin:0 18px 20px;

    border:1px solid #e2c998;

    border-radius:14px;

    padding:20px;

}

.belief-box h3{

    text-align:center;

    font-family:Georgia,serif;

    color:#4d2e16;

    font-size:20px;

    margin-bottom:18px;

    text-transform:uppercase;
    line-height: 1.1em;

}

.belief-content{

    display:flex;

    gap:18px;

    align-items:center;

}

.belief-content img{

    width:90px;

    flex-shrink:0;

}

.belief-content p{

    font-size:16px;

    line-height:1.6;

    color:#333;

}


/*=========================================
        LESSON
=========================================*/

.lesson-box{

    padding:0 22px 25px;

    text-align:center;

}

.lesson-box h3{

    font-family:Georgia,serif;

    color:#4b2b16;

    font-size:28px;

    margin-bottom:12px;

    text-transform:uppercase;

}

.lesson-box p{

    color:#333;

    font-size:17px;

    line-height:1.7;

}


/*=========================================
        SMALL DESIGN LINE
=========================================*/

.lesson-box::before{

    content:"";

    display:block;

    width:70%;

    height:1px;

    margin:0 auto 20px;

    background:#dcc391;

}


/*=========================================
        NICE HOVER
=========================================*/

.seva-card:hover .card-header h2{

    color:#8b4513;

}

.seva-card:hover .belief-box{

    border-color:#d4a64a;

}

.seva-card:hover .lesson-box::before{

    width:90%;

    transition:.4s;

}

/*=========================================
        EMERGENCY RESCUE
=========================================*/

.emergency-rescue{

    padding:90px 0;

    background:linear-gradient(135deg,#082b63,#153d79);

}

.emergency-wrapper{

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:60px;

    align-items:center;

}

.tag{

    display:inline-block;

    background:#f5d488;

    color:#082b63;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

}

.emergency-content h2{

    color:#fff;

    font-size:54px;

    line-height:1.2;

    margin-bottom:20px;

    font-family:Georgia,serif;

}

.emergency-content h2 span{

    color:#f5d488;

}

.emergency-content p{

    color:#ddd;

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;

}

.rescue-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    list-style:none;

    padding:0;

}

.rescue-list li{

    color:#fff;

    font-size:17px;

    display:flex;

    gap:12px;

    align-items:center;

}

.rescue-list i{

    color:#f5d488;

}


/*=============================
        RIGHT CARD
==============================*/

.rescue-card{

    background:#fff;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.rescue-card i {
    font-size: 22px;
    color: #FFF;
    /* margin-bottom: 25px; */
}

.rescue-card h3{

    font-size:34px;

    color:#082b63;

    margin-bottom:15px;

}

.rescue-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.call-btn,

.report-btn2{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    width:100%;

    height:58px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.call-btn{

    background:#082b63;

    color:#fff;

    margin-bottom:15px;

}

.call-btn:hover{

    background:#051d44;

}

.report-btn2{

    background:#f5d488;

    color:#082b63;

}

.report-btn2:hover{

    background:#e8bc53;
     color:#082b63;

}



/*=========================================
        GALLERY LIGHTBOX
=========================================*/

.gallery-lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99999;

}

.gallery-lightbox.active{

    opacity:1;

    visibility:visible;

}

.gallery-lightbox img{

    max-width:90%;

    max-height:90vh;

    border-radius:12px;

    box-shadow:0 15px 50px rgba(0,0,0,.4);

    animation:zoom .35s ease;

}

@keyframes zoom{

    from{

        transform:scale(.7);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.lightbox-close{

    position:absolute;

    top:30px;

    right:35px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#d4a64a;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.lightbox-close:hover{

    background:#fff;

    color:#0f2c59;

}

@media(max-width:768px){

.lightbox-close{

    width:42px;

    height:42px;

    font-size:18px;

    top:15px;

    right:15px;

}

}


/*=========================================
        VIDEO GALLERY
=========================================*/

.video-gallery{

    padding:100px 0;

    background:#f8f7f2;

}

.video-slider{

    width:70%;

    margin:50px auto 0;

    position:relative;

}

.video-slide{

    display:none;

}

.video-slide.active{

    display:block;

}

.video-slide video{

    width:100%;

    max-height:650px;

    border-radius:18px;

    background:#000;

    object-fit:contain;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.video-content{

    text-align:center;

    margin-top:25px;

}

.video-content h3{

    font-size:30px;

    color:#0f2c59;

    margin-bottom:10px;

}

.video-content p{

    color:#666;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

.video-btn{

    position:absolute;

    top:40%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#d4a64a;

    color:#fff;

    cursor:pointer;

    font-size:20px;

    transition:.3s;

}

.video-btn:hover{

    background:#0f2c59;

}

.prev{

    left:-80px;

}

.next{

    right:-80px;

}

/*=========================================
        SOUND BUTTON
=========================================*/

.video-slide{

    position:relative;

}

.sound-btn{

    position:absolute;

    top:20px;

    right:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:#fff;

    cursor:pointer;

    font-size:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

    z-index:50;

}

.sound-btn:hover{

    background:#d4a64a;

}

@media(max-width:768px){

.sound-btn{

    width:45px;

    height:45px;

    font-size:18px;

}

}



/*=========================================
        OUR IMPACT
=========================================*/

.impact-section{

    padding:100px 0;

    background:#f8f7f2;

}

.impact-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.section-subtitle{

    display:inline-block;

    color:#d4a64a;

    font-weight:700;

    margin-bottom:15px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.impact-content h2{

    font-size:38px;

    line-height:1.1;

    color:#0f2c59;

    margin-bottom:25px;

}

.impact-content h2 span{

    color:#d4a64a;

}

.impact-content p{

    color:#555;

    line-height:1.9;

    font-size:17px;

    margin-bottom:40px;

}

.impact-counter{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    margin-bottom:45px;

}

.count-box h3{

    font-size:34px;

    color:#0f2c59;

    margin-bottom:0px!important;

    font-weight:700;

}

.count-box p{

    margin:0;

    color:#666;

    font-size:16px;

}

.impact-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.secondary-btn{

    padding:15px 35px;

    border:2px solid #d4a64a;

    border-radius:50px;

    color:#0f2c59;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:#d4a64a;

    color:#fff;

}

.impact-image{

    position:relative;

}

.impact-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.floating-card{

    position:absolute;

    bottom:25px;

    left:-40px;

    background:#fff;

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px 25px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.card-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#d4a64a;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

}

.floating-card h4{

    color:#0f2c59;

    margin-bottom:5px;

}

.floating-card span{

    color:#666;

}

/*=========================================
            EVENTS
=========================================*/

.events{

    padding:100px 0;

    background:#f8f7f2;

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.event-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.event-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.event-date{

    position:absolute;

    top:20px;

    left:20px;

    width:75px;

    height:75px;

    border-radius:15px;

    background:#d4a64a;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.event-date span{

    font-size:28px;

    font-weight:700;

    line-height:1;

}

.event-date small{

    font-size:14px;

    letter-spacing:1px;

}

.event-content{

    padding:30px;

}

.event-meta{

    display:flex;

    justify-content:space-between;

    font-size:14px;

    color:#777;

    margin-bottom:18px;

}

.event-meta i{

    color:#d4a64a;

    margin-right:5px;

}

.event-content h3{

    color:#0f2c59;

    margin-bottom:15px;

    font-size:24px;

}

.event-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.event-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#0f2c59;

    font-weight:600;

    transition:.3s;

}

.event-btn:hover{

    color:#d4a64a;

}

/*=========================================
        HOW YOU CAN HELP
=========================================*/

.help-section{

    padding:90px 0;

    background:#faf6ef;

}

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.section-title span{

    color:#c99a2e;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:38px;

    color:#082b63;

    margin:15px 0;

    font-family:Georgia,serif;
    line-height: 1.1em;

}

.section-title p{

    color:#555;

    line-height:1.8;

}

.help-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.help-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    border:1px solid #ecd9b2;

}

.help-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.help-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#082b63;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    transition:.35s;

}

.help-card:hover .help-icon{

    background:#d4a64a;

    color:#082b63;

    transform:rotate(8deg);

}

.help-card h3{

    font-size:28px;

    color:#082b63;

    margin-bottom:18px;

    font-family:Georgia,serif;

}

.help-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.help-card a{

    color:#082b63;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.help-card a i{

    margin-left:8px;

    transition:.35s;

}

.help-card:hover a{

    color:#c99a2e;

}

.help-card:hover a i{

    margin-left:15px;

}

/*=========================================
            SIMPLE GALLERY
=========================================*/

.gallery{

    padding:90px 0;

    background:#f8f7f2;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:15px;

    cursor:pointer;

    position:relative;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(15,44,89,.45);

    opacity:0;

    transition:.4s;

    z-index:1;

}

.gallery-item::after{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%) scale(.5);

    width:65px;

    height:65px;

    border-radius:50%;

    background:#d4a64a;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    opacity:0;

    transition:.4s;

    z-index:2;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover::after{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}

.gallery-btn{

    margin-top:45px;

    text-align:center;

}

/*=========================================
            FOOTER
=========================================*/

.footer{

    background:#082b63;
    color:#fff;
    position:relative;
    overflow:hidden;
    margin-top:80px;

}

/* Decorative Top Border */

.footer-top-border{

    height:6px;

    background:linear-gradient(
        90deg,
        #c99a2e,
        #f5d488,
        #c99a2e
    );

}


/*=========================================
        FOOTER GRID
=========================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

    padding:80px 0 60px;

}


/*=========================================
        FOOTER WIDGET
=========================================*/

.footer-widget h3{

    font-size:34px;

    color:#fff;

    margin:20px 0 15px;

    font-family:Georgia,serif;

}

.footer-widget h4{

    color:#f5d488;

    font-size:24px;

    margin-bottom:28px;

    position:relative;

    font-family:Georgia,serif;

}

.footer-widget h4::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:60px;
    height:3px;

    background:#f5d488;

}

.footer-widget p{

    line-height:1.9;

    color:#d8d8d8;

    font-size:16px;

}


/*=========================================
        LOGO
=========================================*/

.footer-logo{

    width:95px;

}


/*=========================================
        LINKS
=========================================*/

.footer-widget ul{

    list-style:none;

    padding:0;

}

.footer-widget ul li{

    margin-bottom:14px;

}

.footer-widget ul li a{

    color:#d8d8d8;

    transition:.35s;

    display:inline-block;

}

.footer-widget ul li a:hover{

    color:#f5d488;

    transform:translateX(8px);

}


/*=========================================
        CONTACT
=========================================*/

.footer-contact li{

    display:flex;

    gap:15px;

    align-items:flex-start;

    color:#d8d8d8;

    line-height:1.8;

}

.footer-contact i{

    color:#f5d488;

    width:22px;

    margin-top:4px;

}


/*=========================================
        SOCIAL
=========================================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#f5d488;

    color:#082b63;

    transform:translateY(-6px);

}


/*=========================================
        DONATE CTA
=========================================*/

.footer-cta{

    margin-top:30px;

    margin-bottom:60px;

}

.footer-cta-content{

    background:#f5d488;

    border-radius:20px;

    padding:40px 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-cta span{

    color:#8b4513;

    text-transform:uppercase;

    font-weight:700;

}

.footer-cta h2{

    font-size:42px;

    color:#082b63;

    margin:10px 0;

    font-family:Georgia,serif;

}

.footer-cta p{

    color:#333;

    max-width:650px;

}


/*=========================================
        DONATE BUTTON
=========================================*/

.footer-donate-btn{

    background:#082b63;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    transition:.35s;

}

.footer-donate-btn:hover{

    background:#000;

    transform:translateY(-4px);

}


/*=========================================
        NEWSLETTER
=========================================*/

.footer-newsletter{

    padding-bottom:70px;

}

.newsletter-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.newsletter-content h3{

    font-size:32px;

    color:#fff;

    margin-bottom:10px;

}

.newsletter-content p{

    color:#ddd;

}

.newsletter-content form{

    display:flex;

    width:600px;

}

.newsletter-content input{

    flex:1;

    height:60px;

    border:none;

    padding:0 20px;

    border-radius:50px 0 0 50px;

    font-size:16px;

}

.newsletter-content button{

    width:180px;

    border:none;

    background:#f5d488;

    color:#082b63;

    font-weight:700;

    border-radius:0 50px 50px 0;

    cursor:pointer;

    transition:.35s;

}

.newsletter-content button:hover{

    background:#fff;

}


/*=========================================
        COPYRIGHT
=========================================*/

.copyright{

    background:#06224e;

    padding:22px 0;

}

.copyright-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.copyright p{

    color:#ddd;

}

.copyright ul{

    display:flex;

    gap:30px;

    list-style:none;

}

.copyright ul a{

    color:#ddd;

    transition:.3s;

}

.copyright ul a:hover{

    color:#f5d488;

}


/*=========================================
        FLOATING BUTTONS
=========================================*/

.back-top,
.whatsapp{

    position:fixed;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    z-index:999;

    transition:.35s;

}

.back-top{

    right:25px;

    bottom:25px;

    background:#f5d488;

    color:#082b63;

}

.back-top:hover{

    transform:translateY(-5px);

}

.whatsapp{

    left:25px;

    bottom:25px;

    background:#25D366;

    color:#fff;

}

.whatsapp:hover{

    transform:scale(1.08);

}


.volunteer-section{

padding:100px 0;

background:#f6f6f6;

}

.volunteer-slider{

position:relative;

overflow:hidden;

}

.volunteer-slide{

display:none;

animation:fade .6s;

}

.volunteer-slide.active{

display:block;

}

.volunteer-card{

display:grid;

grid-template-columns:40% 60%;

gap:40px;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.volunteer-image{

position:relative;

}

.volunteer-image img{

width:100%;

height:500px;

object-fit:cover;

border-radius:20px;

}

.badge{

position:absolute;

left:20px;

bottom:20px;

background:#0f2c59;

color:#fff;

padding:10px 18px;

border-radius:30px;

}

.category{

display:inline-block;

background:#d4a64a;

padding:8px 18px;

border-radius:30px;

color:#fff;

margin-bottom:20px;

}

.volunteer-content h3{

font-size:36px;

color:#0f2c59;

margin:15px 0;

}

.volunteer-content p{

line-height:1.8;

margin:25px 0;

}

.stats{

display:flex;

gap:20px;

margin:30px 0;

}

.stats div{

flex:1;

background:#f4f4f4;

padding:20px;

border-radius:15px;

text-align:center;

}

.stats h4{

font-size:30px;

color:#d4a64a;

}

blockquote{

background:#fafafa;

padding:20px;

border-left:5px solid #d4a64a;

font-style:italic;

}

.prev,

.next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#fff;

cursor:pointer;

font-size:22px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.prev{

left:20px;

}

.next{

right:20px;

}

.dots{

text-align:center;

margin-top:30px;

}

.dot{

display:inline-block;

width:12px;

height:12px;

margin:5px;

border-radius:50%;

background:#bbb;

cursor:pointer;

}

.dot.active{

background:#d4a64a;

width:35px;

border-radius:20px;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:none;

}

}

@media(max-width:900px){

.volunteer-card{

grid-template-columns:1fr;

}

.volunteer-image img{

height:350px;

}

.stats{

flex-direction:column;

}

}



/*=========================================
    WEBSITE POPUP
==========================================*/

.popup-overlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.75);

display:flex;

justify-content:center;

align-items:center;

padding:20px;

z-index:99999;

animation:fadeIn .4s ease;

}

.popup-box{

position:relative;

width:100%;

max-width:520px;

background:#fff;

border-radius:18px;

padding:45px 35px;

text-align:center;

box-shadow:0 25px 60px rgba(0,0,0,.25);

animation:popup .45s ease;

}

.popup-icon{

font-size:70px;

margin-bottom:15px;

}

.popup-box h2{

font-family:"Cinzel",serif;

font-size:34px;

color:#0F2C59;

margin-bottom:20px;

}

.popup-box p{

font-family:"Poppins",sans-serif;

font-size:17px;

color:#555;

line-height:1.8;

margin-bottom:15px;

}

.popup-close{

position:absolute;

top:15px;

right:18px;

width:42px;

height:42px;

border:none;

background:#f5f5f5;

border-radius:50%;

font-size:28px;

cursor:pointer;

transition:.3s;

}

.popup-close:hover{

background:#0F2C59;

color:#fff;

transform:rotate(90deg);

}

.popup-overlay.hide{

opacity:0;

visibility:hidden;

transition:.35s;

}

@keyframes popup{

from{

opacity:0;

transform:translateY(-30px) scale(.9);

}

to{

opacity:1;

transform:none;

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@media(max-width:768px){

.popup-box{

padding:35px 25px;

}

.popup-box h2{

font-size:28px;

}

.popup-icon{

font-size:55px;

}

.popup-box p{

font-size:15px;

}

}

/*Donate Page Css Start*/
.donate-page{

padding:90px 0;

background:#fbf6ec;

}

.donate-wrapper{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:40px;

align-items:start;

}

.donate-left img{

width:100%;

border-radius:20px;

margin-bottom:25px;

}

.donate-box{

background:#fff;

padding:30px;

border-radius:15px;

}

.donate-box ul{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-top:20px;

}

.donate-box li{

list-style:none;

font-weight:600;

}

.donate-right{

background:#fff;

padding:35px;

border-radius:20px;

position:sticky;

top:120px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.qr-code{

width:260px;

display:block;

margin:20px auto;

}

.upi-apps{

display:flex;

justify-content:center;

gap:10px;

margin-bottom:25px;

}

.upi-apps span{

padding:8px 16px;

background:#f3f3f3;

border-radius:30px;

font-size:14px;

}

.bank-detail{

margin:18px 0;

}

.bank-detail label{

display:block;

font-weight:600;

margin-bottom:6px;

}

.bank-detail input{

width:100%;

height:48px;

padding:0 15px;

border:1px solid #ddd;

border-radius:8px;

background:#fafafa;

}

.copy-box{

display:flex;

gap:10px;

}

.copy-box button{

width:90px;

background:#0F2C59;

color:#fff;

border:none;

border-radius:8px;

cursor:pointer;

}

@media(max-width:992px){

.donate-wrapper{

grid-template-columns:1fr;

}

.donate-right{

position:static;

}

.qr-code{

width:220px;

}

}
/*Donate Page css End*/


.report-page{

padding:90px 0;

background:#fbf6ec;

}

.report-wrapper{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:50px;

align-items:start;

}

.report-info img{

width:100%;

border-radius:20px;

margin-bottom:25px;

}

.info-card,
.help-box{

background:#fff;

padding:30px;

border-radius:15px;

margin-bottom:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.info-card ul{

padding-left:20px;

line-height:2;

}

.report-form{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

position:sticky;

top:120px;

}

.form-group{

margin-bottom:20px;

}

.form-group label{

display:block;

font-weight:600;

margin-bottom:8px;

}

.form-group input,
.form-group select,
.form-group textarea{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

}

.two-col{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.location-btn{

width:100%;

margin-bottom:15px;

padding:15px;

background:#0F2C59;

color:#fff;

border:none;

border-radius:10px;

cursor:pointer;

font-size:16px;

}

.primary-btn{

width:100%;

text-align:center;

}

@media(max-width:992px){

.report-wrapper{

grid-template-columns:1fr;

}

.report-form{

position:static;

}

.two-col{

grid-template-columns:1fr;

}

}

.help-box{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.help-box h3{

    color:#0F2C59;

    margin-bottom:12px;

}

.help-box p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

}

.whatsapp-btn{

    display:flex;

    align-items:center;

    gap:18px;

    background:#25D366;

    color:#fff;

    padding:18px 22px;

    border-radius:14px;

    text-decoration:none;

    transition:.3s;

    margin-bottom:15px;

}

.whatsapp-btn:hover{

    background:#1EBE5D;

    transform:translateY(-3px);

}

.whatsapp-btn i{

    font-size:42px;

}

.whatsapp-btn span{

    display:block;

    font-size:18px;

    font-weight:700;

}

.whatsapp-btn small{

    display:block;

    font-size:14px;

    opacity:.9;

}

.call-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    background:#0F2C59;

    color:#fff;

    text-decoration:none;

    padding:16px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

}

.call-btn:hover{

    background:#0c2348;

    transform:translateY(-3px);

}



.volunteer-page{

padding:90px 0;

background:#fbf6ec;

}

.volunteer-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:start;

}

.volunteer-info img{

width:100%;

border-radius:20px;

margin-bottom:25px;

}

.volunteer-box{

background:#fff;

padding:30px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.volunteer-box h3{

margin-bottom:20px;

color:#0F2C59;

}

.volunteer-box ul{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

padding-left:18px;

}

.volunteer-form{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

position:sticky;

top:120px;

}

.volunteer-form h3{

margin-bottom:25px;

color:#0F2C59;

}

.form-group{

margin-bottom:18px;

}

.form-group label{

display:block;

font-weight:600;

margin-bottom:8px;

}

.form-group input,
.form-group select,
.form-group textarea{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

}

.two-col{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.primary-btn{

width:100%;

margin-top:10px;

}

@media(max-width:992px){

.volunteer-wrapper{

grid-template-columns:1fr;

}

.volunteer-form{

position:static;

}

.two-col{

grid-template-columns:1fr;

}

}



.adopt-pets{

padding:90px 0;

background:#fbf6ec;

}

.pet-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.pet-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.pet-card:hover{

transform:translateY(-10px);

}

.pet-card img{

width:100%;

height:270px;

object-fit:cover;

}

.pet-info{

padding:25px;

}

.pet-tag{

background:#0F2C59;

color:#fff;

padding:6px 15px;

border-radius:30px;

font-size:13px;

display:inline-block;

margin-bottom:15px;

}

.pet-info ul{

margin:18px 0;

padding-left:20px;

line-height:2;

}

.pet-info .primary-btn{

width:100%;

text-align:center;

display:block;

}

@media(max-width:992px){

.pet-grid{

grid-template-columns:1fr;

}

}

/*==============================
POPUP
===============================*/

.popup-overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.75);

display:flex;

justify-content:center;

align-items:center;

z-index:9999;

opacity:0;

visibility:hidden;

transition:.35s;

padding:20px;

}

.popup-overlay.active{

opacity:1;

visibility:visible;

}

/*==============================*/

.popup-box{

width:100%;

max-width:560px;

background:#fff;

border-radius:18px;

padding:35px;

position:relative;

animation:popup .35s ease;

max-height:90vh;

overflow-y:auto;

}

@keyframes popup{

from{

transform:translateY(30px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

/*==============================*/

.close-popup{

position:absolute;

top:15px;

right:18px;

border:none;

background:none;

font-size:34px;

cursor:pointer;

color:#666;

transition:.3s;

}

.close-popup:hover{

color:#e74c3c;

}

/*==============================*/

.popup-box h2{

margin-bottom:8px;

font-size:30px;

color:#1f2937;

}

.popup-box p{

margin-bottom:25px;

color:#666;

line-height:1.7;

}

/*==============================*/

.form-group{

margin-bottom:18px;

}

.form-group label{

display:block;

font-weight:600;

margin-bottom:8px;

color:#333;

}

.form-group input,

.form-group textarea{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

transition:.3s;

}

.form-group input:focus,

.form-group textarea:focus{

border-color:#17c3b2;

outline:none;

}

/*==============================*/

.submit-adopt{

width:100%;

padding:16px;

border:none;

background:#17c3b2;

color:#fff;

font-size:18px;

font-weight:700;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.submit-adopt:hover{

background:#11998e;

}

/*==============================*/

.adopt-btn2{

display:inline-block;

padding:14px 30px;

background:#17c3b2;

color:#fff;

border-radius:40px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.adopt-btn2:hover{

background:#11998e;

}

/*=========================================
        OUR STORY PAGE
=========================================*/

.our-story-page{
    padding:100px 0;
    background:linear-gradient(180deg,#fffdf8 0%,#fdf8ef 50%,#fffdf8 100%);
    position:relative;
    overflow:hidden;
}

.our-story-page::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(rgba(214,171,67,.18),transparent 70%);
    top:-250px;
    left:-250px;
    border-radius:50%;
}

.our-story-page::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(rgba(214,171,67,.12),transparent 70%);
    right:-250px;
    bottom:-250px;
    border-radius:50%;
}

.story-wrapper{

    position:relative;

    z-index:2;

    display:flex;

    gap:70px;

    align-items:center;

}

/*======================
LEFT
======================*/

.story-left{

    width:38%;

    text-align:center;

}

.founder-image{

    background:#fff;

    padding:15px;

    border-radius:30px;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.founder-image img{

    width:100%;

    display:block;

    border-radius:20px;

}

.ngo-logo{

    margin:40px 0;

}

.ngo-logo img{

    width:280px;

    max-width:100%;

    filter:drop-shadow(0 10px 20px rgba(0,0,0,.15));

}

.animal-family{

    margin-top:30px;

}

.animal-family img{

    width:100%;

    max-width:420px;

}

/*======================
RIGHT
======================*/

.story-right{

    width:62%;

    background:#ffffffdd;

    backdrop-filter:blur(12px);

    border-radius:35px;

    padding:60px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    border:1px solid rgba(214,171,67,.18);

}

/*======================
Heading
======================*/

.top-title{

    display:block;

    color:#c79b27;

    text-transform:uppercase;

    letter-spacing:4px;

    font-weight:700;

    font-size:15px;

    margin-bottom:15px;

}

.story-right h1{

    font-family:"Cormorant Garamond",serif;

    font-size:72px;

    color:#082a5c;

    margin-bottom:10px;

    line-height:1;

}

.date{

    display:flex;

    align-items:center;

    gap:20px;

    color:#777;

    font-size:18px;

    margin-bottom:35px;

}

.date span{

    flex:1;

    height:2px;

    background:#d6ab43;

}

.divider{

    width:140px;

    height:3px;

    background:#d6ab43;

    margin:35px 0;

    border-radius:20px;

}

/*======================
Text
======================*/

.story-right p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:25px;

}

.story-right strong{

    color:#082a5c;

}

/*======================
Quote
======================*/

blockquote{

    margin:45px 0;

    padding:35px;

    background:#fff9ef;

    border-left:6px solid #d6ab43;

    border-radius:18px;

    font-size:24px;

    line-height:1.7;

    color:#082a5c;

    font-style:italic;

    font-family:"Cormorant Garamond",serif;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

/*======================
Promise
======================*/

.story-right h3{

    font-size:34px;

    color:#082a5c;

    margin-bottom:20px;

    font-family:"Cormorant Garamond",serif;

}

.quote-box{

    background:linear-gradient(135deg,#082a5c,#123f7b);

    color:#fff;

    padding:40px;

    border-radius:22px;

    margin:50px 0;

    position:relative;

    overflow:hidden;

}

.quote-box::before{

    content:"❝";

    position:absolute;

    top:-10px;

    left:20px;

    font-size:110px;

    color:rgba(255,255,255,.08);

}

.quote-box p{

    color:#fff;

    font-size:24px;

    line-height:1.8;

    margin:0;

    font-family:"Cormorant Garamond",serif;

}

.story-right h2{

    font-size:46px;

    color:#082a5c;

    margin-bottom:25px;

    font-family:"Cormorant Garamond",serif;

}

.bottom-text{

    font-size:21px;

    color:#444;

    line-height:2;

}



.mission-vision-page{
    padding:90px 0;
    background:#fbf6ec;
}

.mission-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.mv-card{

    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;

}

.mv-card:hover{

    transform:translateY(-8px);

}

.mv-icon{

    width:75px;
    height:75px;
    border-radius:50%;
    background:#f7f1df;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.mv-card h3{

    font-size:32px;
    color:#0d2b59;
    margin-bottom:20px;

}

.mv-card p{

    font-size:18px;
    color:#555;
    line-height:1.9;

}

@media(max-width:991px){

.mission-wrapper{

grid-template-columns:1fr;

}

.mv-card{

padding:35px;

}

}




.founder-message{

    padding:90px 0;
    background:#fbf6ec;

}

.founder-wrapper{

    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:center;
    margin-top:60px;

}

.founder-image{

    position:relative;

}

.founder-image img{

    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.founder-content h3{

    font-size:38px;
    color:#0d2b59;
    margin-bottom:8px;

}

.founder-content span{

    display:block;
    color:#b8860b;
    font-weight:600;
    margin-bottom:30px;
    letter-spacing:1px;

}

.founder-content p{

    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;

}

.founder-content blockquote{

    margin-top:35px;
    padding:25px 30px;
    border-left:5px solid #c89b3c;
    background:#fff;
    border-radius:12px;
    font-size:24px;
    font-style:italic;
    color:#0d2b59;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

@media(max-width:991px){

.founder-wrapper{

grid-template-columns:1fr;
text-align:center;

}

.founder-image{

max-width:350px;
margin:auto;

}

.founder-content blockquote{

text-align:left;

}

}


.trust-members{
    padding:90px 0;
    background:#fbf6ec;
}

.members-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.member-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;

}

.member-card:hover{

    transform:translateY(-10px);

}

.member-img{

    height:320px;
    overflow:hidden;

}

.member-img img{

    width:100%;
    height:120%;
    object-fit:cover;
    transition:.5s;

}

.member-card:hover img{

    transform:scale(1.05);

}

.member-card h3{

    margin-top:25px;
    color:#0d2b59;
    font-size:26px;

}

.member-card span{

    display:block;
    margin:10px 0 20px;
    color:#c89b3c;
    font-weight:600;
    letter-spacing:.5px;

}

.member-card p{

    padding:0 25px 30px;
    color:#666;
    line-height:1.8;
    font-size:16px;

}

@media(max-width:1200px){

.members-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.members-grid{

grid-template-columns:1fr;

}

.member-img{

height:380px;

}

}


.contact-page{

padding:90px 0;

background:#fbf6ec;

}

.contact-wrapper{

display:grid;

grid-template-columns:380px 1fr;

gap:50px;

margin-top:60px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}

.info-card{

display:flex;

gap:20px;

padding:25px;

background:#fff;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.info-card i{

width:60px;

height:60px;

background:#0d2b59;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:24px;

flex-shrink:0;

}

.info-card h3{

margin-bottom:8px;

color:#0d2b59;

}

.info-card p{

line-height:1.7;

color:#666;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form h3{

margin-bottom:30px;

color:#0d2b59;

}

.two-col{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

width:100%;

padding:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

}

.contact-form textarea{

resize:none;

margin-bottom:20px;

}

.emergency-box{

background:#d62828;

color:#fff;

padding:25px;

border-radius:15px;

text-align:center;

font-size:22px;

font-weight:700;

}

.emergency-box a{

display:inline-block;

margin-top:15px;

padding:12px 30px;

background:#fff;

color:#d62828;

text-decoration:none;

border-radius:40px;

font-weight:700;

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.two-col{

grid-template-columns:1fr;

}

}

.rescue-intro,
.rescue-process,
.services,
.rescue-cta{

padding:10px 0 90px 0;

}

.rescue-intro{

background:#fbf6ec;

}

.rescue-grid{

display:grid;

grid-template-columns:45% 55%;

gap:60px;

align-items:center;

}

.rescue-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.process-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

margin-top:60px;

}

.process-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.number{

width:70px;

height:70px;

background:#0F2C59;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin:auto;

font-size:28px;

font-weight:700;

margin-bottom:20px;

}

.services{

background:#fbf6ec;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.service-card:hover{

transform:translateY(-8px);

}

.rescue-cta{

background:#0F2C59;

text-align:center;

color:#fff;

}

.rescue-cta h2{

color:#fff;

margin-bottom:20px;

}

.cta-buttons{

margin-top:35px;

display:flex;

justify-content:center;

gap:20px;

}

@media(max-width:992px){

.rescue-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

}



.heal-protect-section{
    padding:90px 0;
    background:#fbf6ec;
}

.heal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.heal-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.heal-content{
    display:grid;
    gap:20px;
}

.heal-card{
    display:flex;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:14px;
    transition:.3s;
    border:1px solid #eee;
}

.heal-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.heal-card .icon{
    width:65px;
    height:65px;
    background:#0d3b66;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.heal-card h3{
    margin-bottom:8px;
    color:#0d3b66;
    font-size:22px;
}

.heal-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

@media(max-width:992px){

.heal-grid{
grid-template-columns:1fr;
}

}

.heal-cta{
    margin-top:70px;
    text-align:center;
    background:#0d3b66;
    color:#fff;
    padding:60px 40px;
    border-radius:18px;
}

.heal-cta h2{
    font-size:42px;
    margin-bottom:15px;
    color:#fff;
}

.heal-cta p{
    max-width:700px;
    margin:auto auto 30px;
    color:#ddd;
    line-height:1.8;
}

.nurture-section{
    background:#fbf6ec;
}

.nurture-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-top:60px;
}

.nurture-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.nurture-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:24px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box .icon{
    width:70px;
    height:70px;
    background:#0d2d62;
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    flex-shrink:0;
}

.info-box h4{
    margin-bottom:10px;
    color:#0d2d62;
    font-size:22px;
    font-weight:700;
}

.info-box p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.nurture-wrapper{
    grid-template-columns:1fr;
}

.nurture-image{
    order:1;
}

.nurture-content{
    order:2;
}

}

/*=========================================
        EDUCATE & INSPIRE
=========================================*/

.educate-section{
    padding:100px 0;
    background:#fbf6ec;
}

.educate-grid{

    display:grid;

    /* Better than 42% 58% */
    grid-template-columns: 1fr 1.2fr;

    gap:50px;

    align-items:center;

}

.educate-image{

    min-width:0;

}

.educate-image img{

    width:100%;

    display:block;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.educate-content{

    min-width:0;
    width:100%;

}

.educate-content .section-title{

    margin-bottom:35px;

}

.educate-content .section-title span{

    display:inline-block;

    color:#b68a35;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:10px;

}

.educate-content .section-title h2{

    font-size:44px;

    color:#08244b;

    margin-bottom:20px;

    line-height:1.2;

}

.educate-content .section-title p{

    font-size:17px;

    line-height:30px;

    color:#555;

}

/*=========================
Feature Boxes
==========================*/

.educate-boxes{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:20px;

    width:100%;

}

.edu-card{

    display:flex;

    align-items:flex-start;

    gap:16px;

    background:#fff;

    padding:22px;

    border-radius:15px;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    transition:.35s;

    box-sizing:border-box;

    min-width:0;

}

.edu-card:hover{

    transform:translateY(-6px);

}

.edu-icon{

    width:60px;

    height:60px;

    flex:0 0 60px;

    border-radius:50%;

    background:#f6edd9;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.edu-card h4{

    color:#08244b;

    margin-bottom:8px;

    font-size:20px;

    line-height:1.3;

}

.edu-card p{

    color:#666;

    line-height:1.7;

    font-size:15px;

    margin:0;

    word-break:break-word;

}

/*=========================
Quote
==========================*/

.educate-quote{

    margin-top:40px;

    padding:30px;

    border-left:5px solid #b68a35;

    background:#fffdf8;

    border-radius:12px;

}

.educate-quote h3{

    color:#08244b;

    font-size:24px;

    line-height:1.6;

    font-style:italic;

    margin:0;

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.educate-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.educate-content .section-title h2{

    font-size:36px;

}

.educate-boxes{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.educate-section{

    padding:70px 0;

}

.educate-content .section-title h2{

    font-size:30px;

}

.educate-content .section-title p{

    font-size:16px;

    line-height:28px;

}

.edu-card{

    padding:18px;

}

.edu-icon{

    width:50px;

    height:50px;

    flex:0 0 50px;

    font-size:24px;

}

.educate-quote{

    padding:20px;

}

.educate-quote h3{

    font-size:20px;

}

}
/*=========================================
      END
==========================================*/