/* public/css/header.css */

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This can be used to prevent horizontal scrolling */
}
#topbar {
    background-color: rgb(0, 30, 76);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    border-bottom: 10px;
    border-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}

.contact-info,
.nav-links {
    display: flex;
    align-items: center;
    color: aliceblue;
}

.contact-info i,
.nav-links a {
    margin-right: 10px;
    color: #333;
    text-decoration: none;
}

.contact-info a,
.nav-links a {
    color: #fff6f6;
    text-decoration: none;
    font-weight: bold;
}

.text p {
    font-size: 26px;
    font-weight: bold;
    color:rgb(255 255 255); /* Change the color to your preference */
    font-family: Metropolis-SemiBold;
    text-align: center;
    word-spacing: 3px;
    /* padding:14px; */
    /* line-height: 3.8rem; */


  }
  .text .approval-line {
    font-size: 20px;
    color:rgb(255 255 255);
    margin-top: 5px;
    display: block;
    text-align: center; /* Align the text at the center */
}


/* second step */
/* Center Section Styles */
#center-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(0, 30, 76);
  padding: 15px;
}

#center-section .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#center-section .logo,
#center-section .text,
#center-section .logo1 {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*#center-section .logo img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    padding: 10px;*/
/*}*/

#center-section .logo img {
    max-width: 300%;
    height: auto;
    padding: 0px;
    width: 180%;
    height: 20%;
    margin-left: -140%;
}

/*#center-section .logo img {*/
/*    max-width: 300%;*/
/*    height: auto;*/
/*    padding: 0px;*/
/*    width: 276%;*/
/*    height: 20%;*/
/*    margin-left: -245%;*/
/*}*/





/* Styles for mobile view (767px and below) */
@media (max-width: 767px) {
  #center-section {
    flex-direction: column;
  }

  #center-section .container {
    flex-direction: column;
  }

  #center-section .logo,
  #center-section .logo1{
    width: 21%;
    flex: 0 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #center-section .text {
    flex: none; /* Reset flex property for vertical alignment */
    width: 100%;
    text-align: center;
    white-space:wrap;
    margin-bottom: 20px; /* Adjust as needed */
  }
}
/* Mobile View Styles */

/* end */

/* third step start */
/* Mobile Menu Toggle Button */
.icon {
    font-size: 24px; /* Adjust the font size as needed */
    cursor: pointer;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu li {
    margin-bottom: 10px; /* Adjust the spacing between menu items */
}

#mobile-menu a {
    text-decoration: none;
    color: #333; /* Adjust the color as needed */
    font-weight: bold;
}
hr.solid {
    border-top: 1px solid #fff;
    border-radius: 1px;
    margin-top: 1px;
    margin-bottom: -1px;
}

/* Dropdown Content (Initially hidden) */
.dropdown-content {
    display: none;
}
.dropdown-content.show {
    display: block;
}

/* Your Existing Desktop Menu Bar (Hidden on Small Screens) */
/* Your Existing Desktop Menu Bar */
#desktop-menu {
    text-align: center;
    background: rgb(239, 138, 67);
    padding: 10px;
}

#desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;

}
#desktop-menu li {
    margin-right: 20px; /* Adjust the spacing between menu items */
    display: inline-block;

}

#desktop-menu a {
    text-decoration: none;
    color: #000000;; /* Adjust the color as needed */
    font-weight: bold;
    font-size: 19px;
    font-family: system-ui;

    border-bottom: 1px solid #ef8a43;

}


/* third step end */

/* Media query for small screens */
@media (max-width: 767px) {
    .contact-info,
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info i,
    .nav-links a {
        margin-right: 0;
        margin-bottom: 5px;
    }
    /* second step */
    .desktop-view {
        display: none; /* Hide desktop view elements in mobile view */
    }

    .mobile-view {
        display: block; /* Show mobile view elements in mobile view */
    }

    .text {
        font-size: 14px; /* Adjust font size for mobile view */
    }

    .logo {
        margin-bottom: 0; /* Remove spacing between logos in mobile view */
    }
    
/*    #center-section .logo img {*/
/*    max-width: 300%;*/
/*    height: auto;*/
/*    padding: 0px;*/
/*    width: 304%;*/
/*    height: 20%;*/
/*    padding: 13px;*/
/*    margin-left: -16%;*/
/*}*/
    /* end */
}


@media (min-width: 768px) {
    /* Desktop View Styles */
    .icon {
        display: none; /* Hide the mobile menu icon */
    }

    #mobile-menu {
        display: none; /* Hide the mobile menu */
    }

    #desktop-menu {
        display: block; /* Show the desktop menu */
    }
}

@media (max-width: 767px) {
    /* Mobile View Styles */
    #desktop-menu {
        display: none; /* Hide the desktop menu */
    }

    #mobile-menu {
        display: block; /* Show the mobile menu */
    }

    .icon {
        display: block; /* Show the mobile menu icon */
    }
    .text p {
        font-size: 20px;
        font-weight: bold;
        color: rgb(255 255 255); /* Change the color to your preference */
        font-family: Metropolis-SemiBold;
        text-align: center;
      }
      .text .approval-line {
        font-size: 12px;
        color: rgb(255 255 255);
        margin-top: 5px;
        display: block;
        text-align: center; /* Align the text at the center */
    }
}
@media (min-width: 992px) {
    #mobile-menu {
        display: none;
    }

    .dropdown-content.active {
        display: block;
    }
}

/* mobile screen */
@media only screen and (max-width: 600px) {
    #topbar {
        padding: 8px 0;
        font-size: 14px;
    }
}

/* Responsive Styles for Medium Screens (e.g., Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    #topbar {
        padding: 10px 0;
        font-size: 16px;
    }
}

/* Responsive Styles for Large Screens (e.g., Desktops) */
@media only screen and (min-width: 1025px) {
    /*#topbar {*/
    /*    padding: 12px 0;*/
    /*    font-size: 18px;*/
    /*}*/
}

/* end */
