       /* Header Styles */
    /* Global Variables: Direct use of class names */
    .navbar-custom {
      --navbar-bg-color: #0b1a2d;
      --navbar-text-color: white;
      --navbar-toggler-color: white;
      --offcanvas-bg-color: #0b1a2d;
      --button-bg: #0b1a2d;
      --button-hover-bg: #0b1a5d;
      --button-text-color: white;
    }

    header {
      background-color: #0b1a2d;
      color: white;
    }

    header .logo img {
      height: 50px;
    }

    header nav .btn {
      background-color: #0b1a2d;
      color: white;
      border: none;
      text-transform: uppercase;
      font-size: 0.9rem;
      padding: 10px 15px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1rem;
      font-weight: 600;
    }

    header nav .btn:hover {
      background-color: #0b1a5d;
      transform: scale(1.05);
    }

    header nav .btn + .btn {
      margin-left: 10px; /* Add space between buttons */
    }

    .navbar-toggler {
      border: 2px solid white;
    }

    /* Toggler Icon without using pseudo-elements */
    .navbar-toggler-icon {
      display: block;
      width: 30px;  /* Adjust size */
      height: 3px;  /* Thickness of each bar */
      background-color: white;
      position: relative;
    }

    /* Bar styling inside the toggler icon (with separate divs) */
    .navbar-toggler-icon .bar {
      display: block;
      width: 30px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
    }

    /* Offcanvas Button Styles */
    .offcanvas .btn {
      display: block;
      width: 100%;
      margin-bottom: 10px; /* Add spacing between buttons */
      background-color: #0b1a2d;
      color: white;
      border: none;
      text-transform: uppercase;
      font-size: 1rem;
      padding: 12px 15px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .offcanvas .btn:hover {
      background-color: #0b1a5d;
      transform: scale(1.05);
    }

    /* Offcanvas Background Color */
    .offcanvas {
      background-color: #0b1a2d;
    }

    .offcanvas-title {
      color: white;
    }
	  .page-background {
      margin: 0;
      font-family: Arial, sans-serif;
background-color: #e5e5f7;
opacity: 0.8;
background-image:  radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
background-size: 20px 20px;
background-position: 0 0,10px 10px;
    }
/* General Styling */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  justify-content: center; /* Center cards inside the wrapper */
}

.title-section {
  text-align: center;
  margin-bottom: 30px;
}
.h1{
font-weight: bolder;
}	
.h2{
font-weight: bolder;
}


.title-section h1 {
  font-size: 28px;
  color: #333;
  font-weight: bold;
}

.feature-section {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.feature-section:nth-child(even) {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  padding: 20px;
}

.text-content h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-content a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: bold;
}


.image-content {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.image-content img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile-specific styling */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Adds a border between each section */
    padding-bottom: 20px;
    margin-bottom: 40px; /* Maintain the same margin for each section */

  }
.content-wrapper{
	    margin-left: 20px; /* Maintain the same margin for each section */
		    margin-right: 20px; /* Maintain the same margin for each section */
}
  .image-content {
    display: none; /* Hide images on mobile view */
  }

  .title-section h1 {
    font-size: 20px;
    padding: 0 10px;
  }

  .text-content {
    padding: 10px;
  }

  .text-content h2 {
    font-size: 18px;
  }

  .text-content p {
    font-size: 14px;
  }

  .text-content a {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
  }
}
/*this side for enhance image pic*/

#myImg:hover {opacity: 0.7;}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Solid black background */
  transition: opacity 0.5s ease; /* Fade-in effect */
  opacity: 0; /* Initially hidden */
}

.modal.show {
  display: block;
  opacity: 1; /* Fully visible modal */
}

.modal-content {
  margin: auto;
  display: block;
  width: 95%; /* Adjust size for larger appearance */
  max-width: 1200px; /* Maximum image width */
  opacity: 1; /* Full opacity for the image */
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fade-out and transitions */
.modal.showing {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

footer {
  background-color: #0c1b2d;
  color: #fff;
  padding: 40px 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 1;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 0;
  font-weight: bold;
}

.footer-about {
  flex: 1.5;
}

.footer-about h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.about-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-item img {
  width: 20px; /* Adjust icon size */
  height: 20px;
  margin-right: 15px;
}

.about-item p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-text {
  flex: 1.5;
  font-size: 0.95rem;
  line-height: 1.6;
    font-style: italic;
}

.footer-text p {
  margin: 0;
  letter-spacing:3px;
}
.footerlink a{
color:white;
}
.footerlink :hover{
color:red;
}
.footer-container .cta-buttons {
    margin-top: 20px;
	margin-right:20px
}

.footer-container .cta-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: ;
    border: 2px solid #01fdfd;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-container .cta-buttons a:hover {
    background: #00203F;
    color: #01fdfd;
    transform: scale(1.1);
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

.pop{
  animation: pop 3s ease-in-out;
}
.with-delay {
  animation-delay: 1s;
}
@keyframes pop{
  50%  {
    transform: scale(1.25);
  }