
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================================
ROOT VARIABLES
======================================*/

:root{

    --primary:#0B5D3B;
    --secondary:#0F7A4F;
    --dark:#063E29;
    --gold:#D4A017;
    --white:#ffffff;
    --light:#F8F9F7;
    --text:#555;
    --heading:#222;
    --border:#e6e6e6;

}

/*=====================================
GLOBAL
======================================*/

/*=====================================
MOBILE SCREEN FIX
======================================*/

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

*{
    max-width:100%;
}

img,
video,
iframe{
    max-width:100%;
    height:auto;
}

.container,
.row{
    width:100%;
    margin-left:auto;
    margin-right:auto;
}


/* Mobile */
@media (max-width:767.98px){

    body{
        overflow-x:hidden !important;
    }

    .container{
        width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .row{
        margin-left:0;
        margin-right:0;
    }
}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.4s;

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

section{

    padding:90px 0;

}

.container{

    max-width:1200px;

}

h1,h2,h3,h4,h5,h6{

    color:var(--heading);
    font-weight:700;

}

p{

    color:var(--text);

}

/*=====================================
SECTION TITLE
======================================*/

.section-subtitle{

    color:var(--gold);
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;

}

.section-title{

    font-size:42px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:20px;

}

/*=====================================
BUTTONS
======================================*/

.btn-success{

    background:var(--primary);
    border:none;
    padding:13px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.btn-success:hover{

    background:var(--dark);
    transform:translateY(-3px);

}

.btn-warning{

    background:var(--gold);
    color:#fff;
    border:none;
    padding:13px 35px;
    border-radius:50px;
    font-weight:600;

}

.btn-warning:hover{

    background:#bf8f0b;
    color:#fff;

}

.btn-outline-success{

    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    padding:13px 35px;
    font-weight:600;

}

.btn-outline-success:hover{

    background:var(--primary);
    color:#fff;

}

/*=====================================
TOP HEADER
======================================*/

.top-header{
    position: sticky;
    top: 0;
    z-index: 1050;

    background: #0B7A3E; /* Green Color */
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    overflow: hidden;
}

.top-header-scroll{
    max-width: 1200px;
    margin: auto;
}

.top-header span{
    margin-right: 25px;
    display: inline-block;
    white-space: nowrap;
}

.top-header i{
    color: #FFD700;
    margin-right: 7px;
}


/*=====================================
NAVBAR
======================================*/

.navbar{
    position:sticky;
    top:44px;                 /* Top Header Height */
    z-index:1049;
    background:#fff !important;
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
}

/* Logo */

.navbar-brand img{
    width:75px;
    transition:.3s;
}

/* Menu */

.navbar-nav .nav-item{
    margin-left:8px;
    position:relative;
}

.navbar-nav .nav-link{
    color:#222 !important;
    font-size:15px;
    font-weight:600;
    padding:12px 15px !important;
    transition:.3s;
    position:relative;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:15px;
    bottom:6px;
    width:0;
    height:2px;
    background:#0B7A3E;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0B7A3E !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:55%;
}

/*=====================================
DROPDOWN
======================================*/

.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:8px 0;
    min-width:250px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    animation:dropdownFade .25s ease;
}

.dropdown-item{
    font-size:14px;
    padding:10px 20px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#0B7A3E;
    color:#fff;
    padding-left:28px;
}

@keyframes dropdownFade{

from{
    opacity:0;
    transform:translateY(10px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

/* Desktop Hover */

@media(min-width:992px){

.dropdown:hover>.dropdown-menu{
    display:block;
}

}

/*=====================================
BUTTON
======================================*/

.btn-success{
    background:#0B7A3E;
    border:none;
    border-radius:30px;
    padding:10px 25px;
    font-weight:600;
    transition:.3s;
}

.btn-success:hover{
    background:#085b2f;
    transform:translateY(-2px);
}

/*=====================================
TOGGLER
======================================*/

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/*=====================================
MOBILE
======================================*/

@media(max-width:991px){

.navbar{
    top:40px;
    padding:10px 0;
}

.navbar-brand img{
    width:60px;
}

.navbar-collapse{
    margin-top:15px;
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.navbar-nav .nav-item{
    margin:0;
}

.navbar-nav .nav-link{
    padding:12px 15px !important;
    border-radius:8px;
}

.navbar-nav .nav-link:hover{
    background:#f3faf5;
}

.dropdown-menu{
    border:none;
    box-shadow:none;
    background:#f8f9fa;
    margin-left:15px;
    min-width:100%;
}

.dropdown-item{
    padding:10px 15px;
}

.btn-success{
    width:100%;
    margin-top:15px;
}

}
/*=====================================
MOBILE
======================================*/

@media (max-width:991.98px){

    .top-header{
        padding:8px 0;
        white-space:nowrap;
    }

    .top-header-scroll{
        display:inline-block;
        white-space:nowrap;
        animation:marquee 15s linear infinite;
    }

    .top-header span{
        margin-right:40px;
    }

    .navbar{
        top:40px;   /* Mobile top header height */
    }
}

@keyframes marquee{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

/*=====================================
HERO SECTION
======================================*/

.hero{

    background-image: url("../images/hero.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    min-height: 750px;
    width: 100%;

    display: flex;
    align-items: center;

    padding: 100px 0;

    position: relative;

    overflow: hidden;

}

/* Dark Overlay */

.hero::before{

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.25);

}

/* Keep content above overlay */

.hero .container{

    position: relative;
    z-index: 2;

}

/* Hero Content */

.hero h1{

    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;

    color: #ffffff;

    margin-bottom: 20px;

}

.hero h1 span{

    color: #FFD54F;

}

.hero h4{

    color: #ffffff;

    margin-bottom: 20px;

    font-weight: 600;

}

.hero p{

    color: #f5f5f5;

    font-size: 17px;

    line-height: 30px;

    margin-bottom: 35px;

}

/* Buttons */

.hero .btn{

    border-radius: 50px;

    padding: 14px 35px;

    font-weight: 600;

}

.hero .btn-success{

    background: #0B5D3B;

    border: none;

}

.hero .btn-success:hover{

    background: #063E29;

}

.hero .btn-outline-success{

    border: 2px solid #ffffff;

    color: #ffffff;

}

.hero .btn-outline-success:hover{

    background: #ffffff;

    color: #0B5D3B;

}

/* Mobile */

@media(max-width:768px){

.hero{

    min-height:600px;

    background-position:center;

    padding:70px 0;

}

.hero h1{

    font-size:38px;

}

.hero h4{

    font-size:22px;

}

.hero p{

    font-size:15px;

    line-height:28px;

}

.hero .btn{

    width:100%;
    margin-bottom:15px;

}

}

/*=====================================
STICKY NAVBAR
======================================*/

.sticky-top{

    z-index:999;

}
.top-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #0B7A3E;
}

.navbar{
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    z-index: 1049;
    background: #fff !important;
}

body{
    padding-top: 120px; /* Header overlap ഒഴിവാക്കാൻ */
}
/*=====================================
SOCIAL ICONS
======================================*/

.social-icons{

    display:flex;
    gap:12px;

}

.social-icons a{

    width:42px;
    height:42px;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;

}

.social-icons a:hover{

    background:var(--gold);
    transform:translateY(-5px);

}

/*=====================================
COMMON CARD
======================================*/

.card-style{

    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.card-style:hover{

    transform:translateY(-10px);

}

/*=====================================
ANIMATION
======================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*=====================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--dark);

}

/*==================================================
STYLE.CSS
PART 2
FEATURES | ABOUT | STATS | SERVICES
==================================================*/

/*====================================
FEATURES
====================================*/

.features{
    background:#f8f9fa;
}

.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-top:4px solid #0B7A3E;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:auto;
    background:#0B7A3E;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.feature-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.feature-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

@media(max-width:768px){

.feature-card{
    padding:25px 20px;
}

.feature-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.feature-card h5{
    font-size:18px;
}

}

/*====================================
ABOUT
====================================*/

.about{
    background:var(--light);
}

.about img{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.about h5{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:15px;
    margin-bottom:15px;
}

.about h2{
    font-size:45px;
    margin-bottom:20px;
}

.about h2 span{
    color:var(--primary);
}

.about p{
    margin-bottom:25px;
    text-align:justify;
}

.about ul{
    margin-bottom:30px;
}

.about ul li{
    margin-bottom:15px;
    position:relative;
    padding-left:35px;
    font-weight:500;
}

.about ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    text-align:center;
    line-height:24px;
    font-size:13px;
}

/*=====================================
STATISTICS
======================================*/

.stats{
    background:#f8f9fa;
    padding:80px 0;
}

.stats .row{
    row-gap:25px;
}

.stats .col-lg-3{
    margin-bottom:15px;
}

.stats .col-lg-3 > div{
    background:#fff;
    padding:35px 20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-bottom:4px solid #0B7A3E;
}

.stats .col-lg-3 > div:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.stats h2{
    font-size:42px;
    font-weight:700;
    color:#0B7A3E;
    margin-bottom:10px;
}

.stats p{
    font-size:16px;
    color:#666;
    margin:0;
    font-weight:500;
}

/* Mobile */

@media(max-width:768px){

.stats{
    padding:50px 0;
}

.stats h2{
    font-size:32px;
}

.stats p{
    font-size:14px;
}

}

/*=====================================
SERVICES
======================================*/

.services{
    background:#f8faf9;
}

.section-subtitle{
    color:#0B7A3E;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:40px;
    font-weight:700;
    margin:15px 0;
    color:#222;
}

.section-desc{
    max-width:650px;
    margin:auto;
    color:#666;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#0B7A3E;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#0B7A3E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.service-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-btn{
    color:#0B7A3E;
    text-decoration:none;
    font-weight:600;
}

.service-btn:hover{
    color:#095d31;
}

@media(max-width:768px){

.section-title{
    font-size:30px;
}

.service-card{
    padding:25px;
}

.service-icon{
    width:70px;
    height:70px;
    font-size:26px;
}

.service-card h4{
    font-size:20px;
}

}

/*====================================
SECTION SPACING
====================================*/

.features,
.about,
.stats,
.services{
    position:relative;
}

/*====================================
BACKGROUND SHAPE
====================================*/

.services::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(11,93,59,.05);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.services::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(212,160,23,.05);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

/*====================================
HOVER EFFECT
====================================*/

.feature-box,
.service-card,
.about img{
    transition:all .4s ease;
}

.about img:hover{
    transform:scale(1.03);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px){

.about{
    text-align:center;
}

.about ul{
    text-align:left;
}

.about img{
    margin-bottom:40px;
}

.stats .col-lg-3{
    margin-bottom:30px;
}

.stats .col-lg-3::after{
    display:none;
}

}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.about h2{
    font-size:34px;
}

.stats h2{
    font-size:36px;
}

.feature-box,
.service-card{
    padding:25px 15px;
}

.service-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.feature-box i{
    width:65px;
    height:65px;
    line-height:65px;
    font-size:24px;
}

}


/*=====================================
LOAN SECTION
======================================*/

.loan-section{
    padding:90px 0;
    background:#f7faf8;
}

/* Equal Height */

.loan-section .row{
    align-items:stretch;
}

.loan-section .col-lg-7,
.loan-section .col-lg-5{
    display:flex;
}

/*=====================================
LOAN BANNER
======================================*/

.loan-banner{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    background:linear-gradient(135deg,#0B5D3B,#0E7A4B);

    border-radius:24px;

    padding:45px;

    color:#fff;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    transition:.4s;

}

.loan-banner:hover{

    transform:translateY(-5px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.loan-banner img{

    width:100%;

    max-width:260px;

    transition:.5s;

}

.loan-banner:hover img{

    transform:scale(1.05);

}

.loan-banner h6{

    color:#FFD54F;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.loan-banner h2{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin:15px 0;

}

.loan-banner p{

    color:#f3f3f3;

    line-height:1.8;

    margin-bottom:30px;

}

.loan-banner .btn-warning{

    background:#FFC107;

    border:none;

    color:#222;

    padding:13px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.loan-banner .btn-warning:hover{

    background:#FFD54F;

}

/*=====================================
CALCULATOR
======================================*/

.calculator-card{

    width:100%;
    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.calculator-card h3{

    color:#0B5D3B;

    font-weight:700;

    margin-bottom:10px;

}

.calculator-card p{

    color:#666;

    margin-bottom:25px;

}

.calculator-card label{

    font-weight:600;

    margin-bottom:8px;

}

.calculator-card .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

    box-shadow:none;

    transition:.3s;

}

.calculator-card .form-control:focus{

    border-color:#0B5D3B;

    box-shadow:0 0 0 3px rgba(11,93,59,.15);

}

.calculator-card .btn{

    height:55px;

    border-radius:50px;

    font-weight:600;

}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.loan-section{

    padding:60px 0;

}

.loan-section .col-lg-7,
.loan-section .col-lg-5{

    display:block;

}

.loan-banner,
.calculator-card{

    height:auto;

}

.loan-banner{

    padding:30px;

    text-align:center;

}

.loan-banner img{

    margin-bottom:25px;

}

.loan-banner h2{

    font-size:30px;

}

.calculator-card{

    margin-top:20px;

    padding:30px;

}

}

/*==============================
WHY CHOOSE US
==============================*/

.why-us{
    background:#fff;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    width:80px;
    height:80px;
    background:#0B5D3B;
    color:#fff;
    border-radius:50%;
    line-height:80px;
    font-size:32px;
    margin-bottom:20px;
    transition:.4s;
}

.why-card:hover i{
    background:#D4A017;
    transform:rotate(360deg);
}

.why-card h5{
    margin-bottom:15px;
}

/*==============================
LATEST NEWS
==============================*/

.latest-news{
    background:#f8f9f7;
}

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.news-card:hover img{
    transform:scale(1.08);
}

.news-content{
    padding:25px;
}

.news-date{
    color:#D4A017;
    font-weight:600;
    font-size:14px;
}

.news-content h4{
    margin:15px 0;
    font-size:22px;
}

.news-content a{
    color:#0B5D3B;
    font-weight:600;
}

.news-content a:hover{
    color:#D4A017;
}

/*=====================================
BRANCH SECTION
======================================*/

.branch-section{
    padding:100px 0;
    background:#f8faf8;
}

.branch-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

}

.branch-card h4{

    color:#0B7A3E;

    font-weight:700;

}

.branch-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:25px;

}

.branch-item .icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#0B7A3E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.branch-item h6{

    font-weight:700;

    margin-bottom:6px;

    color:#222;

}

.branch-item p{

    margin:0;

    color:#666;

    line-height:1.8;

}

/*=====================================
MAP
======================================*/

.map-box{

    height:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:520px;

    border:0;

}

/*=====================================
BUTTONS
======================================*/

.branch-card .btn{

    border-radius:40px;

    padding:12px 28px;

    font-weight:600;

}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.branch-section{

    padding:70px 0;

}

.branch-card{

    margin-bottom:25px;

}

.map-box iframe{

    min-height:350px;

}

}

@media(max-width:768px){

.branch-card{

    padding:25px;

}

.branch-item{

    gap:12px;

}

.branch-item .icon{

    width:45px;

    height:45px;

    font-size:18px;

}

.branch-card .btn{

    width:100%;

    margin-bottom:10px;

}

}

/*==============================
GALLERY
==============================*/

.gallery-section{
    background:#f8f9f7;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(11,93,59,.45);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.gallery-item::after{
    content:"+";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:48px;
    font-weight:bold;
    opacity:0;
    transition:.4s;
    z-index:2;
}

.gallery-item:hover::before,
.gallery-item:hover::after{
    opacity:1;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.loan-banner{
    padding:35px;
    text-align:center;
}

.loan-banner img{
    margin-bottom:30px;
}

.loan-banner h2{
    font-size:30px;
}

.news-card{
    margin-bottom:25px;
}

}

@media(max-width:768px){

.loan-banner{
    padding:25px;
}

.loan-banner h2{
    font-size:26px;
}

.calculator-card{
    margin-top:30px;
}

.gallery-item img{
    height:220px;
}

.news-content h4{
    font-size:20px;
}

.branch-box{
    margin-bottom:30px;
}

}

/*==================================================
STYLE.CSS
PART 4
NEWSLETTER | FOOTER | UTILITIES
==================================================*/

/*=====================================
NEWSLETTER
======================================*/

.newsletter{

    background:linear-gradient(135deg,#0B5D3B,#063E29);
    color:#fff;
    position:relative;
    overflow:hidden;

}

.newsletter::before{

    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-120px;
    right:-120px;

}

.newsletter h2{

    color:#fff;
    font-size:40px;
    margin-bottom:15px;

}

.newsletter p{

    color:#f5f5f5;

}

.newsletter-form{

    margin-top:20px;

}

.newsletter .input-group{

    background:#fff;
    border-radius:60px;
    overflow:hidden;
    padding:8px;

}

.newsletter input{

    border:none;
    box-shadow:none;
    padding:18px;
    font-size:16px;

}

.newsletter input:focus{

    box-shadow:none;

}

.newsletter button{

    border-radius:50px;
    padding:14px 35px;
    font-weight:600;

}

/*=====================================
FOOTER
======================================*/

.footer{

    background:#062E1E;
    color:#fff;
    padding:80px 0 20px;

}

.footer h4{

    color:#fff;
    margin-bottom:20px;

}

.footer h5{

    color:#fff;
    margin-bottom:25px;
    position:relative;

}

.footer h5::after{

    content:"";
    width:45px;
    height:3px;
    background:#D4A017;
    position:absolute;
    left:0;
    bottom:-10px;

}

.footer p{

    color:#d9d9d9;

}

.footer-links{

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#dcdcdc;
    transition:.4s;

}

.footer-links a:hover{

    color:#D4A017;
    padding-left:8px;

}

.footer i{

    color:#D4A017;
    margin-right:8px;

}

/*=====================================
SOCIAL ICONS
======================================*/

.social-icons{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.social-icons a{

    width:45px;
    height:45px;
    background:#0B5D3B;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    transition:.4s;

}

.social-icons a:hover{

    background:#D4A017;
    transform:translateY(-6px);

}

/*=====================================
COPYRIGHT
======================================*/

.footer hr{

    border-color:rgba(255,255,255,.1);
    margin:40px 0 25px;

}

.footer .mb-0{

    color:#cccccc;
    font-size:15px;

}

/*=====================================
BACK TO TOP
======================================*/

#topBtn{

    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#0B5D3B;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    text-decoration:none;
    z-index:999;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

#topBtn:hover{

    background:#D4A017;
    color:#fff;
    transform:translateY(-5px);

}

/*=====================================
UTILITY
======================================*/

.shadow-box{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.rounded-box{

    border-radius:20px;

}

.bg-light-green{

    background:#F8F9F7;

}

.text-primary-green{

    color:#0B5D3B;

}

.text-gold{

    color:#D4A017;

}

/*=====================================
FADE ANIMATION
======================================*/

.fade-up{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

/*=====================================
HOVER SCALE
======================================*/

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.1);

}

/*=====================================
BUTTON EFFECT
======================================*/

.btn{

    transition:.4s;

}

.btn:hover{

    transform:translateY(-3px);

}

/*=====================================
SELECTION
======================================*/

::selection{

    background:#0B5D3B;
    color:#fff;

}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.newsletter{

text-align:center;

}

.newsletter h2{

font-size:32px;

}

.footer{

text-align:center;

}

.footer h5::after{

left:50%;
transform:translateX(-50%);

}

.social-icons{

justify-content:center;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

.newsletter h2{

font-size:28px;

}

.newsletter .input-group{

display:block;
background:none;
padding:0;

}

.newsletter input{

width:100%;
margin-bottom:15px;
border-radius:50px;

}

.newsletter button{

width:100%;
border-radius:50px;

}

#topBtn{

width:45px;
height:45px;
right:18px;
bottom:18px;

}

.footer{

padding-top:60px;

}

.footer h4{

font-size:24px;

}

}

@media(max-width:576px){

.section-title{

font-size:28px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:15px;

}

}

/*=====================================
FLOATING WHATSAPP
======================================*/

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:95px;   /* Back to Top button ന് മുകളിൽ */

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:32px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background:#20ba5a;
    color:#fff;
    transform:translateY(-3px) scale(1.05);
}

@keyframes whatsappPulse{

0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media(max-width:768px){

.whatsapp-float{
    width:55px;
    height:55px;
    font-size:28px;

    right:15px;
    bottom:85px; /* Mobile-ൽ Back to Top ന് മുകളിൽ */
}

}