:root {
    --primary-color: #00a8cc;
    --secondary-color: #035d8d;
    --accent-color: #f77f00;
    --dark-color: #292929;
    --light-color: #caf0f8;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-dark: #6c757d;
}
/*#region Typography rule */
html {
    font-size: 16px; /* 1rem = 16px */
    color:black;
}

.hero-title {
    font-size: 4rem; /* 48px */
}
.section-heading {
    font-size: 2rem; /* 32px */
}
.subheading {
    font-size: 1.25rem; /* 20px */
}
.paragraph-text {
    font-size: 1rem; /* 16px */
}
.button-text {
    font-size: 0.875rem; /* 14px */
}
.caption-label {
    font-size: 0.75rem; /* 12px */
}
.navbars-links {
    font-size: 1rem; /* 16px */
    font-weight: 500;
   
    letter-spacing: 0.5px;
}

/*#endregion Typography rule */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-family: 'Comic Neue', cursive; */
    /* font-family: 'Poppins', sans-serif; */
    line-height: 1.6;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* no haburger border modifying bootstrap*/
.no-border {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.no-border:focus,
.no-border:active,
.no-border:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}


/*#region    ---------Header & Navigation  ---------- */


/*#region Header              */
.header {
    /* background: var(--dark-color); */
    background: #05123E;
     color:white;
    /* color: var(--dark-color) !important; */
    padding: 0.5rem 0;
}
.header-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/*#endregion Header              */

/*#region Navigation */
.navbar {
    padding: 0px;
    /* padding: 1rem 0; */
    position: sticky;

    /* background: #05123E; */
    background: #274993;
    
    
    /* background: rgba(255, 255, 255, 0.95) !important; */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;

    height:200px;
}
.navbar.shrink {
  height: 70px;
}

.navbar-brand {
    /* font-weight: 700;
    font-size: 1.5rem; */
    /* color: var(--primary-color) !important; */
    color:white;
}
.navbar-brand img{
 height:40px;
 top:0px;
 margin:0px;
}
@media (min-width: 769px) {
  .navbar,
  .navbar .container,
  .navbar-nav,
  .navbar-nav .nav-item {
    height: 60px; /* Set your desired navbar height */
  }
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 100%; /* Fill parent's height */
}

.navbar-nav .nav-link {
    /* color: var(--dark-color) !important; */
    color:white;
    /* font-weight: 500; */
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.phone-appear{
    display: none;
}
/*#endregion Navigation */

/*#region Modal for profile */
.modal-content.custom-modal {
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: none;
}

.modal-body .modal-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.list-group-flush .profile-item {
  background: transparent;
  color: white;
  font-size: 1.1rem;
  padding: 12px 15px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}

.list-group-flush .profile-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffe;
}
/*#endregion */

/*#region Modal for language and currency */
.lang-modal {
  border-radius: 15px;
  padding: 0 0.5rem;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: 500;
  font-size: 1.1rem;
  color: #555;
  border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
  color: #007bff;
  border-bottom: 3px solid #007bff;
  background-color: transparent;
}

.lang-list li {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-list li:hover {
  background-color: #f1f1f1;
}

.lang-list li.active {
  font-weight: bold;
  color: #007bff;
}

.lang-list i {
  font-size: 2rem;
}

.currency-list li {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;

}

.currency-list li span {
  color: #666;
  font-weight: 500;
}

.currency-list li:hover {
  background-color: #f1f1f1;
}

.currency-list li.active {
  font-weight: bold;
  color: #007bff;
}

.currency-list li.active i {
  margin-left: 5px;
  font-size: 2rem;
}


/*#endregion Modal for language and currency  */

/*#endregion Modal for profile */

/*#region       achon hover      */
.custom-hover-dropdown {
  position: relative;
}

.custom-hover-dropdown .dropdown-box {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #0b2475;
  /* border: 1px solid #ddd; */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  padding: 0.5rem 0;
}

.custom-hover-dropdown:hover .dropdown-box {
  display: block;
}

.dropdown-box .dropdown-item {
  padding: 0.5rem 1rem;
  color: rgb(241, 241, 241);
  text-decoration: none;
}

.dropdown-box .dropdown-item:hover {
  background-color: #05123E;
}
/*#endregion    achon hover      */
 
/*#endregion ---------Header & Navigation ----------- */


/*#region    ---------Footer section      -----------*/
  /*#region Footer Styles */
  .footer {
    background: #05123E;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
  }

  .footer-content {
    position: relative;
    z-index: 2;
    
  }

  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
  }

  .footer-logo i {
    color: var(--primary-color);
    font-size: 2.5rem;
  }

  .footer-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
  }

  .footer-links a i {
    font-size: 0.9rem;
    opacity: 0.7;
  }

  .contact-info {
    margin-bottom: 1.5rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
  }

  .contact-text {
    flex: 1;
  }

  .contact-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 2px;
  }

  .contact-text span {
    color: var(--light-color);
    font-size: 0.9rem;
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 204, 0.4);
  }
  .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .copyright {
    color: var(--light-color);
    font-size: 0.9rem;
  }

  .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-bottom-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-bottom-links a:hover {
    color: var(--accent-color);
  }

  /*#endregion Footer Styles */


  /*#endregion ---------Footer section     ---------- */

@media (max-width: 768px) {
    body{
      padding-top: 40px;
    }
    .header{
      display: none;
    }


    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
    
    .search-box {
        padding: 15px;
    }
    
    .filter-btn {
        margin: 5px;
        padding: 10px 20px;
    }
    .hero {
        padding-top: 100px;
     }
     .hero h1 {
         font-size: 2.5rem;
     }
     
     .hero p {
         font-size: 1.1rem;
     }
     
     .section-title {
         font-size: 2rem;
     }
     .navbar{
         position: fixed;
         height:auto;
     }
    .phone-appear{
     display: flex;
    }

    .footer {
      padding: 40px 0 0;
  }
  
  .footer-logo {
      font-size: 1.5rem;
      justify-content: center;
      text-align: center;
  }
  
  .footer-section {
      text-align: center;
      margin-bottom: 30px;
  }
  
  .footer-section h5::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .contact-item {
      justify-content: center;
      text-align: left;
  }
  
  .social-links {
      justify-content: center;
  }
  
  .newsletter-input {
      flex-direction: column;
  }
  
  .newsletter-btn {
      align-self: center;
      width: fit-content;
  }
  
  .footer-bottom-content {
      flex-direction: column;
      text-align: center;
  }
}


 