﻿@font-face {
    font-family: "Poppins";
    src: url(../font/Poppins-Regular.ttf);
}
html,
body {
    overflow-x: hidden;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    text-align: left;
}
p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    transition: 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0a1428;
    font-style: normal;
    margin-bottom: 5px;
    margin-top: 20px;
    line-height: 1.2;
    font-weight: 600;
    -webkit-transition: .5s;
    transition: .5s;
}
h1 {
    font-size: 28px;
}

h2 {
    font-size: 25px;

}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    color: #012549;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    -webkit-transition: .5s;
    transition: .5s;
}

ul, ol {
    margin: 0px;
    padding: 0px;
}

ul {
    list-style: none;
}

a,
i,
ol,
li,
ul {
    font-style: normal;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}



/*==============================================
 Header section
==============================================*/
.top-bar-area {
  background: #00194c;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.top-bar-area:before {
  position: absolute;
  content: "";
  width: 53%;
  height: 100%;
  left: -11px;
  top: 0;
  background: #024d2e;
  z-index: -1;
  transform: skew(23deg);
}
.header-info ul, .top-bar-social-icon ul {
    margin-bottom: 0 !important;
}
.header-info ul li {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-right: 14px;
}
.header-info ul li i {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.top-bar-social-icon {
  text-align: right;
}
.top-bar-social-icon ul li {
  display: inline-block;
  color: #fff;
}
.top-bar-social-icon ul li.time-line {
  margin-right: 32px;
}
.top-bar-social-icon ul li.time-line i {
  margin-right: 10px;
  display: inline-block;
}
.top-bar-social-icon ul li i {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-left: 16px;
  transition: 0.5s;
}

.top-bar-social-icon ul li i:hover{
   color:#024d2e;
}
.navbar {
    background: #fff;
    padding: 7px 0;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.2);
}
.logo {
    height: 50px;
    margin-right: 10px;
}
.navbar-nav .nav-link {
    color: #000048;
    font-weight: 500;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #024d2e;
}
.navbar-nav .nav-link.active {
    font-weight: 700;
}
.dropdown-item.active, .dropdown-item:active {
    background: #024d2e;
    color: #fff !important;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    text-align: left;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #024d2e;
    border-radius: 3px 3px 0 0;
}
.navbar-nav .dropdown-menu .dropdown-item {
    color: #000048;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #fff !important;
    background:#024d2e;
}
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}
.navbar .quote-button {
    display: flex;
    align-items: center;
}
.navbar .quote-button a {
  padding: 5px 15px;
  color: #fff;
  background: #024d2e;
  border: 1px solid #024d2e;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: .5s;
  text-transform: capitalize;
  font-weight: 600;
  text-decoration: none;
}
.navbar .quote-button a:hover{
    color:#024d2e;
    background:#fff;
}
.menu-icon {
    color: #024d2e;
    font-size: 24px;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 1000;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu .close-menu {
    font-size: 26px;
    font-weight: 650;
    cursor: pointer;
    float: right;
}
.mobile-menu .nav-logo {
    position: relative;
    padding: 10px 0;
    text-align: left;
    margin-top: 25px;
}
.mobile-menu .nav-logo img {
    max-width: 150px;
}
.mobile-menu .mobile-search {
    padding: 0 0 15px 0;
}
.mobile-menu ul {
    padding-left: 0;
}
.mobile-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.mobile-menu .menu-item a,
.mobile-menu .submenu li a{
    text-decoration: none;
    color: #212529;
}
.mobile-menu .menu-item a:hover,
.mobile-menu .submenu li a:hover {
    color: #024D2E;
}
.mobile-menu .submenu {
    display: none;
    padding-left: 10px;
}
.mobile-menu .submenu li {
    position: relative;
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .submenu li:first-child {
    border-top: none;
}
.mobile-menu .submenu li a {
    font-weight: 600;
}
.mobile-menu .social-icons {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-icons li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}
.mobile-menu .social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #00194c;
    transition: all 500ms ease;
    border: 1px solid #efefef;
    border-radius: 0;
    text-decoration: none;
}
.mobile-menu .social-icons li a:hover {
    background: #560ce3;
    color: #fff;
}
@media (max-width: 991px) {
    .navbar .quote-button {
      display: none;
  }
}
@media (min-width: 992px) {
    .menu-icon {
      display: none;
  }
}
@media (max-width: 991px) {
    .menu-icon {
      position: absolute;
      right: 20px;
      top: 25px;
  }
}
@media (max-width: 768px) {
  .top-bar-area {
      display: none;
  }
}



/*==============================================
 Hero Section
==============================================*/
.hero {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 25, 76, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    background-color: #024D2E;
    border: 2px solid #024D2E;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background-color: #fff;
    color: #024D2E;
}
.banner-shape {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.banner-shape img {
    height: 400px
}

@media (max-width: 768px) {
    .hero, .banner-shape img {
        height: 430px;
    }
}


/*==============================================
 Home Page Intro
==============================================*/
.intro-section {
    padding: 50px 0;
    background-color: #fff;
}

.intro-heading {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00194C;
}

.intro-content {
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.intro-section .btn-primary {
    background-color: #05613a;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.intro-section .btn-primary:hover {
    background-color: #044d2a;
}


/*==============================================
 Home Page Services
==============================================*/
.services-section {
    padding: 40px 0;
    background-color: #00194C;
    color: #fff;
    text-align: center;
}
.services-section h2 {
    color: #fff;
    font-size: 1.8rem;
}
.service-card {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.service-icon {
    font-size: 2.5rem;
    color: #05613a;
    margin-bottom: 15px;
}
.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.service-card .learn-more {
    color: #05613a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.service-card .learn-more:hover {
    color: #044d2a;
}



/*==============================================
 Home Why Us
==============================================*/
.why-choose-us {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.why-choose-us h2 {
    color: #00194C;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-us p.intro-text {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: #024d2e;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    color: #00194C;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}



/*===========================================
   Testimonials
=============================================*/
.testimonial-area {
  position: relative;
  padding: 40px 0;
}
.testimonial-area h2 {
  font-size: 1.8rem;
  color: #00194C;
}
.testimonial-item {
  margin: 5px;
  padding: 26px 28px;
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: rgba(5, 27, 44, 0.12) 0px 1px 8px -1px, rgba(5, 27, 44, 0.08) 0px 3px 4px -1px;
  border-radius: 5px;
}
.testimonial-rating span {
  font-size: 15px;
  letter-spacing: .3em;
  color: #f7b401;
  display: inline-block;
  margin-bottom: 15px;
}
.testimonial-dsc p {
  font-size: 16px;
  margin-bottom: 20px;
}
.testimonial-avater-thumb {
  position: relative;
  margin-right: 25px;
}
.testimonial-avater-thumb img {
  width: 60px;
  height: 60px;
  border: 1px dashed #024d2e;
  border-radius: 50%;
}
.testimonial-avater-icon {
  position: absolute;
  bottom: 0;
  right: 0;
}
.testimonial-avater-icon i {
  font-size: 8px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: #024d2e;
  border-radius: 50%;
}
.testimonial-avater-title {
  font-size: 16px;
}
.testimonial-avater-designation {
  font-size: 12px;
  color: #024d2e;
}



/*==============================================
 Home Blog
==============================================*/
.home-blog-area {
  position: relative;
  padding: 40px 0;
}
.home-blog-area .blog-card {
    margin: 10px;
}


/*===========================================
   Clients Area
=============================================*/
.clients-area {
    position: relative;
    background: #fff;
    padding: 10px 0 40px;
}
.client-logo img {
  max-height: 80px;
  padding: 0 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.client-logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}
@media (max-width: 768px) {
    .client-logo img {
        max-height: 55px;
    }
}



/*===========================================
   CTA Area
=============================================*/
.cta-section {
    background: linear-gradient(135deg, #05613A 0%, #089A5B 100%);
    padding: 70px 0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-section h2 {
    font-size: 2.0rem;
}
.cta-section .btn-light {
    background-color: #fff;
    color: #05613A;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}
.cta-section .btn-light:hover {
    background-color: #00194C;
    color: #fff;
}



/*==============================================
 About Page
==============================================*/
.about-section {
    padding: 30px 0 40px;
}
.about-section h2 {
    color: #00194C;
    font-weight: bold;
    margin-bottom: 5px;
}
.about-text {
    font-size: 16px;
    line-height: 1.6;
}
.mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.mission-vision .box {
    background: #05613a;
    color: #fff;
    padding: 20px;
    flex: 1;
    border-radius: 8px;
}
.mission-vision .box h3 {
    font-size: 20px;
    color: #fff;
}
.why-choose {
    margin-top: 40px;
}
.why-choose ul {
    list-style: none;
    padding: 0;
}
.why-choose li {
    margin-bottom: 10px;
    font-size: 16px;
}
.about-section .cta-section {
    background: linear-gradient(to right, #05613a, #034d2a);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}
.about-section .cta-section h2 {
    font-size: 1.8rem;
    color: #fff;
}
.about-section .cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
}
.about-section .cta-btn {
    background: #fff;
    color: #05613a;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.about-section .cta-btn:hover {
    background-color: #00194C;
    color: #fff;
}
@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
    .mission-vision .box {
        width: 100%;
    }
}




/*==============================================
 Service Page
==============================================*/
.service-page {
    padding: 40px 0;
}
.service-page .section-title {
    color: #00194c;
    font-weight: bold;
    margin-bottom: 20px;
}
.service-page .check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.service-page .check-list li::before {
    content: '\2714';
    color: #05613a;
    margin-right: 10px;
    font-weight: bold;
}
.service-page .cta-section {
    background: linear-gradient(to right, #05613a, #034d2a);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.service-page .cta-section h2 {
    font-size: 1.8rem;
    color: #fff;
}
.service-page .cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
}
.service-page .cta-btn {
    background: #fff;
    color: #05613a;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.service-page .cta-btn:hover {
    background-color: #00194C;
    color: #fff;
}

.service-page .sidebar {
    background: #00194C;
    padding: 20px;
    border-radius: 8px;
}
.service-page .sidebar h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}
.service-page .sidebar ul {
    list-style: none;
    padding: 0;
}
.service-page .sidebar a li {
    background: #fff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.service-page .sidebar a li:hover {
    color: #fff;
    background:#024d2e;
}



/*==============================================
 Contact Page
==============================================*/
.contact-area {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fa;
}
.contact-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-info {
    background: #00194C;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}
.contact-info h5 {
    color: #FFD700;
}
.contact-info h3, .contact-info h6 {
    color: #fff;
}
.contact-info i {
    font-size: 24px;
    background: #fff;
    color: #00194C;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.contact-area form {
    margin-top: 20px;
}
.contact-area input.form-control {
    height: 50px;
}
.contact-area .btn-submit {
    background-color: #05613a;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}
.contact-area .btn-submit:hover {
    background-color: #034f2b;
}
@media (max-width: 768px) {
    .contact-container {
        padding: 10px;
    }
}




/*==============================================
 Quote Page
==============================================*/
.quote-area {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fa;
}
.quote-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
}
.quote-area .form-control {
    height: 50px;
}
.quote-area textarea.form-control {
    height: 150px;
}
.quote-area .btn-quote {
    background-color: #05613a;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}
.quote-area .btn-quote:hover {
    background-color: #034f2b;
}
@media (max-width: 768px) {
    .quote-container {
        padding: 10px;
    }
}




/*==============================================
 Portfolio section
==============================================*/
.portfolio-area {
    position: relative;
    font-family: Arial, sans-serif;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.portfolio-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 25, 76, 0.8);
    color: #fff;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.portfolio-item:hover .portfolio-overlay {
    background: rgba(5, 97, 58, 0.9);
}
.portfolio-overlay a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}


/*=======================================
   Blog List
========================================*/
.blog-area {
  position: relative;
  padding: 40px 0;
}
.blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card .card-body {
  padding: 20px;
}
.blog-meta {
  font-size: 14px;
  color: #6c757d;
}
.blog-meta i {
  color: #024d2e;
  margin-right: 5px;
}
.blog-title {
  font-size: 17px;
  font-weight: 400 !important;
  margin-top: 10px;
  color: #000;
}
.blog-title a:hover {
  color: #024d2e;
}
.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active {
  background: #024d2e;
  color: white;
}
.pagination .page-item:hover {
  background: #024d2e;
  color: white;
}



/*==============================================
 Blog Post Page
==============================================*/
.post-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}
.post-container {
    max-width: 1200px;
}
.post-content {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}
.post-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0;
}
.post-meta-info i {
    color: #024d2e;
    font-size: 14px;
}
.post-title {
/*    font-size: 24px;*/
font-weight: bold;
margin-top: 10px;
}
.post-content ul, .post-content ol {
    padding-left: 20px;
}
.post-content ul li {
    list-style: disc;
}
.post-content a {
    color: #1979b5;
}
.post-content a:hover {
    color: #024d2e;
}
.sidebar {
    padding-left: 20px;
}
.sidebar .search-box {
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.sidebar .search-box form {
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .search-box input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}
.sidebar .search-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #024d2e;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
}
.latest-blog .post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.latest-blog .post img {
    width: 70px;
    height: 50px;
    margin-right: 10px;
}
.latest-blog .post-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}
.latest-blog .post-title a:hover {
    color: #024D2E;
    font-weight: 600;
}
.latest-blog .post-date {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}


/*==============================================
 Footer section
==============================================*/
.footer {
    position: relative;
    background-color: #00194C;
    color: #b0b7c3;
    padding: 50px 0;
}
.footer h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}
.footer a {
    color: #b0b7c3;
    text-decoration: none;
}
.footer a:hover {
    color: #05613a;
}
.footer .list-unstyled li {
    margin-bottom: 10px;
}
.footer .list-unstyled li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .subscribe-form {
    position: relative;
}
.footer .subscribe-input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    border: none;
    border-radius: 5px;
    background: #163060;
    color: #ffffff;
}
.footer .subscribe-input::placeholder {
    color: #b0b7c3;
}
.footer .subscribe-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #05613a;
    font-size: 18px;
    cursor: pointer;
}
.footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.footer .social-icons a:hover {
    background: #05613a;
}
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: linear-gradient(45deg, #05613a, #034d2b);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover {
    background: linear-gradient(45deg, #034d2b, #05613a);
}



/*=======================================
   Loader
========================================*/
.loader{
  display: none;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}
.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #024d2e;
  color: #024d2e;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}
.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}
.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}
.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}
@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
}
50%, 100% {
    top: 19px;
    height: 26px;
}
}

@-webkkeyframes sk-stretchdelay {
  0%, 40%, 100% { -webktransform: scaleY(0.4) }
  20% { -webktransform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
}20% {
 transform: scaleY(1.0);
 -webktransform: scaleY(1.0);
}
}