@font-face {
  font-family: 'Charlie Display';
  src: url('<?= base_url("assets/charlie-display-font-1756172436-0/charlie-display-3.ttf")?>') format('truetype');

}

@font-face {
  font-family: 'Charlie Display h1';
  src: url('<?= base_url("assets/charlie-display-font-1756172436-0/charlie-display.ttf")?>') format('truetype');

}

@font-face {
  font-family: 'Charlie Display h2';
  src: url('<?= base_url("assets/charlie-display-font-1756172436-0/charlie-display-bold.ttf")?>') format('truetype');

}

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 100;
  font-family: 'Charlie Display';
  overflow-x: hidden;
}

/* Headings */
h1 {
  font-size: 52px;
  font-weight: 900;
  font-family: 'Charlie Display h1';
}

h2 {
  font-size: 42px;
  font-weight: 200;
  font-family: 'Charlie Display h3';
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 500;
}

h6 {
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Charlie Display h1';
  }

  h2 {
    font-size: 18px;
    font-weight: 200;
    font-family: 'Charlie Display';
  }

  h3 {
    font-size: 12px;
    font-weight: 700;
  }

  h4 {
    font-size: 12px;
    font-weight: 600;
  }

  h5 {
    font-size: 10px;
    font-weight: 500;


  }

  h6 {
    font-size: 12px;
    font-weight: 400;
  }
}

p {
  font-size: 16px;
  font-weight: 300;
}

/* Reset */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input {
  outline: none;
  border: none;
}



img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Main color */
.green-text {
  color: #28a745;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #fff;
  z-index: 9999;
}

.drop {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop img {
  width: 70px;
  margin-top: 120px;
  z-index: -1;
}

.ripple {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 20px;
  background: rgba(0, 119, 200, 0.2);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  z-index: 1;
}

.loader-logo img {
  width: 120px;
}

.loader-text {
  font-size: 29px;
  font-weight: 700;
  color: #0077c8;
  letter-spacing: 1px;
  opacity: 0;
}

/* Content */
#content {
  display: none;
  opacity: 0;
}

/* Navbar */
.navbar-brand img {
  height: 15%;
  margin-right: 8px;
}

.nav-link {
  font-weight: 900 !important;
  margin: 0 8px;
  font-family: 'inter-tight', sans-serif !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0077c8 !important;
}

.brochure-btn {
  background: #0077c8;
  color: #fff !important;
  font-weight: 600;
  border-radius: 12px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s ease;
}

.brochure-btn:hover {
  background: #005fa1;
}

.text-bule {
  color: #0077c8;
}

.offcanvas {
  width: 70% !important;
  background: #f8f9fa;
  border-radius: 0 20px 20px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.offcanvas-header {
  border-bottom: 1px solid #ddd;
}

.offcanvas-body .nav-item {
  margin: 15px 0;
}

.offcanvas-body .nav-link {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333 !important;
  transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
  color: #0077c8 !important;
  transform: translateX(8px);
}

.offcanvas-title img {
  width: 150px;
}

@media only screen and (max-width: 600px) {
  .brochure-btn {
    width: 150px !important;
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  /* border-radius: 12px; */
  width: 100% !important;
  top: 100%;
  right: 0%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-menu img {
  max-height: 80px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.dropdown-menu img:hover {
  transform: scale(1.05);
}

.dropdown-menu h6 {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Hero Section */

.hero-section {
  margin-top: 5vh;
  position: relative;
  background: url('images/Frame 47.png') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0,0,0,0.4); dark overlay */
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 100 !important;
  margin-top: 10px;
}

.hero-content .btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 30px;
}

.scroll-down {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  z-index: 2;
}

.scroll-down img {
  display: block;
  animation: bounce 1.5s 3;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

.btn-success-1 {
  background-color: #28a745 !important;
  color: white !important;
  border-radius: 12px !important;
}

.btn-success-1:hover {
  background-color: rgba(32, 181, 16, 0.748) !important;
  color: white !important;
}

@media only screen and (max-width: 600px) {
  .hero-section {
    margin-top: -2vh;
    height: 95vh !important;
  }

  .hero-section h1 {
    font-size: 48px !important;
    margin-bottom: 10px !important;
  }
}

/* info section  */

.info-section {
  padding: 150px 30px;
  text-align: center;
  background: #fff;
  font-family: inter ;
}

.info-section h2 {
  font-weight: 900;
  line-height: 1.5;
  color: #0077c8;
}

.info-section h2 span {
  color: #28a745;
}

.info-section .btn-success-1 {
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 12px;
  background-color: #28a745;
  color: #fff;
  border: none;
}

.info-section .btn-success-1:hover {
  background-color: #28a745;
}

@media only screen and (max-width: 600px) {
  .info-section {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
  }
}

/* product-section */
.product-section {
  padding: 0px 10px;
  text-align: center;
}

.product-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0077c8;
  margin-bottom: 10px;
}

.product-section p {
  font-size: 1.1rem;
  color: #333;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
}

.product-card {
  border: none;
  background: #fff;
  border-radius: 12px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.product-card .card-body h5 {
  color: #0077c8;
  font-size: 28px;
  font-family: 'Charlie Display h2';
  font-weight: 200;
}

.product-card p{
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
}

@media only screen and (max-width: 600px) {
  .product-card img {
    height: 200px !important;
  }
}

/* ----------- */

.brochure-section {
  background-color: #0077c8;
  /* Blue background */
   font-family: "Inter Tight", sans-serif;
  color: white;
  padding: 50px 20px;
  margin: 94px 0;
}

.brochure-section h2 {
  font-size: 46px;
}

@media only screen and (max-width: 600px) {
  .brochure-section {
    background-color: #0077c8;
    /* Blue background */
    color: white;
    padding: 30px 20px;
    margin: 24px 0;
  }
}


/* ---------- */


.why-section {
  padding: 10px 100px;
}

.why-title {
  font-size: 2rem;
  font-weight: 800;
  color:#0077c8;
  margin-bottom: 40px;
  /* text-align: center; */
}

.why-card {
  border-radius: 15px;
  padding: 25px;
  color: #fff;
  background: #0077c8;
  height: 150px;
   font-family: "Inter Tight", sans-serif;
   font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card.white-card {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.why-card img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card .more {
  /* margin-top: 20px; */
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: flex-end;
}

.why-card .more img {
  background-color: #28a745;
  margin-left: 6px;
  width: 24px;
}

@media only screen and (max-width: 600px) {
  .why-section {
    padding: 0 10px;
  }
}

.last {
  margin-top: -15px !important;
  width: 24px;
  height: 24px !important;
}

/* ============= */

.testimonial-section {
  padding: 60px 100px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .testimonial-section {
    padding: 30px 20px;
  }
}


.testimonial-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0077c8;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #0077c8;
  color: #fff;
  padding: 40px 60px;
  border-radius: 30px;
  /* max-width: 900px; */
  margin: 0 auto;
  text-align: left;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 500;
  font-family: "inter-tight", sans-serif;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-user h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-user small {
  font-size: 14px;
  opacity: 0.9;
}

.testimonial-navigation {
  margin-top: 25px;
  text-align: left !important;
}

.testimonial-navigation button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #007bdb;
  font-size: 20px;
  margin: 0 5px;
  transition: 0.3s;
}

.testimonial-navigation button:hover {
  background: #005bb5;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-heading {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 35px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-heading {
    font-size: 22px;
  }
}


/* =========== */


.faq-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.accordion {
  border-radius: 30px;
  max-width: 900px;
  font-family: 'inter-tight', sans-serif;
  font-weight: 500 !important;
  margin: 50px auto;
}

.accordion-item {
  background: #1c1c1c;
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: #1c1c1c;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 18px;
  border: none;
  box-shadow: none;
  border-radius: 10px;
}

/* Remove default Bootstrap caret */
.accordion-button::after {
  display: none;
}

/* Custom toggle icons */
.accordion-button span.toggle-icon {
  margin-left: auto;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-button.collapsed span.toggle-icon::before {
  content: "+";
}

.accordion-button:not(.collapsed) span.toggle-icon::before {
  content: "×";
}

.accordion-body {
  background: #1c1c1c;
  color: #ccc;
  font-size: 16px;
  margin-top: 22px;
  padding: 0 18px 18px 18px;
  text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-section h2 {
    font-size: 30px;
  }

  .accordion-button {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-section h2 {
    font-size: 26px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 16px;
  }

  .accordion-body {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 30px 12px;
  }

  .faq-section h2 {
    font-size: 22px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 14px;
  }

  .accordion-body {
    font-size: 14px;
  }
}


/* ========== */
.logo img {
  width: 450px;
}

.explore-btn {
  background: linear-gradient(90deg, #2abf31, #0a821c);
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  border-radius: 12px;
  padding: 20px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  text-decoration: none;
}

.explore-btn:hover {
  transform: scale(1.02);
  background: linear-gradient(90deg, #0a821c, #2abf31);
}

.active {
  border-bottom: 3px solid #28a745;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .logo img {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .explore-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }

  .logo img {
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .explore-btn {
    flex-direction: column;
    font-size: 0.95rem;
  }
}

#f-big {
  font-size: 200px;
  margin-top: -5rem;
  font-weight: 900 !important;
}


@media only screen and (max-width: 600px) {
  #f-big {
    font-size: 100px;
    margin-top: 0px !important;
    font-weight: 900 !important;
  }

}



/* ===========about page  */
.hero {
  padding: 10% 20px 50px;
  text-align: left;
}

.hero h1 {
  font-weight: 800;
  font-size: 3rem;
}

.hero h1 span {
  color: #007bff;
}

.breadcrumb {
  background: none;
  padding: 0;
  font-family: "inter-tight", sans-serif;
  margin-top: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #28a745;
  font-weight: 600;
}

.farm-image {
  border-radius: 20px;
  /* rounded corners */
  overflow: hidden;
  /* ensures rounding applies */
}

.farm-image img {
  width: 100%;
  height: auto;
  display: block;
}



.about-section {
  text-align: center;
  padding: 60px 20px;
  font-family: 'inter-tight', sans-serif;
}

.about-section h2 {
  font-size: 3rem !important;
  font-weight: 900 !important;
  line-height: 1.2;
}

.text-para{
  font-size: 18px;
}

.about-section h2 span.green {
  color: #28a745;
 font-weight: 900 !important;}

.about-section h2 span.blue {
  color: #007bff;
 font-weight: 900 !important;}

.about-section p {
  max-width: 900px;
  margin: 40px auto;
  font-size: 1.1rem;
  color: #333;
}

.mission-box {
  background-color: #28a745;
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  margin-top: 40px;
}

.mission-box h4 {
  font-weight: 900;
  margin-bottom: 15px;
}

.about-section h5 {
  /* max-width: 900px; */
  font-family: 'inter-tight', sans-serif;
  margin: 20px 100px;
  font-size: 1.5rem;
  color: #333;
}



@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .about-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 500;
  }
  .about-section p {
    font-size: 1.1rem;
  }

  .about-section h5 {
    margin: 20px 20px;
    font-size: 1.2rem;
  }

}
@media only screen and (max-width: 600px) {
  .about-section h2 {
    font-size: 1.8rem;
  }}
/* ---  */

.apart-section {
  padding: 60px 20px;
  /* text-align: center; */
}

.apart-section h2 {
  font-weight: 900 !important;
  font-size: 3.8rem;
  color: #0066cc;
  /* Blue */
  margin-bottom: 40px;
}

.apart-card h4 {
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 1.5rem !important;
}
.mission-box {
  margin: 0px !important;
  padding: 20px 0px !important;
}
.apart-card p {
  color: #222;
  font-family: 'inter-tight', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

@media only screen and (max-width: 600px) {
  .apart-section {
    padding: 20px 20px;
    /* text-align: center; */
  }

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

  .apart-card h4 {
    font-weight: 900;
    color: #0077c8;
    margin-bottom: 15px;
  }

  .apart-card p {
    color: #222;
    font-size: 1.2rem;
  }
}

/* =========== */

.serve-section {
  padding: 10px 20px;
  text-align: center;
}

.serve-section h2 {
  font-weight: 900 !important;
  font-size: 3.8rem;
  color: #0077c8;
  /* Blue */
  margin-bottom: 40px;
}

.serve-section p {
  font-size: 1.3rem;
  color: #333;
  font-family: 'inter-tight', sans-serif;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto 40px;
}

.serve-section img {
  width: 100%;
  border-radius: 20px;
  /* Rounded corners */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* ======== */

.promise-box {
  background-color: #0076d6;
  /* Blue background */
  color: white;
  padding: 80px 50px;
  border-radius: 25px;
  text-align: center;
  margin: 40px 0;
  /* max-width: 1000px; */
}

.promise-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.promise-box p {
  font-family: 'inter-tight', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}

.empower-text {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900 !important;
  color: #28a745;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .empower-text {
    font-size: 1.8rem;
  }

  .promise-box {
    padding: 50px 30px;
  }
}


/* =============== */
@media (max-width: 768px) {
  .water h4 {
    font-family: "inter-tight", sans-serif;
    font-size: 1.2rem !important;
  }
}


.product-card {
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.product-image img {
  border: 1px solid black;
  padding: 30px 0px;
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.btn-custom {
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-brochure {
  background: #0077c8;
  color: #fff;
  border: none;
}

.btn-brochure:hover {
  background: #0056b3;
}

.btn-video {
  background: #0077c8;
  color: #fff;
  border: none;
}

.btn-video:hover {
  background: #0077c8;
}

.btn-enquire {
  background: #28a745;
  color: #fff;
  border: none;
}

.btn-enquire:hover {
  background: #28a745;
}

.specs-table th,
.specs-table td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: center;
  font-size: 12px;
  vertical-align: middle;
}

.specs-table th {
  background: #dadada;
}

.section-title {
  color: #0077c8;
  font-weight: 700;
}

.table-title {
  padding: 6px;
  font-weight: bold;
  font-size: 12px;
  background: #dadada;
  text-align: center;
}

/* =======contact page =======  */
.form-section {
  max-width: 900px;
  margin: auto;
    font-weight: 500;
  font-family: 'inter', sans-serif !important;
  padding: 40px 20px;
}

.form-title {
  font-size: 3rem;
  font-weight: 900;
  
  text-align: center;
  margin-bottom: 15px;
}

.form-title span {
  color: #28a745;
}

.form-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'inter-tight', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}

.form-control {
  border-radius: 25px;
  padding: 12px 20px;
}

.chip-btn {
  border: none;
  border-radius: 25px;
  padding: 8px 10px;
  margin: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.chip-btn.active {
  background: #28a745;
  color: #fff;
}

.chip-btn.inactive {
  background: #e0e0e0;
  color: #333;
}

textarea {
  border-radius: 15px !important;
  padding: 15px;
}

.form-check-label {
  font-size: 0.85rem;
  color: #444;
}

.btn-submit {
  background: #0077c8;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-submit:hover {
  background: #0056b3;
}

/* --------- */

.contact-title {
  font-size: 3rem;
  font-weight: 700;
}

.contact-title span {
  color: #28a745;
}

.contact-info {
  font-size: 1rem;
  font-weight: 500;
}

.contact-info i {
  color: #0077c8;
  margin-right: 6px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
}

iframe {
  width: 100%;
  height: 350px;
  border: none;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-info {
    font-size: 0.95rem;
  }

  iframe {
    height: 250px;
  }
}

.exter {
  margin: 40px 150px !important;
}

@media (max-width: 768px) {
  .exter {
    margin: 20px 20px !important;
  }
}
 .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
  }

  .marquee-track {
    display: inline-block;
    white-space: nowrap;
  }

  .marquee-text {
    display: inline-block;
    font-family: 'Charlie Display';
    src: url(charlie-display-font-1756172436-0/charlie-display.ttf);
    margin-right: 50px; /* spacing between repeats */
    font-size: 10rem;
    font-weight: 900;
  }

  .green-text { color: #28a745;
  font-weight: 900; }
  .text-blue { color: #0077c8;
  font-weight: 900; }












/* 🌍 Base (Mobile First: <600px)
   -------------------------------------------------
   - Default styles apply to mobile screens first
   - Then scale up for larger devices (tablet, desktop)
   - Helps performance & keeps code clean
*/
h1 {
  font-size: 32px;
  font-weight: 700;
}

/* Main page title (biggest text) */
h2 {
  font-size: 18px;
  font-weight: 500;
}

/* Section titles */
h3 {
  font-size: 12px;
  font-weight: 400;
}

/* Subsection headings */
h4 {
  font-size: 28px;
  font-weight: 400;
}

/* Smaller subheadings */
h5 {
  font-size: 26px;
  font-weight: 400;
}

/* Minor headings */
h6 {
  font-size: 12px;
  font-weight: 400;
}

/* Smallest heading, often used for labels */
p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* Body text with good readability */


/* 📱 Tablet (≥600px & <992px)
   -------------------------------------------------
   - Medium-sized screens (tablets, small laptops)
   - Font sizes get bigger for better readability
   - Weights adjusted for balance
*/
@media (min-width: 600px) and (max-width: 991.98px) {
  h1 {
    font-size: 42px;
    font-weight: 800;
  }

  /* Larger titles for tablet */
  h2 {
    font-size: 28px;
    font-weight: 400;
  }

  h3 {
    font-size: 24px;
    font-weight: 500;
  }

  h4 {
    font-size: 18px;
    font-weight: 500;
  }

  h5 {
    font-size: 16px;
    font-weight: 400;
  }

  h6 {
    font-size: 12px;
    font-weight: 400;
  }

  p {
    font-size: 15px;
    font-weight: 300;
  }

  /* Slightly larger body text */
}

.title-boss{
  font-size: 34px !important;
  font-weight: 900 !important;
}

/* 💻 Desktop (≥992px)
   -------------------------------------------------
   - Large screens (desktops, wide laptops)
   - Maximum font sizes for strong hierarchy
   - Headings get more visual impact
*/
@media (min-width: 992px) {
  h1 {
    font-size: 52px;
    font-weight: 900;
  }

  /* Big, bold hero titles */
  h2 {
    font-size: 42px;
    font-weight: 200;
  }

  /* Light but large section headers */
  h3 {
    font-size: 32px;
    font-weight: 600;
  }

  h4 {
    font-size: 24px;
    font-weight: 500;
  }

  h5 {
    font-size: 20px;
    font-weight: 100;
  }

  h6 {
    font-size: 18px;
    font-weight: 400;
  }

  p {
    font-size: 16px;
    font-weight: 300;
  }

  /* Comfortable reading size */
}

 .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Mega menu styling */
    .dropdown-menu {
      width: 100vw !important; /* slightly smaller than full width */
      left: 5% !important;
      transform: translateX(-48%) !important; 
      top: 100% !important;
      border: none;
      border-radius: 0 0 12px 12px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
      animation: fadeIn 0.3s ease-in-out;
      padding: 2rem 2.5rem;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Product item */
    .product-item {
      text-align: left;
      transition: all 0.3s ease;
    }

    .product-item img {
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .product-item:hover img {
      transform: scale(1.05);
    }

    .product-item h6 {
      font-size: 14px;
      margin-top: 8px;
      color: #0d6efd;
      font-weight: 600;
    }

    /* Navbar adjustments */
    .navbar-nav .nav-link {
      font-weight: 500;
      margin: 0 8px;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #0d6efd;
    }

    /* Brochure button */
    .brochure-btn {
      border-radius: 50px;
      padding: 8px 18px;
      font-weight: 500;
    }


    /* ============ */


        .form-title {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }

        .form-subtitle {
            text-align: center;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .form-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .form-group input, .form-group textarea {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 16px;
        }

        .enquiry-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .chip {
            padding: 10px 15px;
            border-radius: 20px;
            border: 1px solid rgba(29, 161, 15, 1);
            background-color: #e9ecef;
            cursor: pointer;
            user-select: none;
        }

        .chip.active {
            background-color: rgba(29, 161, 15, 1);
            color: white;
        }

        textarea {
            width: 100%;
            min-height: 100px;
            resize: vertical;
        }

        .consent {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .submit-btn {
            display: block;
            background-color: #007bff;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 18px;
            cursor: pointer;
            text-align: center;
            margin: 0 auto;
        }

        .message {
            text-align: center;
            color: rgba(29, 161, 15, 1);
            font-weight: bold;
            margin-bottom: 20px;
        }