/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{box-sizing: border-box;}

body {
  padding: 0px;
  margin :0px;
  background: #fff;
  color: #444;
  font-family: "Trebuchet MS", sans-serif;
  position: relative;
  overflow-x: hidden;
}

a {
  color:#2C516E;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #246AB2;
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
/*.back-to-top {
  position: fixed;
  display: none;
  background: #1bb1dc;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}*/

/* Prelaoder */
/*#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .social-links .cnt{
  font-size: smaller;
  margin-right: 0px;
  color:#254457;
}

#topbar .social-links .cnt span{
  margin-left: 5px;
  font-weight: lighter;
  font-style:italic;
  font-size: 13px;
}

#topbar .social-links .divider{
  margin-left:12px;
}

#topbar .social-links .cnt:hover{
  color:#254457;
}

#topbar .social-links .cnt span:hover{
  color:#254457;
}

#topbar .social-links a {
  color:#254457;
  padding-left: 10px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color:#246AB2;
}

#topbar .social-links a:first-child {
  border-left: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #2C516E;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/*.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
/*}*/

/* newly added link */
.new-link::after {
  content: "NEW";
  background-color: #e74c3c;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 10px;
  vertical-align: middle;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
/* newly added link ends */

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding-left: 30px;
}

.main-nav a {
  display: block;
  position: relative;
  color:#2C516E;
  padding: 10px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color:#246AB2;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color:#2C516E;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color:#246AB2;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(32, 32, 32, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color:#246AB2;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color:#254457;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(64, 64, 64, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/intro-bg.png") center top no-repeat;
  background-size: cover;
  z-index: 1;
  }

@media (max-width: 767px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }
  #hero .container {
    height: 80vh !important;
  }
  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h2 {
  color: #2C516E;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#hero .intro-info h2 span {
  color: #246AB2;
}

@media (max-width: 767px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .intro-info .btn-get-started, #hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background:#246AB2;
  color: #fff;
}

#hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {
  background:#0C77F0;
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
#service-section {
  padding: 60px 0;
  min-height: 100vh;
}

.bg-white {
  background-color: #fff;
}

.site-heading h2 {
display: block;
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
color:#2C516E;
}

.site-heading h2 span {
color:#246AB2;
}

.site-heading h4 {
display: inline-block;
padding-bottom: 20px;
position: relative;
text-transform: capitalize;
z-index: 1;
}

.site-heading h4::before {
background: #246AB2 none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 50%;
margin-left: -25px;
position: absolute;
width: 50px;
}

.site-heading {
margin-bottom: 60px;
overflow: hidden;
margin-top: -5px;
}

.we-offer-area .owl-dot span {
background: #ffffff none repeat scroll 0 0;
border: 2px solid;
height: 15px;
margin: 0 5px;
width: 15px;
}

.we-offer-area .owl-dots span {
background: #246AB2 none repeat scroll 0 0;
border-color: #246AB2;
}

.we-offer-area .item {
background: #ffffff none repeat scroll 0 0;
border-left: 2px solid #246AB2;
-moz-box-shadow: 0 0 10px #cccccc;
-webkit-box-shadow: 0 0 10px #cccccc;
-o-box-shadow: 0 0 10px #cccccc;
box-shadow: 0 0 10px #cccccc;
overflow: hidden;
padding: 30px;
position: relative;
z-index: 1;
}

.we-offer-area.text-center .item {
background: #ffffff none repeat scroll 0 0;
border: medium none;
padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
background:#246AB2 none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
font-size: 40px;
height: 80px;
line-height: 80px;
position: relative;
text-align: center;
width: 80px;
z-index: 1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
border: 2px solid #246AB2;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 90px;
left: -5px;
position: absolute;
top: -5px;
width: 90px;
z-index: -1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
font-family: "Poppins",sans-serif;
font-size: 50px;
font-weight: 900;
opacity: 0.1;
position: absolute;
right: 30px;
top: 30px;
}

.we-offer-area .item i {
color: #246AB2;
display: inline-block;
font-size: 60px;
margin-bottom: 20px;
}

.we-offer-area .item h4 {
font-weight: 600;
/*text-transform: capitalize;*/
}

.we-offer-area .item p {
margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
background: #246AB2 none repeat scroll 0 0;
content: "";
height: 100%;
left: -100%;
position: absolute;
top: 0;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
width: 100%;
z-index: -1;
}

.we-offer-area .item:hover::after {
left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
background-color: #ffffff !important;
color:#246AB2 !important;
}

.we-offer-area.text-left .item i {
background: #246AB2 none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
display: inline-block;
font-size: 60px;
height: 100px;
line-height: 100px;
margin-bottom: 30px;
position: relative;
width: 100px;
z-index: 1;
text-align: center;
}

.we-offer-area.text-left .item i::after {
border: 2px solid #246AB2;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 120px;
left: -10px;
position: absolute;
top: -10px;
width: 120px;
}

/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/
.modern-features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.modern-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modern-features .number-badge {
  background: linear-gradient(to right, #005eff, #0d8aff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.modern-features .feature-text {
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.modern-features li:hover .feature-text {
  background-color: #f5f9ff;
  border: 2px solid #dce9ff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.modern-features .feature-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.modern-features .feature-text p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.btn-read-more.training-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #246AB2; /* Core brand button color */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(36, 106, 178, 0.4); /* Subtle glow */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-read-more.training-link:hover {
  background: #0C77F0; /* Hover color */
  box-shadow: 0 6px 16px rgba(12, 119, 240, 0.4);
  transform: translateY(-2px);
}

.btn-read-more.training-link i {
  font-size: 20px;
  color: #2C516E; /* Icon brand text color */
  transition: transform 0.3s ease;
}

.btn-read-more.training-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Why Us ? Section
--------------------------------------------------------------*/
#whyus-section {
  padding: 60px 0;
  min-height: 100vh;
}

.bg-customblue{
  background-color: #F5F8FD;
} 

#whyus-section .why-us-content{
  text-align: left;
  /*text-align: justify;*/
  text-justify: inter-word; 
}

.why-us-content ul {
  list-style: none;
  padding: 0;
}

.why-us-content ul li {
  padding: 3px 0 0 28px;
  position: relative;
}

.why-us-content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 18px;
  color: #246AB2;
}
@media (max-width: 991px) {
  #whyus-section .why-us-content {
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
#call-to-action {
  background: #254457;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background:#246AB2;
  border: 3px solid #246AB2;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  padding: 80px 0;
}

#features p{
  text-align: left;
  /*text-align: justify;*/
  text-justify: inter-word;
}

/*#features h4 {
  font-weight: 600;
  font-size: 24px;
}*/

#features .container .feature-item span{
  color: #246AB2;
  font-weight: bold;
  font-style: oblique;
  font-size: 25pt;
  overflow:hidden;
}

/*--------------------------------------------------------------
# Request Quote Section
--------------------------------------------------------------*/
#requestquote {
  padding: 15px;
  min-height: 10vh;
  background-color: #254457;
}

#requestquote p{
  margin-top:20px;
  font-size:20px;
}

#requestquote a{
  margin:15px;
  border: 3px solid white !important;
  transition: 0.5s !important;
}

#requestquote a:hover{
  border-color: #246AB2 !important;
  background-color: #246AB2;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

.testimonial-item .text-align{
  text-align: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .text-align{
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {
  #testimonials .testimonial-item h3, #testimonials .testimonial-item h4, #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .owl-nav, #testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #1bb1dc;
}

/*--------------------------------------------------------------
# Regural Updates Section
--------------------------------------------------------------*/
.post {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: auto;
  position: relative;
}

.post:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.post p {
  padding: 16px;
  margin: 0;
  background: #f7f9fc;
  font-size: 15.5px;
  color: #444;
  line-height: 1.8;
  font-weight: 800;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.post p a {
  color: #246AB2;
  font-weight: 500;
  text-decoration: none; /* ✅ No underline */
  display: inline-block;
  transition: color 0.3s ease;
}

.post p a:hover {
  color: #0C77F0;
  text-decoration: none; /* still no underline */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(36, 106, 178, 0.5);
  color: white;
  width: 100%;
  height: 200px;
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post:hover .overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer-top{
  padding: 60px;
  width:100%;
  height: auto;
  background-color:#254457;
  font-size: 14px;
}

#footer-top h6{
  font-family: "Montserrat", sans-serif;
  color:#fff; 
  font-weight: bold; 
}

#footer-top hr{
  background-color: #fff;
}

#footer-top ul{
  padding-left: 15px;
  list-style-type: circle;
  color: #fff;
  font-weight: lighter;
}

#footer-top li a{
  color:#fff;
  font-size: 13px;
  
}

#footer-top p{
  color: #fff;
  font-weight: lighter;
}

#footer-top a{
  color:#fff;
  margin-right: 10px;
  display: inline-block;
}

#footer-top a:hover{
  color:#246AB2;
}

#footer-top .btn-subscribe{
  background-color: #246AB2;
  color:#fff;
}

#footer-top .btn-subscribe:hover{
  background-color: #0C77F0;
  color:#fff;
}

#footer-bottom{
  width: 100%;
  height: auto;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  color: #535074;
  line-height: 13px;
}

#footer-bottom .copyright{
  text-align: center;
  color: #535074;
  font-size: 12px;
  margin-bottom:0px !important;
}

#footer-bottom .credits{
  text-align: center;
  font-size: 12px;
  color: #535074;
}

#footer-bottom .credits a{
  color: #535074;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Modal Section  // To display the contact details
--------------------------------------------------------------*/
.modal-header{
  background-color:#254457 !important; 
  border-bottom:none !important;
}

.modal-body{
  background-color:#fff; 
  border-top:none !important; 
  padding:0 !important; 
  margin:0 !important;
}

.fa-phone-cus{
  font-size:20px; 
  border:1pt solid none; 
  border-radius:80px; 
  padding: 7px 10px; 
  color:white; 
  background-color:#254457;
}

.fa-whatsapp{
  font-size:20px; 
  border:1pt solid none; 
  border-radius:80px; 
  padding: 7px 10px; 
  color:white; 
  background-color:#254457;
}

.modal-footer{
  background-color:#fff; 
  border-bottom:none !important; 
  font-size:16px;
  text-align:center !important;
}

/*-------------------------------------------------------------
#POP UP (Modal)  //Redirect to training page via link
-------------------------------------------------------------*/
/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  inset: 0; /* shorthand for top, right, bottom, left = 0 */
  overflow: hidden; /* Prevent internal scroll */
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 99999 !important;
  animation: fadeIn 0.4s ease;
}

/* Popup Content */
.popup-content {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  animation: scaleUp 0.35s ease;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Text */
.popup-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Buttons */
.popup-content button {
  padding: 12px 18px;
  margin: 8px;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

#continue-btn {
  background: linear-gradient(135deg, #00c853, #64dd17);
  color: white;
}

#continue-btn:hover {
  background: linear-gradient(135deg, #00b347, #53c917);
}

#close-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}

#close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile-friendly adjustments */
@media screen and (max-width: 480px) {
  .popup-content {
    padding: 20px 16px;
  }

  .popup-content button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* Install button for PWA */
#installBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #246bb3;
  border: none;
  border-radius: 28px;
  padding: 12px 18px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  overflow: hidden;
  white-space: nowrap;
}

#installBtn .btn-icon {
  display: none;
  font-size: 20px;
}

#installBtn.shrink {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  font-size: 24px;
}

#installBtn.shrink .btn-text {
  display: none;
}

#installBtn.shrink .btn-icon {
  display: inline;
  line-height: 56px;
}





