@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');

body{ 
    font-family: 'Roboto', sans-serif;
    background-color: lightgoldenrodyellow;
}

img{
  max-width: 150px;
  width:100%;
}

/* Style for the header */
.header {
  background-color: ghostwhite; /* Customize this color */
  padding: 20px;
  position: relative;
  z-index: 10;
  width: 100%; /* Ensures it doesn't exceed the screen width */
  box-sizing: border-box;
}

/* Container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Contact info styling */
.contact-info {
  list-style: none; /* Remove bullets from list */
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* Add space between the items */
  flex-wrap: wrap; /* Allows wrapping in smaller screens */
}

.contact-info .phone, .contact-info .email {
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px; /* Space between icon and text */
}

.contact-info a {
  text-decoration: none;
  color: blue; /* Customize color */
  font-weight: bold;
  font-family: calibri; /* Custom font */
}

/* Social icons spacing */
.right-content a {
  color: blue;
  font-size: 1.2em;
  margin-right: 10px; /* Adjust the spacing between icons */
}

.icon-spacing {
  margin-right: 10px;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .header .container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    justify-content: center; /* Center contact info on mobile */
    margin-bottom: 10px;
  }

  .right-content {
    display: flex;
    justify-content: center;
  }

  .contact-info li,
  .right-content a {
    margin-right: 10px;
  }
}


/* Custom styles for navbar */
.custom-navbar {
  background-color:  #2a2c39; /* Customize this color */
  transition: top 0.3s; /* Smooth transition when navbar moves */
}

/* Make sure the navbar stays sticky when scrolling */
.sticky-top {
  z-index: 1000; /* Keeps navbar above other content */
}

/* Add shadow to navbar when it becomes sticky */
.custom-navbar.sticky {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* add colors and weight to the navbar item */
.nav-link{
  font-weight: 600;
  color: goldenrod;
}

.navbar-toggler:focus{
  box-shadow: none;
}

.dropdown>.dropdown-menu{
  background-color: white;
  border: none;
  border-radius:0;
}

.bi-grid-alt{
  font-size: 1.5rem;
}

.bi-x-crcle-alt{
  font-size: 3rem;
}

@media (min-width:992px){
  .dropdown>.dropdown-menu{
    visibility: hidden;
    opacity: 0;
    top: 100%;
    display: block;
    transition: all 0.1s ease-out;
  }

.dropdown:hover>.dropdown-menu{
  padding: 20px 0;
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.dropdown-item:hover{
  color: white;
  background-color: goldenrod;
}
.nav-link:hover{
  color: gold;
}


.hero-section {
  background-image: url('images/hero2.jpg'); /* Replace with the actual image path */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center center, top center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  position: relative; /* Needed for overlay effect */
  padding: 100px 0; /* Adjust padding as needed */
}

.hero-section .container {
  position: relative;
  z-index: 2; /* Ensures the content is above the background */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity and color for a semi-transparent overlay */
  z-index: 1;
}

.hero-section h1, 
.hero-section p, 
.hero-section button {
  color: white; /* Ensures the text is readable against the background */
  z-index: 2; /* Keeps the text above the overlay */
}

i {
  height: 32px;
  width: 32px;
  margin-bottom: 16px;
  color:blue;
  background-color:white;
  padding: 6px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* Start slightly lower */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Move into place */
  }
}

.hero-section h1, 
.hero-section p, 
.hero-section button {
  opacity: 0; /* Hidden initially */
  animation: fadeInUp 1s ease-out forwards; /* Apply the fade-in animation */
}

.hero-section h1 {
  animation-delay: 0.2s; /* Delays the appearance of the heading */
}

.hero-section p {
  animation-delay: 0.4s; /* Delays the appearance of the paragraph */
}

.hero-section button {
  animation-delay: 0.6s; /* Delays the appearance of the button */
}
.container {
  display: flex;
  justify-content: space-between; /* Space between the left and right sections */
  align-items: center;
}
.blue-bg{
  background-color: #0d6efd;
  color: ghostwhite;
}
.card{
  border: none;
}
.icon-spacing {
    margin-right: 15px; /* Adjust this value for more or less space */
    font-size: 24px;
}