/* ===================================
   SolarPedia.in
   Main Stylesheet
=================================== */

:root{
    --primary:#0B5ED7;
    --secondary:#198754;
    --accent:#FD7E14;
    --dark:#212529;
    --light:#ffffff;
    --gray:#6c757d;
    --bg:#f8fafc;
    --border:#e9ecef;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins','Noto Sans Bengali',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   Top Bar
========================== */

.topbar{
    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar a{
    color:#fff;
    margin-left:10px;
    transition:.3s;
}

.topbar a:hover{
    color:#ffd166;
}

/* ==========================
   Header
========================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:60px;
    width:auto;
}

nav ul{
    display:flex;
    gap:30px;
}

nav a{
    color:var(--dark);
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--secondary);
    transition:.3s;
}

nav a:hover{
    color:var(--secondary);
}

nav a:hover::after{
    width:100%;
}

.search-btn{
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    transform:scale(1.2);
}

/* ==========================
   Hero
========================== */

.hero{
    background:linear-gradient(180deg,#eef7ff,#ffffff);
    padding:80px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#e8f7ef;
    color:var(--secondary);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.hero h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    color:var(--gray);
    margin-bottom:35px;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:15px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(253,126,20,.3);
}

.btn-secondary{
    background:#fff;
    color:var(--primary);
    border:2px solid var(--primary);
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
}

.hero-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* ==========================
   Section Title
========================== */

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:34px;
}

.section-title a{
    color:var(--secondary);
    font-weight:600;
}

/* ==========================
   Utilities
========================== */

.text-center{
    text-align:center;
}

.mt-50{
    margin-top:50px;
}

.mb-50{
    margin-bottom:50px;
}
/* ==========================
   Featured Article
========================== */

.featured{
    padding:80px 0;
    background:#f8fafc;
}

.featured-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.featured-image img{
    border-radius:15px;
    box-shadow:var(--shadow);
}

.featured-content h2{
    font-size:38px;
    margin:20px 0;
}

.featured-content p{
    color:#666;
    margin-bottom:30px;
}

.tag{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
}
/* ==========================
   Articles
========================== */

.articles{
    padding:80px 0;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card-body h3{
    margin:15px 0;
    font-size:22px;
}

.card-body p{
    color:#666;
    margin-bottom:20px;
}

.card-body a{
    color:#198754;
    font-weight:600;
}
/* ==========================
   Categories
========================== */

.categories{
    padding:80px 0;
    background:#f8fafc;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:var(--shadow);
    color:#212529;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.category-card:hover{
    background:#198754;
    color:#fff;
    transform:translateY(-8px);
}
/* ==========================
   Newsletter
========================== */

.newsletter{
    background:#0B5ED7;
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.newsletter h2{
    font-size:40px;
}

.newsletter p{
    margin:20px 0;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.newsletter input{
    padding:15px;
    width:350px;
    border:none;
    border-radius:8px;
}

.newsletter button{
    padding:15px 30px;
    border:none;
    border-radius:8px;
    background:#FD7E14;
    color:#fff;
    cursor:pointer;
    font-weight:600;
}
/* ==========================
   Footer
========================== */

footer{
    background:#212529;
    color:#fff;
    padding:60px 0 20px;
}

.footer{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer h3{
    margin-bottom:20px;
}

.footer ul{
    padding:0;
}

.footer li{
    margin-bottom:10px;
}

.footer a{
    color:#ddd;
}

.footer a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
}
/* ==========================================
   Search Popup
========================================== */

.search-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    backdrop-filter:blur(5px);
}

.search-popup.active{
    display:flex;
}

.search-box{
    width:95%;
    max-width:650px;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    animation:popup .35s ease;
}

.search-box h2{
    font-size:38px;
    margin-bottom:25px;
    color:#222;
}

.search-box input{
    width:100%;
    padding:18px 20px;
    font-size:18px;
    border:2px solid #dddddd;
    border-radius:12px;
    outline:none;
    transition:.3s;
    margin-bottom:25px;
}

.search-box input:focus{
    border-color:#0B5ED7;
    box-shadow:0 0 15px rgba(11,94,215,.20);
}

.search-button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#0B5ED7,#198754);
    color:#ffffff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.20);
}

.close-search{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    background:#f3f3f3;
    border-radius:50%;
    font-size:26px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.close-search:hover{
    background:#0B5ED7;
    color:#ffffff;
    transform:rotate(90deg);
}

@keyframes popup{

    0%{
        transform:translateY(-50px) scale(.85);
        opacity:0;
    }

    100%{
        transform:translateY(0) scale(1);
        opacity:1;
    }

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

@media (max-width:992px){

.menu-toggle{
    display:block;
    font-size:32px;
    cursor:pointer;
    z-index:10001;
}

.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:20px 0;
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.quote-btn{
    display:none;
}

nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    overflow-y:auto;
    transition:0.3s;
    z-index:10000;
    padding-top:80px;
}

nav.active{
    right:0;
}

nav ul{
    display:flex;
    flex-direction:column;
}

nav ul li{
    width:100%;
    border-bottom:1px solid #eee;
}

nav ul li a{
    display:block;
    padding:16px 20px;
}

.dropdown-menu{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    width:100%;
    padding-left:20px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

}
/* ==========================
   Search Results
========================== */

#searchResults{

    margin-top:15px;
    max-height:300px;
    overflow-y:auto;

}

.search-item{

    display:block;
    padding:12px;
    border-bottom:1px solid #eee;
    text-decoration:none;
    color:#333;
    transition:.3s;

}

.search-item:hover{

    background:#f5f5f5;

}

.search-item small{

    color:#777;

}

.no-result{

    padding:15px;
    text-align:center;
    color:#888;

}
/* ===========================
   Header Right
=========================== */

.header-right{
display:flex;
align-items:center;
gap:18px;
}

.quote-btn{

background:#ff8c1a;
color:#fff;
padding:12px 24px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.quote-btn:hover{

background:#e67700;
transform:translateY(-2px);

}

.search-btn{

cursor:pointer;
font-size:22px;
transition:.3s;

}

.search-btn:hover{

transform:scale(1.15);

}

nav ul li a{

position:relative;
padding-bottom:6px;

}

nav ul li a::after{

content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:#198754;
transition:.3s;

}

nav ul li a:hover::after,
nav ul li a.active::after{

width:100%;

}
/* ==========================================
   Sticky Header
========================================== */

header{

    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    transition:all .3s ease;

}

header.scrolled{

    box-shadow:0 6px 20px rgba(0,0,0,.12);

}

header.scrolled .header{

    padding:12px 0;

}

.header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    transition:padding .3s ease;

}
/* ==========================================
   Back To Top Button
========================================== */

#backToTop{

    position:fixed;
    bottom:30px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#198754;
    color:#fff;

    font-size:22px;
    cursor:pointer;

    display:none;

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

    transition:.3s;

    z-index:999;

}

#backToTop:hover{

    background:#157347;
    transform:translateY(-4px);

}
/* ==========================================
   Why Choose SolarPedia
========================================== */

.why-us{

padding:80px 0;
background:#f8fbfd;

}

.section-title{

text-align:center;
margin-bottom:50px;

}

.section-title h2{

font-size:36px;
margin-bottom:15px;

}

.section-title p{

color:#666;
font-size:18px;

}

.why-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;

}

.why-card{

background:#fff;
padding:35px 25px;
border-radius:18px;
text-align:center;

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

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

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

}

.why-icon{

font-size:48px;
margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

}

.why-card p{

color:#666;
line-height:1.7;

}
/* ==========================================
   Statistics Counter
========================================== */

.stats{

background:linear-gradient(135deg,#0B5ED7,#198754);

padding:80px 20px;

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

gap:30px;

text-align:center;

}

.stat-box{

padding:30px 20px;

}

.stat-box h2{

font-size:52px;

margin-bottom:10px;

font-weight:700;

}

.stat-box p{

font-size:18px;

opacity:.95;

}
/* ==========================
   Professional Dropdown
========================== */

.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    min-width:260px;

    background:#fff;

    border-radius:12px;

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

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s ease;

    z-index:999;

    padding:10px 0;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    list-style:none;

}

.dropdown-menu li a{

    display:block;

    padding:14px 22px;

    color:#333;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.dropdown-menu li a:hover{

    background:#f4fff4;

    color:#2E8B57;

    padding-left:28px;

}
/* ================= Featured Guides ================= */

.featured-guides{
padding:70px 0;
background:#f8fbf6;
}

.guide-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.guide-card{
background:#fff;
border-radius:15px;
padding:30px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.guide-card:hover{
transform:translateY(-8px);
}

.guide-card img{
width:70px;
height:70px;
margin-bottom:20px;
}

.guide-card h3{
margin-bottom:15px;
}

.guide-card p{
margin-bottom:20px;
line-height:1.6;
}
.hero-buttons{
display:flex;
gap:15px;
margin-top:25px;
flex-wrap:wrap;
}

.btn-secondary{

display:inline-block;

padding:14px 28px;

background:#ffffff;

color:#1b5e20;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.btn-secondary:hover{

background:#e8f5e9;

transform:translateY(-2px);

}
/* ================= Why Go Solar ================= */

.why-solar{

padding:80px 0;

background:#ffffff;

}

.why-solar-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.solar-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

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

transition:.3s;

}

.solar-card:hover{

transform:translateY(-8px);

}

.solar-icon{

font-size:48px;

margin-bottom:20px;

}

.solar-card h3{

margin-bottom:15px;

font-size:22px;

}

.solar-card p{

line-height:1.8;

color:#666;

}
/* ================= Popular Tools ================= */

.popular-tools{
padding:80px 0;
background:#f7faf8;
}

.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.tool-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.tool-card:hover{
transform:translateY(-8px);
}

.tool-icon{
font-size:45px;
margin-bottom:18px;
}

.tool-card h3{
margin-bottom:15px;
}

.tool-card p{
margin-bottom:20px;
line-height:1.7;
color:#666;
}
/* ================= Breadcrumb ================= */

.breadcrumb{
background:#f5f5f5;
padding:12px 0;
font-size:14px;
}

.breadcrumb .container{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
}

.breadcrumb a{
color:#2e7d32;
text-decoration:none;
font-weight:500;
}

.breadcrumb span{
color:#777;
}

.related-guides{
padding:70px 0;
background:#f8fbf6;
}
/* ================= Last Updated ================= */

.last-updated{

padding:30px 0;

background:#f8f8f8;

font-size:15px;

color:#666;

border-top:1px solid #eee;

}
/* ================= MOBILE HEADER ================= */

@media (max-width:768px){

body{
    overflow-x:hidden;
}

.topbar .container{
    flex-direction:column;
    text-align:center;
    gap:5px;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
}

.logo img{
    height:45px;
}

#navbar{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100%;
    background:#fff;
    transition:.3s;
    overflow-y:auto;
    z-index:9999;
    padding-top:70px;
}

#navbar.active{
    right:0;
}

.menu-toggle{
    display:block;
    font-size:32px;
    cursor:pointer;
}

.header-right{
    display:none;
}

.article-grid,
.footer,
.tools-grid,
.category-grid,
.news-grid,
.stats-grid{
    grid-template-columns:1fr;
}

}

.latest-news{
    padding:80px 0;
    background:#f8fafc;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.news-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.news-tag{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.news-card h3{
    margin:15px 0;
}

.news-card p{
    margin-bottom:25px;
    color:#666;
}

@media(max-width:768px){

.news-grid{
    grid-template-columns:1fr;
}

}
.homepage-faq{
    padding:80px 0;
}

.homepage-faq .faq-item{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.homepage-faq h3{
    margin-bottom:12px;
}

.homepage-faq p{
    color:#555;
    line-height:1.7;
}
:root{

--primary:#16A34A;

--primary-dark:#15803D;

--accent:#F59E0B;

--background:#F8FAFC;

--white:#FFFFFF;

--text:#1F2937;

--text-light:#6B7280;

--border:#E5E7EB;

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

--radius:18px;

--transition:.3s ease;

}
*{

transition:var(--transition);

}

body{

background:var(--background);

color:var(--text);

}
img{

max-width:100%;

height:auto;

display:block;

}
section{

padding:70px 0;

}
.container{

max-width:1280px;

margin:auto;

padding:0 20px;

}
.btn,
.quote-btn,
.tool-btn,
button{

display:inline-flex;

align-items:center;

justify-content:center;

gap:8px;

padding:14px 28px;

border:none;

border-radius:14px;

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

color:#fff;

font-size:16px;

font-weight:600;

cursor:pointer;

text-decoration:none;

box-shadow:0 10px 25px rgba(22,163,74,.25);

transition:.3s;

}

.btn:hover,
.quote-btn:hover,
.tool-btn:hover,
button:hover{

transform:translateY(-3px);

box-shadow:0 18px 35px rgba(22,163,74,.35);

}
.content-card,
.tool-card,
.article-card,
.feature-card,
.calc-card{

background:#fff;

border-radius:18px;

padding:24px;

box-shadow:0 12px 30px rgba(0,0,0,.06);

border:1px solid var(--border);

transition:.3s;

}

.content-card:hover,
.tool-card:hover,
.article-card:hover,
.feature-card:hover,
.calc-card:hover{

transform:translateY(-6px);

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

}
h1{

font-size:46px;

font-weight:800;

line-height:1.2;

color:var(--text);

}

h2{

font-size:34px;

font-weight:700;

margin-bottom:20px;

color:var(--text);

}

h3{

font-size:24px;

font-weight:600;

margin-bottom:15px;

color:var(--text);

}
a{

color:var(--primary);

text-decoration:none;

transition:.3s;

}

a:hover{

color:var(--primary-dark);

}

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

header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header container */

header .container {
    max-width: 1400px;
    height: 78px;
    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 35px;
    width: 220px;
    height: 55px;
}

.logo img {
    width: 220px;
    height: 55px;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* =========================================
   NAVIGATION
========================================= */

nav {
    flex: 1;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}


/* Main navigation links */

nav ul li > a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 14px;

    color: #111827;
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    border-radius: 10px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

nav ul li > a:hover {
    background: #f0faf5;
    color: #12894f;
}


/* Icons */

nav ul li > a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


/* =========================================
   TOOLS
========================================= */

nav ul li.tools {
    position: relative;
}

.dropdown-arrow {
    font-size: 16px;
    margin-left: 2px;
    transition: transform 0.25s ease;
}


/* Rotate arrow */

nav ul li.tools:hover .dropdown-arrow {
    transform: rotate(180deg);
}


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

.dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);

    min-width: 255px;

    background: #ffffff;

    border-radius: 14px;

    padding: 10px;

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

    border: 1px solid #eeeeee;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* Dropdown visible */

nav ul li.tools:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

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


/* Dropdown links */

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;

    width: 100%;

    padding: 12px 15px;

    color: #172033;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    border-radius: 9px;

    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #edf9f2;
    color: #12894f;
    padding-left: 19px;
}


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

#openSearch {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111827;

    transition: all 0.25s ease;
}

#openSearch:hover {
    background: #f0faf5;
    color: #12894f;
}

#openSearch i {
    font-size: 22px;
}


/* =========================================
   CONSULTATION BUTTON
========================================= */

.consultation-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 18px;

    padding: 15px 27px;

    background: #12894f;
    color: #ffffff;

    border-radius: 13px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    box-shadow: 0 7px 18px rgba(18, 137, 79, 0.20);

    transition: all 0.25s ease;
}

.consultation-btn:hover {
    background: #0d713f;
    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(18, 137, 79, 0.28);
}

/* =========================================
   FOOTER COLOR FIX
========================================= */

footer {
    background: #1f2428;
    color: #ffffff;
}

/* Footer headings */
footer h2,
footer h3,
footer .footer-title {
    color: #ffffff !important;
}

/* Footer normal text */
footer p {
    color: #f1f1f1 !important;
}

/* Footer links */
footer a {
    color: #f1f1f1 !important;
    text-decoration: none;
}

/* Footer links hover */
footer a:hover {
    color: #18a957 !important;
}

/* Footer bottom line */
footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
}

/* Copyright */
footer .footer-bottom p {
    color: #ffffff !important;
}

/* Social links */
footer .social-links a {
    color: #ffffff !important;
}

footer .social-links a:hover {
    color: #18a957 !important;
}
