
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 85px;
  position: relative;
  background-color: #fffdfd;
}



.menu-button {
  background: none;
  border: none;
  color: rgb(3, 1, 1);
  font-size: 40px;
  cursor: pointer;
  display: inline;
}

.logo {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo img {
  height: 70px;
  width: auto;
}

.whatsapp-icon {
  width: 70px;
  height: 70px;
  margin: 5px;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.2);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #3981a5;
  padding: 30px 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 999;
}

.menu-open .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.navigation a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 18px;
  display: inline-block;
  transition: 0.3s ease;
}

.navigation a:hover {
  color: #ffff00;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  /* overflow: hidden; */
  
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu-items::-webkit-scrollbar {
  display: none;
}

.menu-item {
  position: relative;
  width: 300px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  display: flex
;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  transition: transform 0.3s ease;
  gap: 15px;
}

.menu-item img {
  width: 100%;
  height: 100%;
  max-width: 250px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.menu-item span {
  margin-top: 5px;
  font-size: 18px;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  width: 100%;
  border-radius: 5px;
}

.menu-item:hover {
  transform: scale(1.1);
}

.menu-link {
  display: block;
  margin-top: 0px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
}

.menu-link:hover {
  color: yellow;
}

.navigation {
  margin-top: 10px;
}

/* ======================================New css added from here ================================ */

.carousel-item {
  height: 100vh;
  background: no-repeat center center scroll;
  background-size: cover;
  background-color: #000;
}

.hero-title {
  z-index: 3;
  color: rgb(255, 255, 255);
  text-decoration: none;
  white-space: normal;
  font-weight: 300;
  font-size: 85px;
  padding-bottom: 16px;
  backdrop-filter: none;
  filter: none;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
  margin-top: -30px;
}

.menu-toggle-button {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-button,
.close-icon {
  /* font-size: 20px; */
  font-weight: 200;
  color: #111 !important;
  transition: opacity 0.3s ease;
}

.close-icon {
  display: none;
}

/*================ Responsive code starts here ================ */
/* Extra Small Devices (Phones, up to 576px) */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 20px;
  }

  .menu-button {
    font-size: 30px;
  }

  .logo img {
    height: 50px;
  }

  .navigation a {
    display: block;
    font-size: 16px;
    padding: 8px;
  }

  .menu-items {
    flex-direction: column;
    align-items: center;
  }

  .menu-item {
    width: 90%;
    margin: 10px 0;
  }

  .menu-item img {
    max-width: 100%;
  }

  .menu-link {
    font-size: 14px;
  }

  .hero-title {
    font-size: 40px;
    padding: 10px 0;
    text-align: center;
  }
  
  .info p {
    text-align: center;
  }
}

/* Small Devices (Tablets, 577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .navbar {
    padding: 10px 40px;
    flex-wrap: wrap;
  }

  .menu-button {
    font-size: 36px;
  }

  .logo img {
    height: 60px;
  }

  .menu-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-item {
    width: 45%;
  }

  .menu-item img {
    max-width: 100%;
  }

  .menu-link {
    font-size: 15px;
  }
  
}

/* Medium Devices (Small Laptops, 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    padding: 10px 60px;
  }

  .logo img {
    height: 65px;
  }

  .menu-items {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .menu-item {
    width: 40%;
    margin: 10px;
  }

  .menu-link {
    font-size: 16px;
  }
 
}

/* Large Devices (Desktops, 1025px and above) */
@media (min-width: 1025px) {
  .navbar {
    padding: 0 85px;
  }

  .menu-item {
    width: 300px;
  }

  .menu-item img {
    max-width: 250px;
  }

  .menu-link {
    font-size: 15px;
  }

  .navigation-menus {
    display: flex;
    justify-content: start;
    align-items: center;
    /* background: #249edc; */
    background: #69B8CF;

    
    margin-top: -29px;
    margin-bottom: 20px;
  }
  .navigation-menu-child{
    display: flex;
    justify-content: start;
    align-items: center;
    /* background: #3f3c3c; */
    width: 80%;
    margin: 10px auto;
  }

 .dropdown-menu a{
  font-size: 18px;
 }
 .hero-title{
  margin-top: -46px !important;
 }
}

/*================ Responsive code ends here ================ */

/* ================================= Why RENAISSANCE? ============================= */

.benefits {
  background-color: #3981a5;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.benefits .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: white;
}

.benefits .benefits-item__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.benefits .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.benefits .benefit-item__img img {
  width: 90px;
  height: auto;
  opacity: 0.8;
}

.benefits .benefit-item p {
  margin-top: 10px;
  font-size: 1.2em;
}

/* Services Section */

.services-section {
  background-color: #3981a5;
  padding: 30px;
  text-align: center;
  border-radius: 0px;
  max-width: 1273px;
  margin: 40px auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.services-section h2 {
  color: #fff;
  font-size: 2.5em;
}

.subheader {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0.8;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.service-box {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.service-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-box .overlay a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.service-box .overlay a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.service-box:hover img {
  /* opacity: 0.3; */
  transform: scale(1.1);
  transition: .4s;
}

.service-box:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
}

/* Contact Section */

.contact.section {
  padding: 60px 0;
  background-color: #fff;
}

.info-item {
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.info-item i {
  font-size: 32px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.info-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.info-item p {
  color: #777;
  margin: 0;
  font-size: 14px;
}

.contact-form {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
}

.btn-danger {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  background-color: #e74c3c;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-danger:hover {
  background-color: #c0392b;
}

/* About Section */

.about-title {
  font-size: 1.4em;
  display: inline-block;
  margin-bottom: 20px;
}

.about-header {
  background: #4b4bbf;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
}

.about-section-main{
  padding: 30px;
  /* background: white; */
  margin-bottom: 20px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  text-align: center;
}

.about-section {
  padding: 30px;
  background: white;
  margin-bottom: 20px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  text-align: start;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  height: 300px;
}

.highlighted-text {
  background: #ffc107;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 16px;
  color: #fff;
}

.about-btn {
  background: #3981a5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
}

.about-btn:hover {
  background: #69B8CF;
}

/* Services */

.service-item {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.service-item:hover img {
  transform: scale(1.1);
}

.service-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
}

/* .service-item:hover .service-text {
  opacity: 1;
} */

.service-text:hover {
  color: rgb(255, 255, 255);
}

/* Features Section */

.features {
  padding: 2rem;
}

.feature-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  background: rgba(78, 95, 133, 0.7);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-item p {
  font-size: 1rem;
  color: #ffffff;
}

@media (min-width: 640px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Photograph Section */

.photograph-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  padding: 0 1rem;
}

.photo-box {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .photo-box {
    width: 45%;
  }
}

@media (min-width: 1024px) {
  .photo-box {
    width: 30%;
  }
}


.footer-background{
  background-color: #3981A5;
}

