/* .navbar */
/* Remove hover effects on main menu links */


#menu01-0 {    
  background-color:#fff9ef;
  border-bottom: 1px solid #eee; 
  padding: 10px 20px ; 
  position: sticky;
  top: 0;                
  z-index: 1030; 
  
}
.menu{
  position: fixed;
}

#menu01-0 .navbar {
  background-color: #fff9ef !important; 
 
}

#menu01-0 .navbar-toggler {
  background: transparent !important;  
  border: none !important;             
  box-shadow: none !important;      
  padding: 6px;
}
#menu01-0 .navbar-nav {
  display: flex;
  align-items: center;
}




/* Logo */
#menu01-0 .navbar-brand img {
  max-height: 40px;
  max-width: 180px; 
  margin-left: 10px; 
}
/* Main nav link hover effect */
.menu01 .navbar-nav .nav-link {
    color: black !important;         /* Normal text color */
    text-decoration: none !important;  /* Remove underline */
    transition: all 0.3s ease !important; /* Smooth hover effect */
    position: relative;
    background-color: transparent !important; /* No hover background */
    box-shadow: none !important; 
}

/* Hover: lift link a bit and add shadow */
.menu01 .navbar-nav .nav-link:hover {
    transform: translateY(-8px) !important; /* Move link up slightly */
    text-decoration: none !important;
    
    color: #e79f19 !important; /* Keep text color */
}



#menu01-0 .nav-link.active,
#menu01-0 .nav-link:focus {
  color: #f7b500 !important;
  font-weight: 500;

}


#menu01-0 .book-btn {
  background-color: #ecba31 !important;   
  color: #222 !important; 
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;        
  padding: 6px 14px;
  transition: background 0.3s ease;
  display: inline-block;
 
}

#menu01-0 .book-btn:hover {
  background-color: #e0a200 !important;   
}


@media (min-width: 1300px) {
  #menu01-0 {
    padding: 0px 150px;
  }

  #menu01-0 .navbar-brand img {
    max-width: 220px;
    margin-left: 40px;
  }

  #menu01-0 .book-btn {
    font-size: 20px;
    padding: 10px 20px;
  }
}



/* Hero Section */
.hero-section {
  background-color: #fff9ef;   
  padding: 80px 0px; 
}
.container{
  padding: 0px;
 
}

.hero-section h1 {
  font-size: 4rem;           
  font-weight: 700;          
  color: #222;                
  line-height: 1.2;
  margin-bottom: 20px;

}


.hero-section p {
  font-size: 1.125rem;        
  color: #555;                
  margin-bottom: 30px;
  max-width: 500px;           
}


.hero-section .btn-warning {
  background-color: #f3c957 !important; 
  color: #111 !important;                
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  transition: background 0.3s ease;
}

.hero-section .btn-warning:hover {
  background-color: #f3bb23 !important;  
}

.hero-section .btn-outline-primary {
  border: 2px solid #33b3d3;  /* blue border */
  color: #33b3d3;
  background-color: white !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  margin-left: 10px;          
  background: transparent;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-primary:hover {
  background-color: #19acd1 !important;
  color: white;
}


.hero-section img {
  border-radius: 12px;       
  max-width: 100%;
  height: auto;
}

/*  mobile phones */
@media (max-width: 576px) {
  #menu01-0 {
    padding: 10px 15px;
  }

  #menu01-0 .navbar-brand img {
    max-height: 30px;
    margin-left: 10px;
  }
  #menu01-0 .nav-link {
    margin: 5px 0;
    font-size: 13px;
  }
  #menu01-0 .book-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 6px 10px;
  }

  .hero-section {
    padding: 40px 15px;
  }
  .hero-section h1 {
    font-size: 2rem;
    text-align: center;
  }
  .hero-section p {
    font-size: 0.95rem;
    text-align: center;
  }
  .hero-section .btn-warning,
  .hero-section .btn-outline-primary {
    display: block;
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
  }
}


/* services */
.services-section{
 background-color: rgb(247, 244, 244);
}
.services-section h2{
  font-size: 3rem;
  line-height: 1.4;
 
}

.services-section h2 .text-warning {
  color: #ee890f !important; 
}

.services-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}


.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-5px);
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45); 
}

.service-card h4 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

/* Call Button */
.call-btn {
  background: #f3c957 !important;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 6px;
  color: black !important;
}

.call-btn:hover {
  background: #f3bb23 !important;
  color: #fff;
}



/* why mirai */
.why-choose {
  background: #fff9ef; 
}
.why-choose h2{
font-size: 1.5rem;
}


.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); 
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.feature-card .icon {
  font-size: 2.5rem;
  color: #007bff !important;
}


@media (max-width: 500px) {
  .service-card,
  .feature-card {
    margin: 5px 13px;  
  }
}


/* gallery section with price */
.shop-items {
  display: flex;
  flex-wrap: wrap;            
  justify-content: center;    
  gap: 20px;                 
  max-width: 1400px;         
  margin: 0 auto; 
}

.shop-items .mbr-gallery-item {
  flex: 0 0 calc(33.333% - 20px); 
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .shop-items .mbr-gallery-item {
    flex: 0 0 45%; 
    max-width: 45%;
  }
}

@media (max-width: 576px) {
  .shop-items .mbr-gallery-item {
    flex: 0 0 100%;  
    max-width: 100%;
  }
}

/* hover */

.navbar-nav .dropdown:hover .dropdown-menu {
display: block;
}
.navbar{
background-color: #fcfbf9 !important;
align-items: center;
}
.navbar a{
color: black !important;
}
.navbar a:hover {
background-color: #d1d0cd; /* <-- your custom bg color */
color: #000 !important; /* text color on hover */
}

.navbar .container{
gap: 40px;
}
.navbar-nav{
gap: 30px;
font-size: 1.1rem;
}
/* Make mega menu full-width */
.dropdown-menu.mega-menu {
max-width: 100%;
left: 0;
right: 0;
padding: 2rem;
margin: 0 auto; 
border-top: 3px solid #0d6efd; 
box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.mega-menu .col-md-3 h6 {
font-weight: bold;
margin-bottom: .75rem;
}
.mega-menu .col-md-3 a {
display: block;
color: #212529;
text-decoration: none;
padding: .25rem 0;
}
.mega-menu .col-md-3 a:hover {
color: #0d6efd;
}
.navbar .dropdown-menu.mega-menu {
display: block; 
opacity: 0; 
visibility: hidden; /* hidden by default */
transform: translateY(25px); 
transition: all 0.8s ease; /* smooth effect */
}

.navbar .nav-item.dropdown:hover .dropdown-menu.mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0); 
}


/* about section */

    .about-section {
    padding: 80px 0;
    background-color: #fff;
  }

  .about-img img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-title {
    font-weight: 800;
    color: #0b2239;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  }

  .about-section p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  @media (max-width: 992px) {
    .about-section {
      text-align: center;
      padding: 60px 20px;
    }

    .about-img img {
      margin-bottom: 30px;
    }

    .about-content {
      align-items: center;
    }
  }

  @media (max-width: 576px) {
    .about-section {
      padding: 50px 15px;
    }

    .about-section p {
      font-size: 0.95rem;
    }

    .about-title {
      font-size: 1.6rem;
    }
  }

  /* Our Mission */
    .mission-vision-section {
    background-color: #f9fafc;
    padding: 90px 0;
  }

  .section-title {
    font-weight: 800;
    color: #0b2239;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  }

  .section-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
  }

  .mission-card,
  .vision-card {
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
  }

  .mission-card:hover,
  .vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .card-title {
    font-weight: 700;
    color: #0b2239;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
  }

  .card-text {
    color: #333;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
  }

  .icon i {
    color: #ffb703;
  }

  @media (max-width: 768px) {
    .mission-vision-section {
      padding: 60px 20px;
    }
  }
 .cta-section {
    background-color:  #fff9ef !important;
  }

  .cta-section h2 {
    font-size: 2rem;
    
  }

  .cta-section p {
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }

  .cta-section .btn-warning {
    background-color: #ecba31 !important;
    border: none;
    transition: all 0.3s ease;
    color: #000 !important;
  }

  .cta-section .btn-warning:hover {
    background-color: #f3bb23  !important;
    transform: translateY(-5px);
    color: black !important;
  }

  @media (max-width: 768px) {
    .cta-section h2 {
      font-size: 1.6rem;
    }
    .cta-section p {
      font-size: 0.95rem;
    }
  }















   









