/* ==========================================================
   Z.P. & Government Employees Co-operative Credit Society
   Bhandara

   Developed By :
   Lekha Enterprises, Wardha

   Version : 2.0
==========================================================*/

/*=========================
ROOT VARIABLES
==========================*/

:root{

--primary:#0056B3;
--secondary:#198754;
--dark:#003366;
--warning:#FFC107;
--danger:#DC3545;
--light:#F5F7FB;
--white:#FFFFFF;
--text:#333333;
--muted:#6C757D;

--radius:18px;

--shadow:0 10px 30px rgba(0,0,0,.08);

--shadow-lg:0 20px 50px rgba(0,0,0,.15);

--transition:.35s ease;

}

/*=========================
RESET
==========================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins','Noto Sans Devanagari',sans-serif;

font-size:16px;

background:var(--light);

color:var(--text);

line-height:1.8;

overflow-x:hidden;

}

/*=========================
SELECTION
==========================*/

::selection{

background:var(--primary);

color:#fff;

}

/*=========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#003f8a;

}

/*=========================
HEADINGS
==========================*/

h1,h2,h3,h4,h5,h6{

font-weight:700;

color:#16335B;

margin-bottom:15px;

}

h1{

font-size:52px;

}

h2{

font-size:40px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

h5{

font-size:20px;

}

p{

margin-bottom:15px;

color:#555;

}

/*=========================
LINKS
==========================*/

a{

text-decoration:none;

transition:var(--transition);

}

a:hover{

text-decoration:none;

}

/*=========================
IMAGES
==========================*/

img{

max-width:100%;

height:auto;

}

/*=========================
SECTION
==========================*/

section{

padding:80px 0;

position:relative;

}

.section-title{

font-size:40px;

font-weight:700;

margin-bottom:20px;

position:relative;

color:var(--dark);

}

.section-title::after{

content:'';

width:80px;

height:4px;

background:var(--warning);

position:absolute;

left:0;

bottom:-10px;

}

.text-center .section-title::after{

left:50%;

transform:translateX(-50%);

}

.section-subtitle{

font-size:18px;

color:#666;

margin-top:25px;

margin-bottom:50px;

}

/*=========================
CONTAINER
==========================*/

.container{

max-width:1240px;

}

/*=========================
BUTTONS
==========================*/

.btn{

border-radius:50px;

padding:12px 30px;

font-weight:600;

transition:var(--transition);

}

.btn-primary{

background:var(--primary);

border:none;

}

.btn-primary:hover{

background:#004494;

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(0,86,179,.25);

}

.btn-warning{

background:var(--warning);

border:none;

}

.btn-warning:hover{

transform:translateY(-3px);

}

.btn-success{

border:none;

}

.btn-success:hover{

transform:translateY(-3px);

}

/*=========================
CARD
==========================*/

.card{

border:none;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

}

.card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

/* Reusable Card */

.card-custom{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

height:100%;

}

.card-custom:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

/*=========================
FORM
==========================*/

.form-control{

border-radius:12px;

padding:12px 15px;

border:1px solid #ddd;

box-shadow:none;

}

.form-control:focus{

border-color:var(--primary);

box-shadow:0 0 0 .15rem rgba(0,86,179,.15);

}

/*=========================
TABLE
==========================*/

.table{

background:#fff;

border-radius:15px;

overflow:hidden;

}

.table thead{

background:var(--primary);

color:#fff;

}

.table th{

font-weight:600;

}

/*=========================
BADGE
==========================*/

.badge{

padding:8px 15px;

font-weight:500;

}

/*=========================
SHADOW
==========================*/

.shadow-custom{

box-shadow:var(--shadow);

}

/*=========================
BORDER RADIUS
==========================*/

.rounded-custom{

border-radius:20px;

}

/*=========================
ANIMATION
==========================*/

.fade-up{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/* Floating */

.float{

animation:floating 4s ease-in-out infinite;

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*=========================
UTILITY
==========================*/

.bg-primary-soft{

background:#EAF3FF;

}

.bg-light{

background:#F8FAFC !important;

}

.text-primary{

color:var(--primary)!important;

}

.text-dark{

color:#16335B!important;

}

.mt-80{

margin-top:80px;

}

.mb-80{

margin-bottom:80px;

}

.py-100{

padding:100px 0;

}

/*====================================================
TOP BAR
====================================================*/

.top-bar{

background:#003366;

color:#fff;

font-size:14px;

padding:8px 0;

}

.top-bar small{

color:#fff;

font-weight:500;

}

.top-bar i{

color:#FFC107;

margin-right:6px;

}

.top-bar a{

color:#fff;

margin-left:12px;

transition:.3s;

}

.top-bar a:hover{

color:#FFC107;

}

/* Language Buttons */

.top-bar .btn{

padding:5px 12px;

font-size:13px;

border-radius:25px;

font-weight:600;

margin-left:5px;

}

/*====================================================
HEADER
====================================================*/

.site-header{

background:#ffffff;

padding:18px 0;

border-bottom:1px solid #e8eef6;

box-shadow:0 3px 20px rgba(0,0,0,.04);

}

.logo{

max-height:85px;

transition:.35s;

}

.logo:hover{

transform:scale(1.05);

}

.society-name{

font-size:30px;

font-weight:700;

color:#003366;

margin-bottom:5px;

line-height:1.3;

}

.society-subtitle{

font-size:15px;

color:#666;

margin:0;

font-weight:500;

}

/* Search Button */

.header-search{

width:50px;

height:50px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

background:#F4F7FC;

color:#0056B3;

border:none;

transition:.35s;

}

.header-search:hover{

background:#0056B3;

color:#fff;

transform:rotate(15deg);

}

/*====================================================
NAVBAR
====================================================*/

.main-navbar{

background:#0056B3;

padding:0;

box-shadow:0 5px 18px rgba(0,0,0,.08);

z-index:999;

}

.main-navbar .navbar-nav{

align-items:center;

}

.main-navbar .nav-item{

position:relative;

}

.main-navbar .nav-link{

color:#fff;

padding:18px 18px;

font-weight:600;

font-size:15px;

transition:.35s;

position:relative;

}

.main-navbar .nav-link:hover{

color:#FFC107;

}

/* Animated Underline */

.main-navbar .nav-link::after{

content:'';

position:absolute;

left:50%;

bottom:10px;

width:0;

height:3px;

background:#FFC107;

transition:.35s;

transform:translateX(-50%);

border-radius:20px;

}

.main-navbar .nav-link:hover::after,

.main-navbar .nav-link.active::after{

width:70%;

}

/* Active */

.main-navbar .nav-link.active{

color:#FFC107;

}

/*====================================================
DROPDOWN
====================================================*/

.dropdown-menu{

border:none;

border-radius:12px;

padding:10px 0;

box-shadow:0 12px 35px rgba(0,0,0,.15);

margin-top:0;

}

.dropdown-item{

padding:10px 20px;

font-weight:500;

transition:.3s;

}

.dropdown-item:hover{

background:#0056B3;

color:#fff;

padding-left:28px;

}

/* Desktop Hover */

@media(min-width:992px){

.navbar .dropdown:hover>.dropdown-menu{

display:block;

animation:dropdownFade .3s ease;

}

}

@keyframes dropdownFade{

from{

opacity:0;

transform:translateY(10px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*====================================================
STICKY NAVBAR
====================================================*/

.sticky-top{

top:0;

z-index:999;

}

/*====================================================
MOBILE MENU
====================================================*/

.navbar-toggler{

border:none;

padding:8px 12px;

}

.navbar-toggler:focus{

box-shadow:none;

}

.navbar-toggler-icon{

filter:brightness(0) invert(1);

}

@media(max-width:991px){

.main-navbar{

padding:8px 0;

}

.main-navbar .navbar-collapse{

background:#0056B3;

padding:15px;

border-radius:12px;

margin-top:10px;

}

.main-navbar .nav-link{

padding:12px;

border-bottom:1px solid rgba(255,255,255,.08);

}

.dropdown-menu{

box-shadow:none;

background:#004A99;

}

.dropdown-item{

color:#fff;

}

.dropdown-item:hover{

background:#003366;

}

}

/*====================================================
PAGE BANNER
====================================================*/

.page-banner{

background:linear-gradient(rgba(0,86,179,.85),rgba(0,51,102,.85)),
url('../images/banner.jpg') center center/cover;

padding:80px 0;

color:#fff;

text-align:center;

}

.page-banner h1{

font-size:42px;

color:#fff;

font-weight:700;

margin-bottom:10px;

}

.page-banner p{

color:#fff;

font-size:16px;

margin:0;

}

/*====================================================
BREADCRUMB STYLE
====================================================*/

.page-banner a{

color:#FFC107;

text-decoration:none;

}

.page-banner a:hover{

text-decoration:underline;

}

/*====================================================
SOCIAL ICONS
====================================================*/

.social-icons a{

width:40px;

height:40px;

display:inline-flex;

justify-content:center;

align-items:center;

background:#0056B3;

color:#fff;

border-radius:50%;

margin-right:8px;

transition:.35s;

}

.social-icons a:hover{

background:#FFC107;

color:#000;

transform:translateY(-3px);

}

/*====================================================
SHADOW UTILITIES
====================================================*/

.shadow-soft{

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.shadow-hover{

transition:.35s;

}

.shadow-hover:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/*====================================================
HERO SECTION
====================================================*/

.hero-section{
    position:relative;
    min-height:600px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(rgba(0,86,179,.82),rgba(0,51,102,.88)),
               url('../images/hero.jpg') center center/cover no-repeat;
}

.hero-content{
    color:#fff;
    z-index:2;
}

.hero-content h5{
    color:#FFC107;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:58px;
    color:#fff;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.hero-content p{
    color:#f1f1f1;
    font-size:18px;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons .btn{
    margin-right:12px;
    margin-bottom:10px;
}

/*====================================================
QUICK SERVICES
====================================================*/

.quick-services{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#EAF3FF;
    color:#0056B3;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:36px;
    margin-bottom:25px;
}

.service-card h4{
    font-size:22px;
    margin-bottom:15px;
}

.service-card p{
    font-size:15px;
    color:#666;
}

/*====================================================
ABOUT HOME
====================================================*/

.about-home img{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.about-home ul{
    list-style:none;
    padding:0;
}

.about-home ul li{
    padding:10px 0;
    font-size:17px;
}

.about-home ul li i{
    color:#198754;
    margin-right:10px;
}

/*====================================================
CHAIRMAN HOME
====================================================*/

.chairman-box{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.chairman-box img{
    width:220px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.chairman-box h3{
    color:#003366;
}

.chairman-box blockquote{
    font-size:18px;
    color:#666;
    font-style:italic;
    border-left:4px solid #FFC107;
    padding-left:20px;
}

/*====================================================
STATISTICS
====================================================*/

.statistics{
    background:linear-gradient(135deg,#0056B3,#003366);
    color:#fff;
}

.statistics .counter-box{
    text-align:center;
    padding:30px;
}

.statistics .counter-box h2{
    color:#FFC107;
    font-size:50px;
    margin-bottom:10px;
}

.statistics .counter-box p{
    color:#fff;
    margin:0;
    font-size:18px;
}

/*====================================================
LATEST NEWS
====================================================*/

.news-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.news-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.news-image{
    height:220px;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.news-box:hover img{
    transform:scale(1.08);
}

.news-content{
    padding:25px;
}

.news-date{
    color:#0056B3;
    font-weight:600;
    font-size:14px;
}

/*====================================================
NOTICE TICKER
====================================================*/

.notice-bar{
    background:#FFC107;
    padding:12px 0;
    overflow:hidden;
}

.notice-bar strong{
    color:#003366;
}

.notice-bar marquee{
    color:#003366;
    font-weight:600;
}

/*====================================================
CALL TO ACTION
====================================================*/

.cta-section{
    background:linear-gradient(rgba(0,86,179,.9),rgba(0,51,102,.9)),
               url('../images/cta.jpg') center center/cover;
    color:#fff;
    text-align:center;
}

.cta-section h2{
    color:#fff;
    font-size:42px;
}

.cta-section p{
    color:#f1f1f1;
    font-size:18px;
}

/*====================================================
PARTNERS / LOGOS
====================================================*/

.partner-logo{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:center;
    transition:.35s;
}

.partner-logo:hover{
    transform:translateY(-5px);
}

.partner-logo img{
    max-height:70px;
}

/*====================================================
SCROLL TO TOP
====================================================*/

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#0056B3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:999;
    transition:.35s;
}

.scroll-top:hover{
    background:#FFC107;
    color:#000;
    transform:translateY(-5px);
}

/*====================================================
FLOATING WHATSAPP
====================================================*/

.whatsapp{
    position:fixed;
    left:20px;
    bottom:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    transition:.35s;
}

.whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/*====================================================
HOME PAGE RESPONSIVE
====================================================*/

@media(max-width:991px){

.hero-section{
    min-height:500px;
    text-align:center;
}

.hero-content h1{
    font-size:38px;
}

.quick-services{
    margin-top:40px;
}

.statistics .counter-box{
    margin-bottom:30px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:16px;
}

.section-title{
    font-size:30px;
}

.service-card{
    padding:25px;
}

}

/*====================================================
PAGE CONTENT
====================================================*/

.page-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/*====================================================
ABOUT PAGE
====================================================*/

.about-image{
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    transition:.4s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-info{
    padding-left:30px;
}

.about-info ul{
    list-style:none;
    padding:0;
}

.about-info li{
    padding:10px 0;
    font-size:17px;
}

.about-info li i{
    color:#198754;
    margin-right:10px;
}

/*====================================================
CHAIRMAN PAGE
====================================================*/

.chairman-card{

background:#fff;

border-radius:20px;

padding:40px;

box-shadow:var(--shadow);

}

.chairman-photo{

width:260px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.signature{

font-family:cursive;

font-size:28px;

color:#0056B3;

}

/*====================================================
DIRECTORS
====================================================*/

.director-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.director-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.director-img{

height:320px;

width:100%;

object-fit:cover;

}

.director-body{

padding:25px;

text-align:center;

}

.designation{

display:inline-block;

background:#0056B3;

color:#fff;

padding:7px 18px;

border-radius:30px;

font-size:14px;

margin-bottom:15px;

}

/*====================================================
STAFF
====================================================*/

.staff-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.staff-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.staff-photo{

height:280px;

width:100%;

object-fit:cover;

}

.staff-body{

padding:25px;

text-align:center;

}

/*====================================================
SERVICE PAGE
====================================================*/

.service-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

height:100%;

}

.service-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.service-icon{

width:90px;

height:90px;

border-radius:50%;

background:#EAF3FF;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:38px;

color:#0056B3;

margin-bottom:25px;

}

/*====================================================
LOAN & DEPOSIT
====================================================*/

.loan-card,
.deposit-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.loan-card:hover,
.deposit-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.loan-icon,
.deposit-icon{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:25px;

font-size:36px;

color:#fff;

}

.loan-icon{

background:#0056B3;

}

.deposit-icon{

background:#198754;

}

/*====================================================
PROCESS
====================================================*/

.process-box{

text-align:center;

padding:20px;

}

.process-number{

width:65px;

height:65px;

border-radius:50%;

background:#0056B3;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

font-size:24px;

font-weight:700;

margin-bottom:15px;

}

/*====================================================
DOWNLOADS
====================================================*/

.download-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

height:100%;

transition:.35s;

}

.download-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.pdf-icon{

width:90px;

height:90px;

background:#DC3545;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:42px;

color:#fff;

margin-bottom:20px;

}

/*====================================================
NEWS
====================================================*/

.news-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.news-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.news-card h4{

color:#003366;

}

/*====================================================
GALLERY
====================================================*/

.gallery-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.gallery-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.gallery-img{

width:100%;

height:250px;

object-fit:cover;

transition:.4s;

}

.gallery-card:hover .gallery-img{

transform:scale(1.08);

}

.gallery-title{

padding:20px;

font-weight:600;

text-align:center;

}

/*====================================================
CONTACT
====================================================*/

.contact-box{

display:flex;

margin-bottom:30px;

}

.contact-box i{

width:60px;

height:60px;

background:#0056B3;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-right:20px;

font-size:22px;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

/*====================================================
FAQ
====================================================*/

.accordion-item{

border:none;

margin-bottom:15px;

border-radius:15px!important;

overflow:hidden;

box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.accordion-button{

font-weight:600;

padding:18px;

}

.accordion-button:not(.collapsed){

background:#0056B3;

color:#fff;

}

.accordion-button:focus{

box-shadow:none;

}

/*====================================================
TABLE RESPONSIVE
====================================================*/

.table-responsive{

border-radius:15px;

overflow:hidden;

box-shadow:var(--shadow);

}

/*====================================================
SEARCH BOX
====================================================*/

.search-box{

max-width:500px;

margin:auto;

margin-bottom:40px;

}

/*====================================================
EMPTY STATE
====================================================*/

.no-record{

padding:50px;

text-align:center;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

}

.no-record i{

font-size:70px;

color:#ccc;

margin-bottom:20px;

}

/*====================================================
FOOTER
====================================================*/

.footer{

background:#002B5C;

color:#fff;

padding:70px 0 25px;

position:relative;

overflow:hidden;

}

.footer::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#FFC107,#0056B3,#198754);

}

.footer h4,
.footer h5{

color:#fff;

font-weight:700;

margin-bottom:20px;

}

.footer p{

color:#d6d6d6;

line-height:28px;

font-size:15px;

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#d6d6d6;

transition:.35s;

display:inline-block;

}

.footer-links a:hover{

color:#FFC107;

padding-left:8px;

}

.footer hr{

border-color:rgba(255,255,255,.15);

margin:35px 0;

}

.footer-bottom{

font-size:15px;

color:#ddd;

}

.footer-bottom strong{

color:#FFC107;

}

/*====================================================
SOCIAL ICONS
====================================================*/

.social-icons{

margin-top:20px;

}

.social-icons a{

width:45px;

height:45px;

display:inline-flex;

align-items:center;

justify-content:center;

background:#0056B3;

color:#fff;

border-radius:50%;

margin-right:8px;

transition:.35s;

font-size:18px;

}

.social-icons a:hover{

background:#FFC107;

color:#000;

transform:translateY(-5px);

}

/*====================================================
VISITOR COUNTER
====================================================*/

.visitor-box{

display:inline-block;

background:#ffffff15;

padding:10px 18px;

border-radius:30px;

font-weight:600;

margin-top:15px;

color:#fff;

}

/*====================================================
SCROLL TO TOP
====================================================*/

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

background:#0056B3;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.2);

transition:.35s;

}

.scroll-top:hover{

background:#FFC107;

color:#000;

transform:translateY(-5px);

}

/*====================================================
WHATSAPP BUTTON
====================================================*/

.whatsapp-btn{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:30px;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.2);

transition:.35s;

}

.whatsapp-btn:hover{

transform:scale(1.08);

color:#fff;

}

/*====================================================
PRELOADER
====================================================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

}

.loader{

width:60px;

height:60px;

border:6px solid #ddd;

border-top:6px solid #0056B3;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*====================================================
HOVER EFFECTS
====================================================*/

.zoom-hover{

overflow:hidden;

}

.zoom-hover img{

transition:.4s;

}

.zoom-hover:hover img{

transform:scale(1.08);

}

.shadow-hover{

transition:.35s;

}

.shadow-hover:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

/*====================================================
GRADIENT BACKGROUND
====================================================*/

.bg-gradient{

background:linear-gradient(135deg,#0056B3,#003366);

color:#fff;

}

/*====================================================
BREADCRUMB
====================================================*/

.breadcrumb{

background:none;

padding:0;

margin:0;

justify-content:center;

}

.breadcrumb-item{

color:#fff;

}

.breadcrumb-item a{

color:#FFC107;

}

.breadcrumb-item+.breadcrumb-item::before{

color:#fff;

}

/*====================================================
IMAGE OVERLAY
====================================================*/

.image-overlay{

position:relative;

overflow:hidden;

border-radius:20px;

}

.image-overlay::before{

content:"";

position:absolute;

width:100%;

height:100%;

background:rgba(0,0,0,.25);

opacity:0;

transition:.35s;

}

.image-overlay:hover::before{

opacity:1;

}

/*====================================================
COMMON ICON BOX
====================================================*/

.icon-box{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#EAF3FF;

color:#0056B3;

font-size:34px;

margin:auto;

margin-bottom:20px;

}

/*====================================================
PRINT
====================================================*/

@media print{

.navbar,
.footer,
.whatsapp-btn,
.scroll-top{

display:none;

}

body{

background:#fff;

}

}

/*====================================================
SMOOTH ANIMATION
====================================================*/

.fade-in{

animation:fadeIn .8s;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

.slide-up{

animation:slideUp .8s;

}

@keyframes slideUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*====================================================
COMMON SPACING
====================================================*/

.pt-100{

padding-top:100px;

}

.pb-100{

padding-bottom:100px;

}

.mt-100{

margin-top:100px;

}

.mb-100{

margin-bottom:100px;

}