/* Reset */
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #F8FAFC;
}

.custom-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------Navbar -------------------s */

.custom-navbar {
  position: fixed;              /* makes it float */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 1200px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);

  border-radius: 100px;         /* fully pill shape */
  padding: 12px 25px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  z-index: 1000;
}
.nav-link {
  color: #333 !important;
  margin-left: 15px;
  font-weight: 500;
}

.nav-logo {
  height: 40px;              /* keep original navbar height reference */
  transform: scale(1.8);     /* increase visual size */
  transform-origin: left center;
  display: inline-block;
}

/* Tablet */
@media (max-width: 992px) {
  .custom-navbar {
    width: 95%;
    padding: 10px 20px;
  }

  .nav-logo {
    transform: scale(1.4);
  }

  .nav-link {
    margin-left: 10px;
    font-size: 14px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .custom-navbar {
    width: 95%;
    padding: 10px 15px;
    border-radius: 50px; /* slightly smaller pill */
  }

  .nav-logo {
    transform: scale(1.2);
  }

  /* Stack menu nicely */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    border-radius: 15px;
    padding: 15px;
  }

  .nav-link {
    margin: 10px 0;
    display: block;
    text-align: center;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .custom-navbar {
    top: 10px;
    width: 92%;
    padding: 8px 12px;
    border-radius: 40px;
  }

  .nav-logo {
    transform: scale(1);
  }

  .nav-link {
    font-size: 13px;
  }
}

/* ------------ Hero Section ----------------*/
.hero-section {
  height: 100vh;
  background: url('assets/hero_background.svg') no-repeat center;
  background-size: cover;
  position: relative;
  color: #000;
}

/* Title */
.hero-title {
    margin-top: 10%;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
}

/* Highlight underline */
.highlight {
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #27AE60;
  left: 0;
  bottom: 5px;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 15px;
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.explore-btn {
  background: #27AE60;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #3EE685;
  color: #fff;
}

/* Logo Strip */
.logo-strip {
    margin-top: 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px; /* equal spacing */
}

/* Box ensures equal area for all logos */
.box {
  /* width: 140px;         
  height: 70px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo inside box */
.box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;

  transition: 0.3s;
  opacity: 0.9;
}


.box:nth-child(1) img,
.box:nth-child(2) img {
  transform: scale(1.2);   /* increase size */
}

/* Responsive */
@media (max-width: 768px) {

  

  .hero-title {
    font-size: 32px;
  }

  /* CHANGE layout to grid */
  .logo-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
    justify-items: center;
  }

  /* Keep boxes equal */
  .box {
    width: 100%;
    height: 60px;
  }

  .box img {
    height: 30px;
    max-width: 100%;
    object-fit: contain;
  }

  /* Remove scaling (important) */
  .box:nth-child(1) img,
  .box:nth-child(2) img {
    transform: scale(3.5);
  }


  .highlight::after {
    height: 4px;     /* slightly thinner */
    bottom: 3px;     /* adjust position */
  }

}

@media (max-width: 420px) {

  .hero-section {
    height: auto;              /* prevent content cut */
    padding: 100px 15px 40px;
  }

  .hero-title {
    font-size: 26px;
    margin-top: 40px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .explore-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* LOGO GRID */
  .logo-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .box {
    height: 50px;
  }

  .box img {
    height: 28px;
    max-width: 90%;
    object-fit: contain;
  }

  /* IMPORTANT: keep all logos equal */
  .box:nth-child(1) img,
  .box:nth-child(2) img {
    transform: scale(3.5);  /* reset scaling */
  }

  .highlight::after {
    height: 3px;     /* thinner line */
    bottom: 2px;     /* align with smaller text */
  }

}

/* ------WHO WE ARE SECTION---------- */

.who-section {
  
  padding: 80px 0;
}

/* Title */
.who-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}


/* Text */
.who-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .who-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .who-text {
    font-size: 14px;
  }
}


/* ------------OUR MISSION SECTION--------------- */

.mission-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* Title */
.mission-title {
  font-size: 36px;
  font-weight: 700;
}


/* Subtitle */
.mission-subtitle {
  color: #777;
  font-size: 16px;
  margin-top: 10px;
}

/* Cards */
.mission-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: left;
  height: 100%;

  border: 1px solid #eee;
  transition: 0.3s;
}

.mission-card:hover  {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(187, 255, 141, 0.05);
  border: #4af9a2 1px solid;
  
}

.mission-card h5 {
  transition: 0.3s;
}

/* change text color when card hovered */
.mission-card:hover h5 {
  color: #27AE60;
}

/* Icon */
.icon-box {
  width: 50px;
  height: 50px;
  background: #D0FAE5;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;
}

.icon-box img {
  height: 24px;
}

/* Card Title */
.mission-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.mission-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-title {
    font-size: 28px;
  }
}

/* --------------- WHY CHOOSE US SECTION --------------------- */

/* SECTION BACKGROUND */
.why-section {
  padding: 80px 0;
}

/* GREEN CONTAINER */
.why-wrapper {
  background: #2faa60;
  border-radius: 40px;
  padding: 60px;
  color: #fff;
}

/* TITLE */
.why-title {
  font-size: 36px;
  font-weight: 700;
}

/* LIGHT UNDERLINE */
.highlight-light {
  position: relative;
}

.highlight-light::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 6px;
  background: #7ee2a8;
}

/* SUBTEXT */
.why-subtext {
  margin-top: 15px;
  color: #e6f4ea;
  font-size: 16px;
  max-width: 300px;
}

/* CARDS */
.why-card {
  background: #f5f7f6;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  transition: 0.3s;
}


/* ICON BOX */
.icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;

  transition: all 0.3s ease; /* important */
}


/* CARD TEXT */
.why-card h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
   transition: all 0.3s ease;
}

.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  transition: all 0.3s ease;
}

/* ICON COLORS */
.icon.blue { background: #dbeafe; color: #2563eb; }
.icon.green { background: #dcfce7; color: #16a34a; }
.icon.purple { background: #ede9fe; color: #7c3aed; }
.icon.orange { background: #fef3c7; color: #d97706; }


/* BLUE */
.why-card:hover .icon.blue ~ h6 {
  color: #2563eb;
}

/* GREEN */
.why-card:hover .icon.green ~ h6 {
  color: #16a34a;
}

/* PURPLE */
.why-card:hover .icon.purple ~ h6 {
  color: #7c3aed;
}

/* ORANGE */
.why-card:hover .icon.orange ~ h6 {
  color: #d97706;
}

.why-card:hover .icon {
  transform: translateX(6px) rotate(-5deg); /* slight right tilt */
}

.why-card:hover h6,
.why-card:hover p {
  transform: translateY(2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .why-wrapper {
    padding: 30px;
  }

  .why-title {
    font-size: 28px;
  }
  
  /* Stack entire layout */
  .why-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }

  /* Left section full width */
  .why-section .col-md-5 {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Right section full width */
  .why-section .col-md-7 {
    width: 100%;
  }

  /* 🔥 MAIN FIX: cards in column */
  .why-section .col-6 {
    width: 100%;
  }

  .why-card {
    width: 100%;
  }

}


/* ----------------- OUR PRODUCT SECTION ------------------ */

/* SECTION */
.product-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.product-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.product-subtitle {
  color: #777;
  font-size: 16px;
  margin-top: 10px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s;
  
  overflow: hidden; /* prevents any accidental overflow */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* IMAGE BOX */
.product-img-box {
  background: #FDFDFD;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 15px;
  border: #E5E5E5 solid 1px;
}

.product-img-box img {
  max-width: 100%;
  height: auto;
  max-height: 50px;   /* slightly reduced for mobile safety */
  object-fit: contain;
}
/* TITLE */
.product-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */
.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

/* TAGS */
.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.product-tags span {
  background: #e6f4ea;
  color: #27AE60;
  
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 8px;
}

/* BUTTON */
.view-btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.view-btn:hover {
  background: #ffff;
  color: #000;
  border: #000 solid 1px;
}


/* ------------------ AUTHORIZED STOCK LIST SECTION ----------------- */

.stocklist-section {
  
  padding: 60px 0;
}

.stock-title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
}


.stock-subtitle {
  color: #777;
  margin-top: 10px;
  font-size: 16px;
}

.stock-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.stock-card:hover {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}
.brand-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.stock-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* ------------------ TESTIMONIAL SECTION ----------------- */
/* Section Background */

.testimonial-title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
}


/* GREEN CONTAINER */
.testimonial-wrapper {
  background: #2faa60;
  border-radius: 40px;
  padding:  60px 10px;
  color: #fff;
}

/* .testimonial-section {
  background: #2ea65c;
  padding: 80px 0;
  border-radius: 40px;
  
} */

/* Header */
.testimonial-header h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.testimonial-header p {
  color: #e0f5e8;
  margin-top: 10px;
}

/* Slider */
.testimonial-slider {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Hide scrollbar */
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.testimonial-card {
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  flex: 0 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Stars */
.stars {
  color: #28a745;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

/* Text */
.testimonial-card p {
  font-size: 18px;
  color: #333;
}

/* Footer */
.testimonial-card h6 {
  font-weight: 600;
  color: #000;
}
.testimonial-card hr {
 
  color: #000;
}
.testimonial-card span {
  font-size: 13px;
  color: #777;
}


@media (max-width: 768px) {

  .testimonial-wrapper {
    padding: 30px 15px;
    border-radius: 25px;
  }

  .testimonial-title {
    font-size: 26px;
    text-align: center;
  }

  .testimonial-header p {
    font-size: 14px;
    text-align: center;
  }

  .testimonial-slider {
    gap: 15px;
    margin-top: 25px;
    padding-left: 10px;   /* spacing from left edge */
  }

  /* Card size fix */
  .testimonial-card {
    max-width: 85%;   /* shows partial next card (modern UI feel) */
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .stars {
    font-size: 16px;
  }

}

@media (max-width: 480px) {

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

  .testimonial-card {
    max-width: 90%;
    padding: 15px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

}


/* ------------ CORPORATE INFO SECTION ----------------- */

.corporate-section {
  padding: 80px 0;
}

.corporate-title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
}


.corporate-subtitle {
  color: #777;
  margin-top: 10px;
  font-size: 16px;
}


/* CARDS */
.corporate-card {
  background: #ffff;
  border: #E5E5E5 solid 1px;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  transition: 0.3s;
  text-align: left;
}


/* ICON BOX */
.cor-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;

  transition: all 0.3s ease; /* important */
}


/* CARD TEXT */
.corporate-card h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
   transition: all 0.3s ease;
}

.corporate-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  transition: all 0.3s ease;
}

/* ICON COLORS */
.cor-icon.blue { background: #dbeafe; color: #2563eb; }
.cor-icon.green { background: #dcfce7; color: #16a34a; }
.cor-icon.purple { background: #ede9fe; color: #7c3aed; }
.cor-icon.orange { background: #fef3c7; color: #d97706; }


/* BLUE */
.corporate-card:hover .cor-icon.blue ~ h6 {

  color: #2563eb;
}

/* GREEN */
.corporate-card:hover .cor-icon.green ~ h6 {
  color: #16a34a;
}

/* PURPLE */
.corporate-card:hover .cor-icon.purple ~ h6 {
  color: #7c3aed;
}

/* ORANGE */
.corporate-card:hover .cor-icon.orange ~ h6 {
  color: #d97706;
}

.corporate-card:hover .cor-icon {
  transform: translateX(6px) rotate(-5deg); /* slight right tilt */
}

.corporate-card:hover h6,
.corporate-card:hover p {
  transform: translateY(2px);
}

/* this hover for card */
/* BLUE */
.corporate-card:hover:has(.cor-icon.blue) {
  border-color: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* GREEN */
.corporate-card:hover:has(.cor-icon.green) {
  border-color: #16a34a;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.25);
}

/* PURPLE */
.corporate-card:hover:has(.cor-icon.purple) {
  border-color: #7c3aed;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
}

/* ORANGE */
.corporate-card:hover:has(.cor-icon.orange) {
  border-color: #d97706;
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.25);
}


@media (max-width: 768px) {

  .corporate-title {
    font-size: 28px;
  }

  .corporate-subtitle {
    font-size: 14px;
  }


  .corporate-card {
    width: 100%;
  }

   .corporate-section .row {
    row-gap: 15px;
  }
}

/* --------------------FOOTER SECTION--------------------- */

.footer-section {
  background: #C9C9C9;
  padding: 60px 0 20px;
  margin-top: 50px;
}

/* Logo */
.footer-logo {
 width: 80%;
}

/* Titles */
.footer-title {
  font-weight: 600;
  font-size: 25px !important;
  margin-bottom: 20px;
  color: #222;
}

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

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

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}


/* Contact */
.footer-contact p {
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #28a745;
  font-size: 16px;
  margin-top: 3px;
}

/* Bottom */
.footer-bottom {
  
  padding-top: 15px;
  font-size: 13px;
  color: #000;
  margin-top: 20px;
}


@media (max-width: 768px) {

  .footer-section {
    padding: 40px 15px 20px;
    text-align: center;
  }

  /* Logo */
  .footer-logo {
    width: 150px;
    margin: 0 auto 20px;
  }

  /* Titles */
  .footer-title {
    font-size: 20px !important;
    margin-bottom: 15px;
  }

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

  .footer-links a {
    font-size: 15px;
  }

  /* Contact */
  .footer-contact p {
    font-size: 15px;
    
    text-align: left;
  }

  /* Fix icon alignment */
  .footer-contact i {
    margin-top: 4px;
  }

  /* Add spacing between sections */
  .footer-section .col-md-3,
  .footer-section .col-md-4,
  .footer-section .col-md-6 {
    margin-bottom: 25px;
  }

  /* Bottom text */
  .footer-bottom {
    font-size: 12px;
    text-align: center;
  }

}

/* ---------- PRODUCT VIEW DETAIL MODAL STYLING ------------*/

.custom-modal {
  border-radius: 20px;
  background: #ffff;
  border: none;
  width: 100%;        /* make fluid */
  max-width: 400px;   /* keep desktop size */
  margin: auto;
}

.modal-img-box {
  background: #FDFDFD;
  border-radius: 16px;
  border: #E5E5E5 solid 1px;
  padding: 30px;
}

.modal-img-box img {
  max-width: 220px;
}

.modal-details p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

.modal-details span:first-child {
  color: #27AE60;
  font-weight: 600;

}

.modal-details span:last-child {
  color: #555;
}

@media (max-width: 768px) {

  .modal-img-box {
    padding: 20px;
  }

  .modal-img-box img {
    max-width: 180px;
  }

  .modal-details p {
    font-size: 13px;
  }

}