


/* ===============================
   STICKY NAVBAR (GLOBAL) for the Gol:Bro scroll effect
================================ */

#main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;

}

/* ===============================
   MOBILE MENU PANEL
================================ */
@media (max-width: 768px) {

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    }

}


/* ===============================
   ADDITIONAL NAVBAR STYLES
================================ */



/* style for the container */

h1, h4, h5 {
    font-weight: bold;
    
}


/* navbar decoration */

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.nav-link.active {
    color: #0056b3 !important;  /* color for the active link navbar. */ 
    font-weight: bold; 
    transform: scale(1.1); 
}


/*  size for the name menu */ 

.navbar-nav .nav-link {
    font-size: 1.2rem;
    text-align: center;
}

.navbar-nav .nav-link.font-weight-bold {
    font-size: 1.4rem;
}


/* back to top */

.btn-primary.position-fixed {
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary.position-fixed:hover {
    background-color: #0056b3;
}

/* General Icon Styling */
i {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Email Icon */
.email-icon:hover {
    color: #007bff; /* Blue on hover. */
    transform: scale(1.2); /* Slightly enlarge the icon. */
}

/* Hover Effect for Call Icon */
.call-icon:hover {
    color: #28a745; /* Green on hover */
    transform: scale(1.2); /* Slightly enlarge the icon. */
}

/* Optional: Add Cursor Pointer for Icons. */
.email-icon,
.call-icon {
    cursor: pointer;
}


/* social media icons header */

.socials-icon {
    font-size: 1.5rem; /* icon size */
    transition: transform 0.3s ease, color 0.3s ease;/* add the hover effect */
}

/* socials icons */

.socials-icon:hover {
    color: #007bff; /* change the color on hover */
    transform: scale(1.2); /* add a affect on the icon hover */
}

/* socials icons active */

.socials-icon:active {
    transform: scale(1.1) rotate(10deg); /* add a effect on the icon */
    color: #0056b3; /* color change for the icon */
}


/* Search header */

.modal-content {
    z-index: 1050; /* Ensure modal content is on top */
}

#searchInput {
    pointer-events: auto; /* Ensure input field is interactive */
}

.modal-backdrop {
    z-index: 1040; /* Keep backdrop below the modal */
}


/* Ensure the modal content is interactive */
.modal-content {
    pointer-events: auto;
}

/* Make the input and button interactive */
#searchInput {
    pointer-events: auto;
}

.modal {
    z-index: 1050; /* Bootstrap default */
}

.modal-content {
    background-color: #f9f9f9; /* Light background */
    color: #333; /* Dark text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}

#searchInput {
    background-color: #fff; /* White input background */
    border: 1px solid #007bff; /* Blue border */
    border-radius: 5px; /* Slightly rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #333; /* Dark text */
}

#searchInput:focus {
    border-color: #0056b3; /* Darker blue on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Blue glow */
}

.modal-header {
    border-bottom: 1px solid #ddd; /* Light border for separation */
}

.modal-header .btn-close {
    filter: brightness(80%); /* Make the close button slightly lighter */
}


/* headers */

header {
    border-bottom: 2px solid #ddd;  /* Light bottom border for separation navbar and header */
}

/* headers img */

header img {
    max-height: 50px;
}


 
 
 /* ===============================
 ADDITIONAL NAVBAR   /* menu for the Hamburger
================================ */
 


#navbar-menuDrawer .menu-header {
    padding: 1.5rem 1.5rem; /* More padding */
    border-bottom: 1px solid #2407ff; /* Lighter border Menu */
}
#navbar-menuDrawer .menu-header h5 {
    font-weight: 700; /* Bolder font */
    font-size: 1.25rem; /* Larger font size for menu header */
}
#navbar-menuDrawer a.nav-link {
    display: block;
    padding: 1rem 1.5rem; /* Increased side padding */
    border-bottom: none; /* Remove border from links */
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}
#navbar-menuDrawer a.nav-link:hover,
#navbar-menuDrawer a.nav-link:focus { /* Include focus state */
    background-color: var(--primary-color);
    color: white; /* White text on hover for contrast */
}

/* End*/


  /* ===============================
   MENU DRAWER – MOBILE OPTIMIZATION
    ================================ */


@media (max-width: 768px) {

  /* Header (top area of menu) */
  #navbar-menuDrawer .menu-header {
    color: #070707;

  }
}

 /* ===============================
       ADDITIONAL NAVBAR STYLES
================================ */
 

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
header.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

#navbar-menuDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background-color: rgba(255,255,255,0.97);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1200;
}

#navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: none;
  z-index: 1150;
}
   
/* =======================================
      CUSTOM CSS FOR PROFESSIONAL APPEARANCE
   ======================================== */

/* Header Styling */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #ffffff !important; /* Ensure a clean white background */
    z-index: 1020; /* Keep it above other content */
}

/* Search Input Styling */
.search-wrapper {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.search-input {
    background-color: transparent !important;
    padding-left: 0;
    transition: width 0.3s ease;
    width: 120px; /* Default width */
}

.search-input:focus {
    width: 200px; /* Expanded width on focus */
}

.search-btn {
    color: #495057;
}

/* Custom Hamburger Menu Styling */
.custom-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #343a40;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.custom-toggler.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.custom-toggler.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.custom-toggler.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Navigation Links Styling (Desktop/Open Menu) */
.nav-link {
    padding: 10px 15px !important;
    color: #343a40 !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s, transform 0.2s;
}

.nav-link:hover {
    color: #007bff !important; /* Primary color on hover */
    transform: translateY(-1px);
}

/* Underline effect on hover/active */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Nav Line for animation (mostly for mobile/open menu) */
.nav-line {
    display: none; /* Hide or style this based on desired effect */
}




/* navbar-logo.css was removed or is missing from the server; use inline fallback styles to avoid 404 */
    /* Basic navbar logo styles fallback (keep these small and specific) index.Html navBa logo*/
/* #navbar-logo {
    max-height: 48px;
    height: auto;
    width: auto;
    display: block;
}
.navbar-flex3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar-logoLink {
    display: inline-block;
    line-height: 1;
}
/* Small responsive tweak */
/* @media (max-width: 576px) {
    #navbar-logo {
    max-height: 40px;
    }
} */ 

#navbar-siteBrand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

#navbar-logoLink {
  display: block;
  width: auto;
  height: 100px; /* Adjust as needed to control logo size */
  margin-top: 10px; /* Adjust as needed to vertically center the logo */
  
}
/* 
Make navbar shorter nav */
#main-navbar .container {
  padding-top: 8px;
  padding-bottom: 8px;
} 

#navbar-logo {
  height: 100%;
  width: auto;
  max-height: 60px;

}

    /* hide the smaller/standard logos when the big logo is shown */
@media (max-width: 768px) {
  #navbar-siteBrand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;             /* adjust height here */
    padding: 0;
    margin: 0;
  }

  #navbar-logoLink {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  #navbar-logo {
    height: 150px;       /* adjust size here */
    margin: 0;
    max-height: 250px;
    

  }
}


/* End of nav-BarLogo2.css */