/* * {
  overflow: hidden;
} */

html {
  scroll-behavior: smooth;
}

.main {
  background-image: url("../../assets/home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 8rem;
  /* background-size: contain; */
}


.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 0.5rem 1rem;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Prevent overflow */
  overflow: hidden; /* Prevent any horizontal overflow */
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5rem 1rem; /* Default padding */
  font-size: 0.875rem;
  border-radius: 10px;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  border: 2px solid red;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #000000;
}

.navbar-brand img {
  max-width: 150px; /* Adjust based on your logo size */
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.navbar-brand {
  margin-right: 0!important; /* Increased font size */
  padding: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px; /* Ensure buttons are well-spaced */
}

.navbar .container-fluid {
  display: flex!important; /* Increased font size */
  align-items: center!important; /* Increased font size */
  justify-content: space-between!important; /* Increased font size */
  padding: 0 15px!important; /* Increased font size *//* Control spacing around navbar */
}

.navbar-toggler {
  margin-left: auto;
}
@media (max-width: 768px) {
  .gap-md-5{
    gap:1rem!important;
  }
  }
  @media (max-width: 991px) {
  
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      margin: 0.25rem 0;
    }
    .navbar-expand-lg .navbar-nav {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: auto; /* Ensure compact layout */
    }
    .navbar-nav {
      padding-left: 15px;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .navbar {
      padding: 0.5rem;
    }
  }
  @media (min-width: 1024px) {
    .navbar {
      width: 100%; /* Full width of the container */
      max-width: 100%; /* Prevent overflow */
      padding: 0.01rem 0; /* Remove left and right padding */
      overflow-x: hidden; /* Prevent horizontal overflow */
    }
  
    .navbar .container-fluid {
      display: flex;
      flex-wrap: nowrap; /* Ensure no wrapping */
      align-items: center;
      justify-content: space-between;
      width: 100%; /* Full width */
      padding: 0; /* Remove all padding */
    }
  
    .navbar-brand {
      flex-shrink: 0;
      margin-right: auto;
      max-width: 130px; /* Prevent logo from making navbar wider */
    }
  
    .navbar-expand-lg .navbar-nav {
      display: flex;
      justify-content: center; /* Center the nav items */
      align-items: center;
      width: 100%; /* Ensure navbar items take full width */
      
      padding: 0; /* Remove extra padding */
    }
  
    .navbar-nav .nav-link {
      font-size: 0.9rem !important; /* Increased font size */
      padding: 0.4rem 1rem !important; /* Increased padding inside links */

      text-align: center;
      justify-content: center; /* Align content to the center */
      border-radius: 6px;
      white-space: nowrap; /* Prevents text from wrapping */
      overflow: hidden; /* Prevent content overflow */
      min-width: 80px; /* Adjust minimum width */
      max-width: none; /* Remove maximum width restriction */
    }
  
    .navbar-toggler {
      margin-left: auto;
    }
  }
  
  
/* Larger Screens */
@media (min-width: 1440px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }

  .navbar .container-fluid {
    display: flex!important; /* Increased font size */
    flex-wrap: nowrap!important; /* Increased font size */
    align-items: center!important; /* Increased font size */
    justify-content: space-between!important; /* Increased font size */
    width: 100%!important; /* Increased font size */
    padding: 0!important; /* Increased font size */
  }

  .navbar-brand {
    flex-shrink: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: flex-start; /* Align navbar items starting from the left */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly !important; /* Increased font size */
    width: 100%; /* Ensure navbar items take full width */
    padding: 0;
    margin-left: 0 !important; /* Increased font size */
  }

  .navbar-nav .nav-link {
    font-size: 1.12rem !important; /* Increased font size */
    padding: 0.7rem 2.1rem !important; /* Increased padding for bigger clickable area */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 120px; /* Increase the minimum width for larger links */
    max-width: none; /* Adjust maximum width */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/* Ultra-Wide Screens */
@media (min-width: 2560px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0; /* Ensure no extra padding */
    overflow-x: hidden; /* Prevent overflow */
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly between brand and nav links */
    width: 100%;
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
  }

  .navbar-brand {
    margin: 0; /* Remove margin around brand */
    padding: 0; /* Remove padding */
    flex-shrink: 0; /* Prevent brand from shrinking */
    display: flex;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: space-between; /* Ensure nav links are distributed evenly */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Evenly distribute the nav links */
    gap: 20px; /* Provide space between nav links */
    width: 100%; /* Ensure the navbar takes full width */
    padding: 0;
    margin: 0; /* Remove any margin */
  }

  .navbar-nav .nav-link {
    font-size: 1.4rem !important; /* Increased font size */
    padding: 1rem 2.5rem !important; /* Increased padding */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 200px;
    max-width: none;
    border: 2px solid transparent; /* Optional, for a cleaner look */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}
/* General Styles */
main {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 10px 0;
  min-height: 100vh;
  background-color: #fff;
  box-sizing: border-box;
}

/* Fixed Button Container */
.fixed-button-container {
  position: fixed;
  left: 0;
  top: 23% !important;
  background-color: #fff;
  width: 100%; /* Ensure container spans the entire screen */
  z-index: 1000;
  padding: 10px 20px; /* Adds padding around the container */
  display: flex;
  gap: 5px; /* Adds space between buttons */
  justify-content: space-between; /* Spread buttons across the full width */
}

.fixed-button-container button {
  background-color: grey;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 0;
  flex-grow: 1; /* Allow buttons to take up equal space */
  text-align: center; /* Center text within the buttons */
}

.fixed-button-container button:first-of-type {
  background-color: maroon; /* Maroon color for the first button */
}

.fixed-button-container a {
  color: white;
  text-decoration: none;
  display: block;
}
/* Main Container and Flex Layout */
.container {
  padding: 6rem 0 0 0; /* Padding to avoid overlap with fixed buttons */
  min-width: 100vw;
  margin: 0 auto; /* Center the container */
  width: 100%; /* Ensure container takes full width */
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 30px 0;
  width: 100%; /* Ensure it takes full width */
}

.image-section {
  flex: 1;
  min-width: 300px;
  margin: 0;
  justify-content: center;
}

.content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.content-section .styled-button {
  background-color: maroon;
  color: white;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 0 10px 0;
  text-align: center;
}
.content-section h3 {
  margin: 0;
  font-size: 20px;
}
.content-section p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 2;
}
.social-icons a {
  font-size: 4.5rem; /* Adjust icon size */
  text-decoration: none; /* Remove underline */
  align-self: flex-end;
  padding: 10px;
}

.social-icons a:hover {
  transform: scale(1.2); /* Optional: Enlarge on hover */
  transition: transform 0.2s ease-in-out;
}

.social-icons i {
  vertical-align: middle;
}

/* First Flex Container */
.flex-container-1 {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.flex-item {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flex-item .styled-button-1 {
  background-color: black;
  color: white;
  padding: 10px ;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px 0;
  text-align: center;
  align-self: center;
}

.flex-item .styled-button-1 h3{
  font-size: 20px;
}

.separator {
  width: 1px;
  background-color: #ccc;
  height: 200px;
  margin: 50px 0;
}

/* Second Flex Container */
.flex-container-2 {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 40px 40px;
  gap: 10px;
}

.flex-item-2 {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flex-item-2 .styled-button-2 {
  background-color: black;
  color: white;
  padding: 10px ;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px;
  text-align: center;
  align-self: center;
}

.flex-item-2 .styled-button-2 h3{
  font-size: 20px;
}

.separator-2 {
  width: 1px;
  background-color: #ccc;
  height: 150px;
  margin: 90px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust fixed button layout for smaller screens */
  .fixed-button-container {
    flex-wrap: wrap; /* Allows buttons to wrap if they don’t fit */
    top: 25% !important;
    justify-content: space-between; /* Keeps the buttons spread across the container */
    padding: 05px; /* Adjust padding for smaller screens */
  }

  .fixed-button-container button {
    padding:5px ;
    font-size: 14px; /* Reduces font size for small screens */
    width: calc(
      50% - 5px
    ); /* Makes each button half-width, adjusting for gap */
    box-sizing: border-box;
  }

  /* Adjust flex containers for mobile */
  .flex-container,
  .flex-container-1,
  .flex-container-2 {
    flex-direction: column; /* Stack items vertically on smaller screens */
    gap: 15px; /* Adds space between items */
    width: 100%; /* Ensures full width */
  }

  .flex-container-2 {
    margin: 0 0 100px 0;
  }

  .image-section {
    max-width: 100%; /* Ensure the image fits smaller screens */
    border-radius: 6px;
  }

  .more-content {
    display: none;
  }

  .read-more {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
  }

  /* Adjust separator for mobile */
  .separator,
  .separator-2 {
    height: 1px;
    width: 100%;
    margin: 10px 0;
  }

  /* Adjust text sizes for smaller screens */
  .content-section p,
  .flex-item p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Adjust button sizes for mobile */
  .styled-button,
  .styled-button-1,
  .styled-button-2 {
    padding: 8px 15px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  /* Adjust button layout for very small screens */
  .container {
    padding: 4rem 0 0 0; /* Adjust padding for smaller screens */
    width: 100vw; /* Full width */
    margin: 0; /* Ensure no space is left around the container */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    box-sizing: border-box;
  }

  .image-section {
    max-width: 100%;
    border-radius: 6px;
  }

  /* Adjust flex containers for very small screens */
  .flex-item,
  .content-section {
    margin: 0 auto;
    width: 100%; /* Ensure full width */
  }

  .social-icons i {
    font-size: 20px;
    margin-right: 8px;
  }

  /* Adjust fixed button layout for very small screens */
  .flex-container,
  .flex-container-1,
  .flex-container-2 {
    flex-direction: column;
    gap: 12px;
    width: 100%; /* Ensure full width */
  }

  .image-section {
    max-width: 100%;
    border-radius: 6px;
  }

  /* Hide more content on small screens */
  .more-content {
    display: none;
  }

  /* Adjust separator for very small screens */
  .separator,
  .separator-2 {
    height: 1px;
    width: 100%;
    margin: 8px 0;
  }

  /* Adjust text sizes for very small screens */
  .content-section p,
  .flex-item p {
    line-height: 1.4;
  }
  
  .image-section,
  .content-section {
    width: 100%; /* Ensure full width */
    max-width: 100%;
    margin: 0;
    padding: 0; /* Remove any extra padding */
  }

  /* Adjust button sizes for very small screens */
  .styled-button,
  .styled-button-1,
  .styled-button-2 {
    padding: 6px 12px;
    width: 100%; /* Full-width buttons */
  }

  /* Adjust social icons for very small screens */
  .social-icons i {
    font-size: 20px;
    margin-right: 6px;
  }
}


/* Responsive fixes for 480px screens */
@media (max-width: 480px) {
  .container {
    padding: 4rem 0 0 0;
    width: 100vw; /* Full width */
  }

  .flex-container, .flex-container-1, .flex-container-2 {
    flex-direction: column; /* Stack items */
    gap: 15px;
    padding: 0 10px;
    width: 100%; /* Ensure full width */
  }

  .image-section, .content-section {
    max-width: 100%; /* Prevent horizontal overflow */
    margin: 0 auto; /* Center content */
  }

  .content-section .styled-button {
    width: 100%; /* Full-width buttons */
  }
  .social-icons i {
    font-size: 20px;
    margin-right: 6px;
  }
}
/* Responsive fixes for smaller screens */
@media (max-width: 375px) {
  .container {
    padding: 4rem 0 0 0;
    width: 100vw; /* Full width */
  }

  .flex-container, .flex-container-1, .flex-container-2 {
    flex-direction: column; /* Stack items */
    gap: 15px;
    padding: 0 10px;
    width: 100%; /* Ensure full width */
  }

  .image-section, .content-section {
    max-width: 100%; /* Prevent horizontal overflow */
    margin: 0 auto; /* Center content */
  }

  .content-section .styled-button {
    width: 100%; /* Full-width buttons */
  }
  .social-icons i {
    font-size: 18px;
    margin-right: 6px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 3rem 0 0 0;
    width: 100vw;
  }

  .flex-container, .flex-container-1, .flex-container-2 {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px; /* Reduce padding */
    width: 100%; /* Ensure full width */
  }

  .image-section, .content-section {
    max-width: 100%;
    margin: 0 auto;
  }

  .content-section .styled-button {
    width: 100%;
  }
  .social-icons i {
    font-size: 15px;
    margin-right: 6px;
  }
}

/* For large screens above 1024px */
@media (min-width: 1024px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top:24%!important;
  }

  .fixed-button-container button:first-of-type {
    background-color: #800000; /* Darker maroon for large screens */
  }

  .container {
    padding-bottom: 20px; /* Padding to avoid overlap with fixed buttons */
  }
}

/* For extra large screens (min-width: 1440px) */
@media (min-width: 1440px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top: 17%!important;
    padding: 15px 10px; /* Increased padding for extra-large screens */
  }

  .fixed-button-container button {
    padding: 1.2rem 2.5rem; /* Larger buttons for extra-large screens */
  }
  .container {
    padding-bottom: 20px; /* Padding to avoid overlap with fixed buttons */
  }
  .image-section {
    flex: 1;
    max-width: 100%; /* Prevent horizontal overflow */
    margin: 0 auto; /* Center content */
    display: block; /* Ensures the image behaves like a block element */
    text-align: center; /* Center the image inside */
  }
  
  .content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .content-section .styled-button {
   
    width: 100%; /* Full-width buttons */
  }

}

/* For very large screens (min-width: 2560px) */
@media (min-width: 2560px) {
  .fixed-button-container {
    position: fixed;
    left: 0;
    top: 11%!important;

  }
.fixed-button-container button{
  font-size: 28px;
}
  .fixed-button-container button:first-of-type {
    background-color: #660000; /* Even darker maroon for very large screens */
   
  }

  .container {
    padding: 7rem 0 6rem 0;
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .image-section, .content-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  /* Flex container adjustments for large screens */
  /* Flex container for additional layout */

.flex-item {
  flex: 1;
  min-width: 300px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

  .flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  
  }
  /* Image section and content section adjustments */

  .flex-container-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  
  }
  
 
  .styled-button h3 {
    margin: 0;
    font-size: 24px;
  }
  

  
 
  .read-more {
    font-size: 26px;
  }
  .content-section p {
    margin: 0;
    padding: 0;
    font-size: 26px;
    line-height: 2;
  }
  /* Adjust button size for larger screens */
  .styled-button-1 h3 {
    padding: 14px;
    font-size: 2.0rem !important; /* Increase button font size */
  }
  /* Adjust button size for larger screens */
  .styled-button-1, .styled-button-2 h3 {
    padding: 14px;
    font-size: 2.0rem !important; /* Increase button font size */
  }
 
  .social-icons a {
    font-size: 5.7rem; /* Larger social icon size */
  }

  .separator {
    height: 350px; /* Increase separator height for large screens */
  }

  .flex-item, .flex-item-2 ul {
    font-size: 26px; /* Increase font size for better readability */
  }
  
 
  /* Adjust spacing and layout for large screens */
  .flex-item {
    margin: 10px 0;
  }
}
/* Responsive styling for 2560px screens */




.index_footer {
  clear: both;
  width: 100%;
  color: #fff;
  padding: 10px;
  position: fixed;
  text-align: center; /* Center text for smaller screens */
  background-color: black;
  left: 0;
  bottom: 0;
  z-index: 1000;
}

.index_footer a {
  color: white; /* Change to desired link color */
  text-decoration: none; /* Remove underline */
  margin: 0 40px; /* Space between links */
  display: flex; /* Ensures the icon and text are aligned */
  align-items: center; /* Align icon with text */
}

.index_footer a:hover {
  text-decoration: underline; /* Optional: Add underline on hover */
}

.index_footer i {
  padding-right: 20px; /* Adjust padding between icon and text */
}


/* Responsive styles */
@media (max-width: 768px) {
  .index_footer {
    padding: 8px; /* Reduce padding for smaller screens */
    font-size: 12px; /* Adjust font size */
    justify-content: center !important; /* Center items on smaller screens */
  }

  .index_footer a {
    margin: 0 10px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }


}

@media (max-width: 480px) {
  .index_footer {
    padding: 4px; /* Further reduce padding for very small screens */
    font-size: 12px; /* Further adjust font size */
    justify-content: center; /* Center items on smaller screens */
    align-items: center; /* Ensure items are vertically centered */
    display: flex; /* Ensure Flexbox is applied */
    text-align: center; /* Center text for small screens */
  }

  .index_footer a {
    margin: 0 80px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }
}


/* Responsive styles for 1024px screens */
@media (min-width: 1024px) {
  .index_footer {
    padding: 12px; /* Adjust padding for 1024px screens */
    font-size: 14px; /* Slightly larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 15px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 7px; /* Adjust padding between icon and text */
  }
}

/* Responsive styles for 1440px screens */
@media (min-width: 1440px) {
  .index_footer {
    padding: 20px; /* Increase padding for 1440px screens */
    font-size: 18px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 20px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 10px; /* Increase padding between icon and text */
  }
}

/* Responsive styles for 2560px screens */
@media (min-width: 2560px) {
  .index_footer {
    padding: 35px; /* More padding for 2560px screens */
    font-size: 32px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 30px; /* Larger space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 14px; /* More padding between icon and text */
  }
}
