.nav a
{
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.font-44
{
    font-size: 44px;
    font-weight: 600;
}

.font-20
{
    font-size: 20px;
}

.font-58
{
    font-size: 58px;
    font-weight: 400;
}

.font-16
{
    font-size: 16px;
}
.font-24
{
    font-size: 24px;
}

.font-700
{
    font-weight: 700;
}

/* --- SECTION 1 STYLES --- */

.section-1 {
    width: 100%;
    height: 700px; 
    position: relative;
    /* Increase top margin slightly to push content down from the nav better */
    margin-top: 20px; 
    
    background-image: url('./images/slider-background-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Ensure all text inside is white */
    color: white; 
}

/* Ensure the button looks right on the dark background */
.section-1 .btn-outline-light {
    /* Sets the text color to white and border to white (Standard Bootstrap) */
    color: white; 
    border-color: white;
    padding: 10px 20px;
}

/* Fix: Ensure the text color is correctly applied to the title/subtitle */
.section-1 .font-44,
.section-1 .font-20 {
    color: white;
}

/* The dark overlay remains the same to create the moody look */
.section-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Adjusted gradient for a darker effect on the left */
    background: linear-gradient(
        to right, 
        rgba(0, 0, 0, 0.95) 0%, /* Very dark black on the left */
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.1) 100% 
    );
    z-index: 1; 
}

/* Ensure the content sits above the overlay */
.section-1 .row {
    position: relative;
    z-index: 2;
    height: 100%; 
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .section-1 {
        height: 400px; 
        margin-top: 80px;
    }
    .section-1 .col-md-6 {
        padding-left: 20px !important;
    }
    .section-1::before {
        background: rgba(0, 0, 0, 0.75); /* Simpler dark overlay on mobile */
    }
}

/* .section1-image
img{
    position: absolute;
    width:100vw;
} */

.font-600
{
    font-weight: 600;
}

.font-400
{
    font-weight: 400;
}

.font-30
{
    font-size: 30px;
}
.font-32
{
    font-size: 32px;
}
.section-2 , .section-3
{
    margin-top: 100px;
}
body hr
{
    width: 30%;
   margin: auto; 
   margin-bottom: 30px;
   height: 5px;
   color: blue;
}

.card-1
{
    border-style: none;
    box-shadow: 0px 0px 2px 0px rgba(148.85625, 148.85625, 148.85625, 0.98);
     padding: 27px 0px 12px 0px;
    width: 280px;
}

.section-3 img
{
    width: webkit-fill-available;
}

.section-4
{
    background-color:#29ABE2;
    width: 100%;
}
.section3-image img
{
     width:-webkit-fill-available;
}

.section-5
{
    margin-top: 120px;
}

body input,textarea
{
width: 75%;
border: none;
outline: none;
}

.form-section
{
    background-color: #efeded;
   
}

body input
{
    height: 45px;
}
.section-8 a
{
     text-decoration: none;
    color: white;
    font-size: 16px;
}
.section-8
{
    background-color: black;
}

.fotter
{
    padding-top: 20px;
    padding-bottom: 20px;
}
/*  */
.menu-list {
    position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  padding-top: 4rem;
}
.fa-bars:before, .fa-navicon:before {
    
    color: #fff !important;
}

/* When menu is active */
.menu-list.active {
    right: 0;
}

/* Close icon inside the menu */
.menu-list .fa-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #fff;
}


/*  */
.menu-list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  padding-top: 4rem;
}

/* Show menu when active */
.menu-list.active {
  right: 0;
}

/* Align menu items vertically */
.menu-list ul {
  flex-direction: column !important;
  align-items: start !important;
  padding-left: 1rem;
}

/* Make sure desktop view stays normal */
@media (min-width: 992px) {
  .menu-list {
    position: static;
    height: auto;
    width: auto;
    box-shadow: none;
    background: transparent;
    padding-top: 0;
    transition: none;
  }

  .menu-list ul {
    flex-direction: row !important;
    align-items: center !important;
    padding-left: 0;
  }
}

 .modal-content {
      border-radius: 15px;
      padding: 20px;
    }
    .opt-btn {
      background-color: #03A9F4;
      color: white;
      font-weight: 600;
      border: none;
      padding: 8px 20px;
      border-radius: 5px;
    }
    .opt-btn:hover {
      background-color: #0288D1;
    }
    .form-floating label {
      color: #777;
    }

    .nav-bar
    {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    }