@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.roboto-thin { font-family: "Roboto", sans-serif; font-weight: 100; font-style: normal; }
.roboto-light { font-family: "Roboto", sans-serif; font-weight: 300; font-style: normal; }
.roboto-regular { font-family: "Roboto", sans-serif; font-weight: 400; font-style: normal; }
.roboto-medium { font-family: "Roboto", sans-serif; font-weight: 500; font-style: normal; }
.roboto-bold { font-family: "Roboto", sans-serif; font-weight: 700; font-style: normal; }
.roboto-black { font-family: "Roboto", sans-serif; font-weight: 900; font-style: normal; }

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

body {
    background-color: white;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Banner styling */
/* Banner styling for carousel */
.banner {
    height: 90vh;
    background-size: cover !important;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-repeat: no-repeat !important;
  }

  @media (max-width: 768px) {
    .carousel-item {
        height: 50vh; /* Adjust carousel item height on smaller screens */
    }

    .banner {
        height: 50vh; /* Adjust banner height on smaller screens */
        background-position: center center;
    }

    .banner-content {
        margin-top: 50px; /* Adjust margin for smaller screens */
    }

    .banner h1 {
        font-size: 2rem; /* Smaller font size on mobile */
    }

    .banner h4 {
        font-size: 1rem; /* Adjust subheading font size */
    }

    .banner .btn {
        padding: 8px 15px; /* Adjust button size on mobile */
        font-size: 0.9rem; /* Adjust button text size */
    }
  }

  @media (max-width: 576px) {
    .carousel-item {
        height: 40vh; /* Further adjustment for very small screens */
    }

    .banner {
        height: 40vh; /* Further adjust banner height for very small screens */
    }

    .banner-content {
        margin-top: 20px; /* Adjust margin for smaller screens */
    }

    .banner h1 {
        font-size: 1.5rem; /* Further reduce font size */
    }

    .banner h4 {
        font-size: 0.9rem; /* Further adjust subheading font size */
    }

    .banner .btn {
        padding: 6px 12px; /* Adjust button size */
        font-size: 0.85rem; /* Adjust button text size */
    }
  }
/* Navbar logo */
.navbar-brand img {
    height: 60px;
}

/* Navbar default state */
.navbar-nav .nav-link {
    /* color: white !important; */
    font-size: 20px;
    font-weight: 400;
}

.navbar-nav .nav-link.active {
    color: red !important;
}

/* Add this CSS to handle the scrolled navbar */
.navbar.scrolled {
    background-color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar{
  background-color:#fff
}
.navbar.scrolled .nav-link {
    color: #000 !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}


/* Footer Section */
.footer {
    background-color: #022851;
    color: white;
    /* padding: 30px 20px; */
    text-align: center;
  }

  .footer .logo {
    margin-bottom: 20px;
  }

  .footer .contact-details {
    margin-top: 20px;
  }

  .footer a {
    color: white;
    text-decoration: none;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .footer .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer .whatsapp-icon img {
    width: 30px;
    height: 30px;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    font-size: 20px; /* Adjust size */
    color: #555; /* Neutral color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff; /* Change color on hover (e.g., Bootstrap primary) */
}
.image-quality{
    width: 300px;
}
 /* about icons */
 .icon-bx-sm {
    width: 70px;
    height: 70px;
    font-size: 28px;
}

.dlab-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

.icon-bx-wraper p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.about-section{
    background-image: url(frontend/images/aboutpage1.jpg);
    height: 300px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-position: center;
    justify-content: center;
    background-size: cover;

}
.about-section h6 {
    color: white;
    text-align: center; /* Optional: to center the text */
    max-width: 100%;
    font-size: 20px;
    font-weight: 500;
}
.our-people {
    background-color: #fff; /* Optional: Adds a light blue background */
    padding: 60px 0; /* Adjust the padding to fit your design */
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #223B8C;
}

.section-description {
    font-size: 18px;
    color: #555;
}

.section-image {
    width: 60%;
    height: auto;
    box-shadow: -10px -10px 0 rgba(255, 0, 0, 0.7);
}

/* Ensure the content aligns well on all screen sizes */
@media (max-width: 768px) {
    .our-people .row {
        text-align: center;
    }

    .our-people .section-image {
        margin-top: 20px;
    }
}
/* General Container Styling */
.contact-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    background: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px); /* Creates the blur effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
  }

  .contact-form, .quick-contact {
    width: 48%;
    background: rgba(255, 255, 255, 0.2); /* Transparent white background */
    padding: 20px;
    border-radius: 15px;
  }

  .contact-form h2, .quick-contact h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white; /* Light color for headings */
  }

  .contact-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .contact-form input, .contact-form textarea {
    width: 48%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.4); /* Transparent white for input fields */
    color: white; /* White text color for better contrast */
  }

  .contact-form textarea {
    width: 100%;
    height: 150px;
  }

  .contact-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
  }

  .quick-contact p, .contact-details div {
    color: white; /* White text for better readability */
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
  }

  .social-link:hover {
    color: #FF5722; /* Change color on hover for a nice effect */
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      padding: 15px;
    }

    .contact-form, .quick-contact {
      width: 100%;
      margin-bottom: 20px;
    }

    .contact-form input, .contact-form textarea {
      width: 100%; /* Make inputs full width */
    }

    .contact-form .form-row {
      flex-direction: column;
      justify-content: flex-start;
    }

    .contact-form input, .contact-form textarea {
      margin-bottom: 15px; /* Increase space between inputs */
    }

    .contact-form h2, .quick-contact h3 {
      font-size: 20px; /* Reduce font size for mobile */
      text-align: center;
    }

    .contact-details div {
      font-size: 14px; /* Slightly smaller text for contact details */
    }

    .social-links {
      justify-content: center;
    }

    .social-link {
      font-size: 18px; /* Adjust icon size for mobile */
    }

    .submit-btn {
      font-size: 14px; /* Reduce button text size on mobile */
      padding: 12px;
    }
  }
  .faq-header {
    color: #223B8C;
    font-weight: 600;
  }
  .accordion-button:not(.collapsed) {
    background-color: #223B8C;
    color: #fff;
  }
  .accordion-button {
    font-weight: 600;
  }
  .accordion-body {
    background-color: #f1f1f1;
  }
  .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 400;
}

.navbar-nav .nav-link.active {
    color: rgb(27, 213, 238) !important;
    text-decoration: underline !important;
}
.latest-post{
    position: relative;
  }

  .latest-post .image-angle:before{
     border-bottom: 20px solid #f9f9f9;
  }

  .latest-post .post-title{
    font-size: 16px;
    line-height: 24px;
    margin:0 0 10px;
  }

  .latest-post .post-title a {
    color: #303030;
  }

  .latest-post .post-title a:hover{
    color: #ffc000;
  }

  .latest-post .post-item-author{
    margin-left: 8px;
  }

  .latest-post .post-body{
    padding: 20px 0 5px;
  }

  .post{
    border-bottom: 1px solid #dadada;
    padding: 0 0 30px;
    margin: 0 0 45px;
  }

  .post.last{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .post-body{
    padding: 20px 0;
  }

  .entry-header .entry-title{
    font-size: 24px;
   margin: 5px 0 25px;
   position: relative;
    line-height: 28px;
    text-transform: capitalize;
  }

  .entry-header .entry-title a{
   color: #303030;
  }

  .entry-header .entry-title a:hover{
   color: #ffc000;
  }
  .img-responsive{
    display: block;
    max-width: 100%;
    height: auto;

  }
  .plan-action{
    padding-bottom: 40px;
  }
  .btn-primary{
    color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  }

  .post-title a{
  text-decoration: none;
  }

  /* blog  */


       .single-recent-post {
      padding: 25px 0;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    .recent-post-thumbs {
      flex: 0 0 100px;
    }

    .recent-post-content {
      padding-left: 15px;
    }
    .recent-post-content p {
      color: #212531;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .recent-post-content p {
        margin: 0;
      }
    }
    @media (max-width: 767px) {
      .recent-post-content p {
        margin: 0;
        font-size: 16px;
      }
    }
    .recent-post-content a h6 {
      font-size: 18px;
      color: #061815;
    }
    @media (max-width: 767px) {
      .recent-post-content a h6 {
        font-size: 16px;
        line-height: 20px;
      }
    }
    .recent-post-content a h6:hover {
      color: #212531;
    }
    .blog-category {
      border: 1px solid #eee;
      margin: 30px 0;
      padding: 35px;
    }

    .blog-category ul li {
      display: block;
    }

    .blog-category ul li a {
      font-size: 17px;
      font-weight: 500;
      color: #061815;
      margin-bottom: 25px;
    }
    .blog-category ul li a:hover {
      color: #FE574F;
    }

    .blog-category ul li i {
      margin-right: 15px;
    }

      .button {
    border: 2px solid #00a0e3;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: #00a0e3;
  }
  .form-group{
    margin-top:10px;
  }

        img{
          max-width: 100%;
        }
