 *{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
 }
 /* Navbar Custom Css  */

.bg-custom{
  background-color: #164863 !important;
}
.nav-item .nav-link{
  color: #DDF2FD !important;
  font-size: 15px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

 .nav-link:hover{
  color: #40bcff !important;
  font-size: 15px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  transition: ease-in-out 0.5s;
}
 .nav-item .active{
  color: #9BBEC8 !important;
}

/* Navbar Toggler Css  */
.navbar-toggler{
  background-color: #ffffff !important;
}
.navbar-toggler:focus{
  box-shadow: none !important;
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-img {
  background: url('image/image_02.jpg') no-repeat center center/cover !important; /* Replace with your image path */
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;

}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.7) !important; /* Black overlay with 50% opacity */
  position: absolute;
  top: 85px;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 2;
}

.banner-heading{
  position:relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:100vh ;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;

}
.banner-heading h1{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;

  font-style: italic;
}
/* Custom animation delay */
.animate__fadeInDown {
  animation-delay: 0.5s;
}

.animate__fadeInUp {
  animation-delay: 1s;
}

.animate__zoomIn {
  animation-delay: 1.5s;
}

/* Banner Heading Lighting Effect */

.animated-colors1 {
  font-size: 3rem; /* Adjust the size of the heading */
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  transition: color 1s ease-in-out;
  animation: colorChange 7s infinite; /* 7 seconds for all 7 colors */
}

/* Keyframes for Color Transition */
@keyframes colorChange {
  0% {
    color: rgb(255, 88, 88);
  }
  14% {
    color: orange;
  }
  28% {
    color: yellow;
  }
  42% {
    color: rgb(1, 240, 1);
  }
  57% {
    color: rgb(82, 154, 255);
  }
  71% {
    color: rgb(192, 128, 255);
  }
  85% {
    color: violet;
  }
  100% {
    color: rgb(255, 119, 112); /* Loop back to the first color */
  }
}


/* Services Section  CSS Start from here  */
.custom-border1{
  border-bottom-left-radius: 25% !important;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 25% !important;
  border-top-left-radius: 0 !important;
}
.custom-border2{
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 25% !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 25% !important;
}

.custom-btn-color{
  background-color: #164863 !important;
}
.hr{
    width: 220px;
    color: #164863;
    border-width: thick;
    margin: auto;
    margin-bottom: 25px;
}
.service-background{
  background: url("https://img.freepik.com/free-photo/artistic-blurry-colorful-wallpaper-background_58702-8189.jpg?t=st=1734187574~exp=1734191174~hmac=74482dc84ea9367166069e8bc7cf836fef8f86e07d728f2daa9b2ad835db2393&w=996") no-repeat center/cover  !important;
}


/* plans & Pricing CSS  */
.plans-bg{
  background-color: #9BBEC8 !important;
}
.hr2{
  width: 220px;
    color: #ffffff;
    border-width: thick;
    margin: auto;
    /* margin-bottom: 25px; */
    z-index: 1;
}
.plans-pricing-bg{
  background-color: #9BBEC8 !important;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .swiper-pagination{
 top: 500px !important; 
} */

.custom-card-header-bg{
  background-color: #164863 !important;
  border: 2px solid #164863 !important;
  border-radius: 0 !important;

}
.btn-custom{
background-color: #164863 !important;
color: #fff !important;
}
.card-body-custom-hover:hover{
  background-color: #DDF2FD !important;
  border-top: 1px solid #ffffff !important;
  transition: ease-in-out 0.5s;

}

/* ABOUT US SECTION CSS START FROM HERE  */

.about-img {
  max-width: 100% !important; /* Adjust the width of the image */
  height: 420px !important;
  border-radius: 15px; /* Adds rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Creates a soft 3D shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.about-img:hover {
  transform: translateY(-10px); /* Creates a floating effect when hovered */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Increased shadow for the hover effect */
}

/* CONTACT_US Section start from here  */
.contact-us-bg{
  background-color: #def4ff !important;
}

.custom-iframe{
border: 10px solid #164863 !important;
height: 350px !important;
width: 350px !important;
border-top-right-radius: 50px;
border-bottom-left-radius: 50px;
box-shadow:10px 10px 10px 2px rgb(0 0 0 / 77%) ;
}

.contact-info {
  padding: 20px;
  background-color: #164863;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgb(0 0 0 / 77%);
}
.contact-info:hover{
  background-color: #000000 !important;
  color: #164863 !important;
  transition: all 0.3s ease-in-out;
}
.border-bottom-custom{
  border-bottom: 3px dotted #def4ff !important;
}
.social-icons{
  padding: 20px;
  background-color: #164863;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgb(0 0 0 / 77%);
  
}
.social-icons:hover{
  background-color: #000000 !important;
  color: #164863 !important;
  transition: all 0.3s ease-in-out;
}

/* Responsive Device CSS start here */

@media (max-width: 576px) {
  .banner-heading h1 {
    font-size: 1.75rem; /* Reduce heading size on small screens */
    letter-spacing: 1px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
  }

  .banner-heading p {
    font-size: 1rem; /* Reduce paragraph size on small screens */
  }

  .banner-heading a {
    font-size: 0.9rem; /* Adjust button font size */
  }
  .banner-overlay {
    height: 80vh; /* Ensure overlay height is always full viewport */
    background-color: rgba(0, 0, 0, 0.3) !important;
  }
  .banner-img {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: bottom center !important;
  }
  .banner-heading{
    height: 80vh;
    top: 85px;
    
  }
  .custom-iframe{
    height: 200px !important;
    width:200px !important;
  }
  .contact-info p{
    font-size: 16px !important;
  }
}



.pricing-card {
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Custom Card Shadow */
.custom-shadow {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.custom-shadow:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
}

/* Service Section Background */
.service-section {
  background-color: #9BBEC8;
  padding: 60px 0;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h1 {
  font-weight: bold;
  text-transform: uppercase;
  color: #164863;
}

.section-title hr {
  width: 120px;
  height: 3px;
  background-color: #427D9D;
  border: none;
  margin: 0 auto;
}

/* Custom Card Styles */
.service-card {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  text-align: center;
}

.btn-custom {
  background-color: #427D9D;
  color: #fff;
  border: none;
  transition: background-color 0.3s;
}

.btn-custom:hover {
  background-color: #164863;
  color: #fff;
}




@media (max-width: 768px) {
  .contact-info {
    text-align: center;
  }
  .social-icons {
    flex-direction: column;
  }
  .social-icons h5 {
    margin-bottom: 10px;
  }
  .custom-iframe{
    height: 200px !important;
    width:200px !important;
  }
  .contact-info{
    margin-bottom: 75px !important;
  }
}
@media (max-width: 425px) {
  .banner-heading h1 {
    font-size: 1.5rem !important; /* Reduce heading size on small screens */
    letter-spacing: 1px;
  }
  .animated-colors1 {
    font-size: 1.5rem !important;
}

  .banner-heading p {
    font-size: 1rem; /* Reduce paragraph size on small screens */
  }

  .banner-heading a {
    font-size: 0.9rem; /* Adjust button font size */
  }
  .banner-overlay {
    height: 80vh; /* Ensure overlay height is always full viewport */
    background-color: rgba(0, 0, 0, 0.3) !important;
  }
  .banner-img {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: bottom center !important;
  }
  .banner-heading{
    height: 80vh;
    top: 80px;
    
  }
  .custom-iframe{
    height: 180px !important;
    width:180px !important;
  }
  .contact-info p{
    font-size: 14px !important;
  }
}

@media (max-width: 320px) {
  .banner-heading h1 {
    font-size: 12px;

        letter-spacing: 1px;  /* Reduce heading size on small screens */
  }

  .animated-colors1 {
    font-size: 1rem !important;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: color 1s ease-in-out;
    animation: colorChange 7s infinite;
}

  .banner-heading p {
    font-size: 1rem !important; /* Reduce paragraph size on small screens */
  }

  .banner-heading a {
    font-size: 0.9rem; /* Adjust button font size */
  }
  .banner-overlay {
    height: 60vh; /* Ensure overlay height is always full viewport */
    background-color: rgba(0, 0, 0, 0.3) !important;
  }
  .banner-img {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: bottom center !important;
  }
  .banner-heading{
    height: 60vh;
    margin-top: 25px !important;
    
  }
  .custom-iframe{
    height: 150px !important;
    width:150px !important;
  }
  .contact-info {
    margin-bottom:0 !important;
}
  .contact-info p{
    font-size: 12px !important;
  }
  .font-size-12{
    font-size: 12px !important;
  }
  .mobile-responsive{
    padding: 0 !important;
  }
}