 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Make the html and body stretch to the full height of the viewport */
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

.wrapper {
  flex: 1; /* Push the footer to the bottom */
}
/*===============Header===============*/
 /* Header Styles */
/* Header Styles */
   :root {
      --navbar-bg-color: #0b1a2d;       /* Navbar background */
      --navbar-text-color: white;       /* Navbar text color */
      --navbar-toggler-color: white;   /* Toggler icon color */
      --offcanvas-bg-color: #0b1a2d;   /* Offcanvas menu background */
      --button-bg: #0b1a2d;            /* Button background */
      --button-hover-bg: #0b1a5d;     /* Button hover background */
      --button-text-color: white;      /* Button text color */
    }

    header {
      background-color: var(--navbar-bg-color);
      color: var(--navbar-text-color);
    }

    header .logo img {
      height: 50px;
    }

    header nav .btn {
      background-color: var(--button-bg);
      color: var(--button-text-color);
      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;
    text-transform: uppercase;
    }

    header nav .btn:hover {
      background-color: var(--button-hover-bg);
      transform: scale(1.05);
    }

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

    .navbar-toggler {
      border: 2px solid var(--navbar-toggler-color);
    }

    .navbar-toggler-icon {
      display: block;
      width: 20px;
      height: 2px;
      background-color: var(--navbar-toggler-color);
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: '';
      width: 20px;
      height: 2px;
      background-color: var(--navbar-toggler-color);
      position: absolute;
      left: 0;
    }

    .navbar-toggler-icon::before {
      top: -6px;
    }

    .navbar-toggler-icon::after {
      top: 6px;
    }

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

.offcanvas .btn:hover {
  background-color: var(--button-hover-bg);
  transform: scale(1.05); /* Hover animation effect */
}
/* Offcanvas Background Color */
.offcanvas {
  background-color: #0b1a2d;  /* Change background to the new color */
}
.offcanvas-title{
color: white;
}


/*==========================Contacts====================================*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4; /* Soft neutral background for better visual contrast */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.contact-info {
  background: url('Image/herobg.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjusted overlay darkness for readability */
  z-index: 1;
}

.contact-info h2,
.contact-info p,
.contact-info a {
  position: relative;
  z-index: 2;
  
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px; /* Slight spacing for elegance */
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6; /* Improved text spacing for readability */
  
  
}

.contact-info a {
  font-size: 1.1rem;
  color: #00bcd4;
  text-decoration: none;
  font-weight: bold;
   color: #ffffff;
   text-decoration: none;
}

.contact-info a:hover {
  color: #01d1ef; /* Slightly lighter color on hover */
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  padding: 60px 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
  color: #000;
  padding-top: 50px;
}

.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #00bcd4;
  outline: none;
}

.contact-form button {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0b1a4d;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-info, .contact-form {
    flex: 100%;
    min-height: 50vh;
    padding: 30px; /* Reduced padding for smaller screens */
  }

  .contact-info h2, .contact-form h2 {
    font-size: 2rem; /* Scaled down for smaller screens */
  }
}

/*==========================FOOTER====================================*/
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;
}

.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;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}
.pop{
  animation: pop 3s ease-in-out;
}
.with-delay {
  animation-delay: 1s;
}
@keyframes pop{
  50%  {
    transform: scale(1.25);
  }
}

