
/* RESET + GLOBAL FIXES */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}/* HEADER BASE */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #eee;
  background: #ffffff;
  position: relative;
  z-index: 100;
}

.logo {
  height: 60px;
}

/* DESKTOP NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  font-size: 18px;
  color: #0f2f45;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  color: #0b5070;
  transform: translateY(-3px); /* small jump on hover */
}

/* HAMBURGER (HIDDEN ON DESKTOP) */
.hamburger {
  font-size: 32px;
  cursor: pointer;
  display: none;
  color: #0f2f45;
}

/* MOBILE FULLSCREEN MENU (HIDDEN BY DEFAULT) */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  align-items: center;
  justify-content: flex-start;
  transition: top 0.4s ease;
  z-index: 999;
}

/* When active */
.menu-show {
  top: 0;
}

/* Close icon */
.close-menu {
  position: absolute;
  right: 30px;
  top: 25px;
  font-size: 36px;
  color: #0f2f45;
  cursor: pointer;
}

/* Mobile menu items */
.mobile-menu ul {
  list-style: none;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #0f2f45;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 900px) {
  /* Hide desktop menu on small screens */
  .main-nav {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }
}
/* HERO SECTION */
.rrr-hero {
  height: 90vh;
  background-image: url("/assets/environ-bg.png");
  background-repeat: no-repeat;

  /* 👇 KEY PART */
  background-size: cover;           /* fills width */
  background-position: center;      /* crops top & bottom only */

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .rrr-hero {
    height: 60vh; /* Adjust height for smaller screens */
    background-size: cover; /* Ensure background covers the full section */
    background-position: center center; /* Keeps the image centered */
  }
}

@media (max-width: 480px) {
  .rrr-hero {
    height: 50vh; /* Further adjust height for very small screens */
    padding: 0 15px; /* Reduce padding on very small screens */
  }

  .rrr-hero h1 {
    font-size: 1.5rem; /* Adjust font size for better visibility */
  }
}

.rrr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.rrr-hero {
  position: relative;
}

/* Tablet */
@media (max-width: 900px) {
  .rrr-hero h1 {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rrr-hero h1 {
    font-size: 24px;
    letter-spacing: 1.2px;
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .rrr-hero h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }
}


/* CONTENT BLOCK */
.rrr-content {
  background: #0b5070;
  color: #fff;
  padding: 60px 80px;
  line-height: 1.8;
}
.rrr-content p {
  max-width: 1200px;
  margin: auto auto 25px;
}

/* ICON SECTION */
.eco-section {
  padding: 60px 40px;
  background: #fff;
}

.eco-icons {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.eco-item {
  text-align: center; /* Centers the text below the image */
}

.eco-item img {
  width: 120px;
  margin-bottom: 15px;
}

.eco-item span {
  display: block;
  font-size: 16px; /* Adjust the font size as needed */
  color: #333; /* You can change the color as well */
}

@media (max-width: 550px) {
  .eco-icons {
    flex-direction: column;
    gap: 30px;
  }

  .eco-item img {
    width: 90px;
    margin: 0 auto;
  }

  .eco-item span {
    font-size: 14px;
  }
}


#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 450px) {
  .rrr-content{
  padding: 30px;
  }
}


/*Preloader*/
/* ===============================
   SITE PRELOADER (ISOLATED)
================================ */

#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background overlay */
#site-preloader .preloader-overlay {
  position: absolute;
  inset: 0;
  background: #053c55; /* Indmark-style overlay */
}

/* Center content */
#site-preloader .preloader-content {
  position: relative;
  z-index: 2;
}

/* Logo container */
#site-preloader .logo-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
#site-preloader .preloader-logo {
  width: 55px;
  height: auto;
  z-index: 2;
}

/* Rotating outline */
#site-preloader .loader-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.6);
  animation: spin 1.2s linear infinite;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  #site-preloader .logo-wrapper {
    width: 90px;
    height: 90px;
  }

  #site-preloader .preloader-logo {
    width: 45px;
  }
}