/* Universal Font Styling */
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: "Gotham", sans-serif;
}

.btn-up {
  position: sticky;
  bottom: 0;
  margin-right: 20px;
  
  display: flex; /* Enables flexbox layout */
  justify-content: flex-end; /* Aligns content to the right */
}

.btn-up button {
  color: #ffff;
  background-color: #44bead;
  cursor: pointer;
  margin-bottom: 5px;
  border-radius: 50px;
  height: 50px;
  width:50px;
  border: #265F6C;
  transition: background-color 0.3s ease;
}
.btn-up button:hover {
  color: #ffff;
  background-color: #265F6C;

}



.drop-in {
  animation: drop-in 1s ease 200ms backwards;
 }
 
 .drop-in-2 {
  animation: drop-in 1200ms ease 500ms backwards;
 }
 
 @keyframes drop-in {
  from {
   opacity: 0;
   transform: translateY(-100px);
  }
  to {
   opacity: 1;
   transform: translate(0px);
  }
 }

/* Navbar Styles */
.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 1px;
  left: 0;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

/* Hamburger Icon Animation */
.navbar-toggler .top-bar {
  margin-top: 0;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  margin-top: 0;
  transform: rotate(-135deg);
}

/* Collapsed Navbar */
.navbar-toggler.collapsed .top-bar {
  margin-top: -20px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 20px;
  transform: rotate(0deg);
}

/* Logo Styling */
.navbar-brand img {
  width: 220px; /* Logo size */
  position: relative;
  z-index: 1; /* Ensure the logo appears on top */
}
.navbar{
  height: 100px;
}
.navbar-brand {
  margin-right: 0;
  padding: 0 1em;
  position: relative;
  top: 5px; /* Adjust vertical alignment */
}

/* Navbar Links */
.navbar .navbar-nav .nav-link {
  color: #1a1250;
  font-size: .8em;
  padding: 0.5em 1em;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s ease;
  transition: font-weight 0.3s ease;
}

.navbar .navbar-nav .nav-link.active {
  color: #1a1250;
  font-weight: 600;
  font-style: normal;
}

.navbar .navbar-nav .nav-link:hover {
  color: #1a1250;
  font-weight: 600;
}
.drop-nav{
  background-color: #ffffff;
}
.drop-nav-item{
  color: #1a1250;
  font-size: .8em;
  transition: font-weight 0.3s ease;
}
.drop-nav-item:hover {
  color: #1a1250;
  font-size: .8em;
  font-weight: 600;
}
.nav-number{
  color: #1a1250;
  font-size: .8em;
  font-weight: 600;
  text-decoration: none;
  
}
.home-banner {
  position: relative;
}
.title-big-banner{
  font-size: 2.8em;
  color: #265F6C;
  font-weight: bold;
  line-height: 42px;
}
.star-home-banner{
  top: 55%;

}
.star-width{
  width: 200px;
}
.banner-text {
  z-index: 10; /* Ensures the text is above the image */
  top: 25%;

}

.home-banner img {
  display: block; /* Removes default inline spacing of images */
  width: 100%; /* Ensures the image is responsive */
  height: auto; /* Maintains the aspect ratio */
}


.home-banner img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Removes extra space below images */
  object-fit: cover; /* Ensures the image covers the area without distortion */
}

.heading-text-bold-blue{
  font-weight: bold;
  color: #265f6c;
  font-size: 2em;
  line-height: 40px;
 }

 .big-btn {
  background-color: #265f6c;
  font-size: 20px;
  font-weight: 500;
  color: #fff; /* Text color for better contrast */
  border: none; /* Remove default border */
  border-radius: 5px; /* Optional: Rounded corners */
  width: 100%; /* Set a fixed width */
  padding: 10px 15px; /* Add padding for better appearance */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease; /* Smooth transitions */
}

.big-btn:hover {
  background-color: #44bead; /* Change background color on hover */
  font-weight: bold; /* Increase font weight on hover */
}


.btn-blue {
  width: 150px; /* Fixed width */
  height: 30px; /* Fixed height */
  background-color: #265f6c; /* Initial background color */
  font-size: 13px; /* Font size */
  font-weight: 500; /* Font weight */
  color: #fff; /* Text color for better contrast */
  border: none; /* Removes default border */
  border-radius: 5px; /* Optional: Rounded corners */
  display: flex; /* Align items within the button */
  justify-content: center; /* Center align text horizontally */
  align-items: center; /* Center align text vertically */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease, font-weight 0.3s ease; /* Smooth hover transition */
}

.btn-blue:hover {
  background-color: #44bead; /* Hover background color */
  font-weight: bold; /* Emphasize font weight on hover */
}

.btn-blue-1 {
  background-color: #265f6c; /* Initial background color */
  color: #fff; /* Text color for contrast */
  font-size: 15px; /* Font size */
  font-weight: 500; /* Font weight */
  padding: 10px 20px; /* Padding for better appearance */
  border: none; /* Removes default border */
  border-radius: 5px; /* Optional: Rounded corners */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease, font-weight 0.3s ease; /* Smooth hover effect */
}

.btn-blue-1:hover {
  background-color: #44bead; /* Hover background color */
  font-weight: bold; /* Change font weight on hover */
}

 .heading-text-bold-wh{
  font-weight: 500;
  color: #daefea;
  font-size: 1.6em;
  line-height: 40px;
 }
.heading-text-bold-wh-2{
  font-weight: 500;
  color: #ffffff;
  font-size: 2.3em;
  line-height: 40px;
}
 .heading-text-bold-md{
  font-weight: 500;
  color: #436b63;
  font-size: 2em;
  line-height: 40px;
 }

 .para-box{
  color: #daefea;
 }

 .box-1{
  width: 57%;
 }

 .box-2{
  width: 43%;

 }
 .p-just{
  text-align: justify;
}
 .para-box-2{
  font-size: 1rem;
  color: #585a5b;
 }
 .para-box-3{
  font-size: 1.1rem;
  color: #585a5b;
 }
 .para-box-3-wh{
  font-size: 1.1rem;
  color: #ffffff;
 }
 .para-bold{
  font-size: 1.1rem;
  font-weight: 500;
  color: #585a5b;
 }
 .para{
  font-size: 1rem;
  color: #585a5b;
 }
 .para-2{
  font-size: 1.25rem;
  color: #436b63;
 }
 /* .para-3{
  font-size: 1.2rem;
  color: #436b63;
 } */
 .para-2-bold{
  font-size: 1.25rem;
  color: #436b63;
  font-weight:500;
 }

 .para-3-bold{
  font-size: 1.4rem;
  color: #000000;
 
 }
 .text-height{
  line-height: 20px;
 }

.card {
  border-radius: 0; /* Sharp corners */
  overflow: hidden; /* Ensure no content overflows */
  display: flex; /* Use flexbox to split sections */
  flex-direction: column; /* Arrange sections vertically */
  height: 100%; /* Ensure card occupies full height if needed */
}

.card-header {
  flex: 1; /* Equal height for the header */
  align-items: center;
  font-size: 1.25rem;
  background-color: #265f6c; /* Optional background for distinction */
  border-bottom: 1px solid #ddd; /* Optional: Add a divider */
}
.card-header-2 {

  align-items: center;
  font-size: 1.25rem;
  background-color: #265f6c; /* Optional background for distinction */
  border-bottom: 1px solid #ddd; /* Optional: Add a divider */
}
.padding-home-card{
 
  padding-left: 100px;
}
.services-card-1{
  background-color: #265f6c; /* Optional background for distinction */
}
.services-card-2{
  background-color: #E8F5F1; /* Optional background for distinction */
}

.card-body {
  flex: 1; /* Equal height for the body */
  display: flex; /* Center content */
  flex-direction: column; /* Keep the text aligned properly */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center;
}
.service-section{
  background-color:#e8f5f1 ;

}
.title-text-bold{
  font-size: 2.5em;
  color: #50857b;
  font-weight: bold;
}
.title-big{
  font-size: 2.8em;
  color: #265F6C;
  font-weight: bold;
  line-height: 42px;
}
.padding-title-big{
  padding-top: 20px;
  padding-bottom: 20px;
}
.title-big-md{
  font-size: 2.1em;
  color: #265F6C;
  font-weight:500;
  font-family: Gotham
;
}
.title-2{
  font-size: 2.1em;
  font-family: Gotham
;
}

.title-3{
  font-family: Gotham;
  font-size: 1.2em;
  line-height: 35px;

}
.para-3{
  font-family: Gotham;
  font-size: 1.1em;
  line-height: 26px;
  font-weight: 300;
}

.text-big{
  font-size: 1.1em;
  font-family: Gotham;
}

.img-card-1{
  background: none;
}

.services-card-title{
  font-size: 1.6em;
  color: #50857b;
  font-weight: bold;
}
.services-card-text{
  font-size: .8em;
  color: #585a5b;
}
.blue-text{
  font-size: .8em;
  color: #50857b;
  line-height: 16px;
}
.blue-text-b{
  font-weight: 500;
}

.gray-text{
  font-size: .9em;
  color: #595A5C;
  line-height: 18px;
}
.gray-text-b{
  font-size: 1em;
  font-weight: 500;
}
.services-card-button{
  font-size: .7em;
  color: hsl(0, 0%, 100%);
  background-color: #44bead;
  transition: background-color 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease; /* Smooth transitions */

}
.services-card-button:hover{
  font-weight: bold;
  color: hsl(0, 0%, 100%);
  background-color: #015c50;
}
.services-card-body{
  flex: none;
  top: 0;
}
.card-img-icons{
  position: absolute;
  left: 5px;
  top: 170px;
  width: 110px;
  transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
}
.card-img-icons:hover {
  transform: rotatey(180deg); /* Rotate the image on hover */
}

.card-img-icons-bg {
  position: absolute;
  left: 5px;
  top: 170px;
  width: 110px;
}

.card-img-icons2{
  position: relative;
  width: 110px;
  transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
}
.card-img-icons2:hover {
  transform: rotatey(180deg); /* Rotate the image on hover */
}

.card-img-icons2-bg {
  position: absolute;
  width: 110px;
}
.tag-img {
  width: 230px; /* Logo size */
  position: relative;
 top: -55px;
 z-index: 1px;
}



/* Footer Styling */
.footer{
  background-color: #52a5b8;
  z-index: 20;

}

.footer-brand{
  width: 200px; /* Logo size */
  position: relative;
  z-index: 1; /* Ensure the logo appears on top */
}

.footer-text {
  color: #ffffff;
  font-size: 0.9em;
}

.footer-links {
  color: #ffffff;
  text-decoration: none;
}

.footer-links:hover {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
 
.footer-links.active {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.cross {
  position: relative;
  display: inline-block;
}
.cross::before, .cross::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}
.cross::before {
  border-bottom: 2px solid red;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
.cross::after {
  border-bottom: 2px solid red;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
}

/* Opacity #2 */
.hover12 figure {
	background: #265F6C;
  border-radius: 30px 30px 30px 80px;
}
.hover12 figure img {
	opacity: .5;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  border-radius: 30px 30px 30px 80px;
}
.hover12 figure:hover img {
	opacity: 1;
  border-radius: 30px 30px 30px 80px;
}


a {
  color: #fff;
  text-decoration: none;
}
.me {
  width: 400px;
  margin: 90px auto;
}
.me p,
.me h1 {
  letter-spacing: 3px;
  text-align: center;
}
.me p {
  font-weight: 200;
}
.me span {
  font-weight: bold;
}
.social {
  position: fixed;
  bottom: 10%;
  z-index: 1; /* Adjust the value as needed */
  width: 100px;
}
.social ul {
  padding: 0px;
  transform: translate(-250px, 0);

}
.social ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}
.social ul li:hover {
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}
.social ul li:hover a {
  color: #000;
}
.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}
.social ul li i {
  margin-left: 10px;
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #ffffff;
  transform: rotate(0deg);
}


@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}


/* Extra Small Devices (Phones, max-width: 575.98px) */
@media (max-width: 575.98px) {
  .title-big-banner {
    font-size: 2em;
    color: #265F6C;
    font-weight: bold;
    line-height: 38px;
   padding-left: 5%;
  }
  .star-home-banner {
    top: 35%;
    left: 40%;
  }
  .star-width {
    width: 150px;
  }
  .banner-text {
    z-index: 10;
    top: 15%;
    align-items: center;
    width: 100%;
  }
  .box-1, .box-2 {
    width: 100%;
  }
  .padding-home-card {
    padding-left: 0;
  }

  .tag-img {
    width: 200px;
    position: relative;
    top: 10px;
    z-index: 1;
  }
  .navbar {
    position: relative;
    z-index: 1000;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1050;
    display: none;
  }
  .navbar-collapse.show {
    display: block;
  }
  .navbar-toggler {
    z-index: 1100;
  }
  .dropdown-menu {
    z-index: 1050;
  }
  .toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
  }
  .card-img-icons{
    position: absolute;
    left: -3px;
    top: 150px;
    width: 120px;
    transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
  }
  
  .card-img-icons:hover {
      transform: rotatey(180deg); /* Rotate the image on hover */
  }
  .card-img-icons-bg {
    position: absolute;
    left: -3px;
    top: 150px;
    width: 120px;
  }



  .heading-text-bold-blue{
    font-weight: bold;
    color: #265f6c;
    font-size: 1.5em;
    line-height: 30px;
   }
   .heading-text-bold-md{
    font-weight: 500;
    color: #436b63;
    font-size: 1.5em;
    line-height: 30px;
   }
   .title-text-bold{
    font-size: 2em;
    color: #50857b;
    font-weight: bold;
  }

  .heading-text-bold-wh{
    font-weight: 500;
    color: #daefea;
    font-size: 1.2em;
    line-height: 32px;
   }
   .text-big{
    font-size: 1.1em;
    font-family: Gotham;
  }
}


/* Small Devices (min-width: 576px and max-width: 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .box-1, .box-2 {
    width: 100%;
  }
  .padding-home-card {
    padding-left: 0;
  }
  .tag-img {
    width: 200px;
    position: relative;
    top: 10px;
    z-index: 1;
  }
  .card-img-icons {
    position: absolute;
    left: -3px;
    top: 230px;
    width: 100px;
    transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
}
.card-img-icons:hover {
    transform: rotatey(180deg); /* Rotate the image on hover */
}
.card-img-icons-bg {
  position: absolute;
    left: -3px;
    top: 230px;
    width: 100px;
}
  .heading-text-bold-blue{
    font-weight: bold;
    color: #265f6c;
    font-size: 1.8em;
    line-height: 34px;
   }
}
.navbar-collapse {
  background-color: #ffffff;
  z-index: 1050;
  padding-bottom: 10px;
  padding-top: 10px;
}

/* Medium Devices (min-width: 768px and max-width: 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  
  
  /* Navbar Links */
  .navbar .navbar-nav .nav-link {
    color: #1a1250;
    font-size: .75em;
    padding: 0.5em .8em;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link.active {
    color: #1a1250;
    font-weight: 600;
    font-style: normal;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    color: #1a1250;
  }
  .drop-nav{
    background-color: #ffffff;
  }
  .drop-nav-item{
    color: #1a1250;
    font-size: .75em;
  }
  .nav-number{
    color: #1a1250;
    font-size: .7em;
    font-weight: 600;
    text-decoration: none;
    
  }

  .navbar-brand img {
    width: 150px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top */
  }

  .footer-brand{
    width: 150px; /* Logo size */
    position: relative;
    z-index: 1; /* Ensure the logo appears on top */
  }

  .footer-text {
    color: #ffffff;
    font-size: 0.75em;
  }

  .box-1, .box-2 {
    width: 100%;
  }
  .padding-home-card {
    padding-left: 0;
  }
  .tag-img {
    width: 200px;
    position: relative;
    top: -55px;
    z-index: 1;
  }
  .card-img-icons {
    position: absolute;
    left: 5px;
    top: 130px;
    width: 110px;
    transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
  }
  .card-img-icons:hover {
      transform: rotatey(180deg); /* Rotate the image on hover */
  }
  .card-img-icons-bg {
    position: absolute;
    left: 5px;
    top: 130px;
    width: 110px;
  }


}

/* Large Devices (min-width: 992px and max-width: 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  
  .padding-home-card {
    padding-left: 0;
  }
  .card-img-icons {
    position: absolute;
    left: -3px;
    top: 110px;
    width: 110px;
    transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
  }
  .card-img-icons:hover {
      transform: rotatey(180deg); /* Rotate the image on hover */
  }
  .card-img-icons-bg {
    position: absolute;
    left: -3px;
    top: 110px;
    width: 110px;
  }
  .text-big{
    font-size: 1.1em;
    font-family: Gotham;
  }
}

/* Extra Large Devices (min-width: 1200px and max-width: 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .card-img-icons {
    position: absolute;
    left: 5px;
    top: 130px;
    width: 120px;
    transition: transform 0.5s ease-in-out; /* Smooth animation for rotation */
}
.card-img-icons:hover {
    transform: rotatey(180deg); /* Rotate the image on hover */
}
.card-img-icons-bg {
  position: absolute;
  left: 5px;
  top: 130px;
  width: 120px;
}
  .text-big{
    font-size: 1.2em;
    font-family: Gotham;
  }
}

/* Ultra-Wide Devices (min-width: 1400px) */
@media (min-width: 1400px) {
  /* Add specific styles for ultra-wide screens */
}
