/* ================================================================
   NDONI LABELS - COMPLETE STYLESHEET
   All Pages: Home, Products, About, Contact
   ================================================================ */

/* ============================= */
/* CSS VARIABLES                 */
/* ============================= */
:root {
  --blue: #0000FF;
  --red: #cc0000;  
  --dark-blue: #1e2061; 
  --green: #00FF99;
  --black: #000000;
  --white: #FFFFFF;
  --light-grey: #f4f4f9;
  --dark-grey: #555555;
}

/* ============================= */
/* GLOBAL RESET & BASE STYLES    */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* NAVIGATION BAR                */
/* ============================= */
nav {
  background: var(--white);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;  
  gap: 10px;            
  font-family: 'Poppins', sans-serif; 
  font-weight: bold;
  font-size: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  list-style: none; 
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Poppins', sans-serif; 
  font-size: 16px; 
}

.nav-links li a:hover {
  border-bottom: 2px solid var(--blue); 
  transform: translateY(-2px); 
}

.nav-links li a.active,
.nav-links li a:focus {
  border-bottom: 2px solid var(--red); 
  transform: translateY(-2px);
}

/* ============================= */
/* BACK TO TOP BUTTON            */
/* ============================= */
/* Enhanced Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
  background: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ============================= */
/* HERO ANIMATIONS               */
/* ============================= */
@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================= */
/* HOME PAGE - HERO SECTION      */
/* ============================= */
.hero {
  position: relative;
  text-align: center;
  padding: 180px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
              url('./assets/Ndonihero1.jpg') no-repeat center center/cover;
  filter: blur(1px);
  z-index: -1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--black);
  position: relative;
  z-index: 1;
  font-family: 'Arial Black', 'Helvetica', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: dropDown 1s ease-out forwards;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero h2 {
  font-family: 'Prompt', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInButtons 0.6s ease-out 1s forwards;
}

@keyframes fadeInButtons {
  to {
    opacity: 1;
  }
}

.hero-btns .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  color: var(--white); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btns .btn:first-child {
  background-color: var(--dark-blue);
  border: none;
  animation: slideInLeft 0.6s ease-out 1s both;
}

.hero-btns .btn:first-child:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 153, 0.4);
}

.hero-btns .btn.btn-outline {
  background-color: var(--red);
  border: none;
  animation: slideInRight 0.6s ease-out 1s both;
}

.hero-btns .btn.btn-outline:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* ============================= */
/* PRODUCTS PAGE - HERO CAROUSEL */
/* ============================= */
.hero-section {
  margin-top: 80px;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
}

.hero-carousel {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  background: rgba(30, 32, 97, 0.8);
  color: var(--white);
  text-align: center;
  padding: 60px 40px;
  border-radius: 10px;
  max-width: 600px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ============================= */
/* PRODUCTS PAGE - FILTER BAR    */
/* ============================= */
.filter-bar {
  background: linear-gradient(135deg, var(--light-grey) 0%, #e8e8f0 100%);
  padding: 15px 0;
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-bar-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-label {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 1.1rem;
  margin-right: 5px;
}

.filter-btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 2px solid transparent;
  color: var(--dark-grey);
  padding: 10px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,255,0.2);
}

.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--dark-blue);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,255,0.3);
}

/* ============================= */
/* PRODUCTS PAGE - CONTROLS ROW  */
/* ============================= */
.controls-row {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--light-grey);
  position: sticky;
  top: 133px;
  z-index: 99;
}

.controls-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-container {
  display: flex;
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 25px;
  padding: 5px 20px;
  background: var(--white);
  min-width: 300px;
  flex: 1;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0,0,255,0.1);
}

.search-icon {
  margin-right: 12px;
  color: var(--blue);
  font-size: 1.1rem;
}

.search-input {
  border: none;
  outline: none;
  padding: 10px 8px;
  font-size: 15px;
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
}

.sub-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.sub-filter-btn {
  background: var(--light-grey);
  border: 1px solid #d0d0d0;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: var(--dark-grey);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.sub-filter-btn:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
  transform: translateY(-1px);
}

.sub-filter-btn.active {
  background: var(--green);
  color: var(--black);
  font-weight: 600;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(0,255,153,0.3);
}

.hidden {
  display: none !important;
}

/* ============================= */
/* PRODUCTS PAGE - GRID SECTION  */
/* ============================= */
.products-section {
  padding: 25px 0 40px;
  min-height: 50vh;
}

.product-page-main {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-weight: 700;
}

.section-header p {
  color: var(--dark-grey);
  font-size: 1rem;
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,255,0.15);
  border-color: var(--blue);
}

.product-image {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(204,0,0,0.3);
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 5px 0 10px 0;
  color: var(--dark-blue);
  line-height: 1.3;
}

.product-description-short {
  font-size: 0.85rem;
  color: var(--dark-grey);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.product-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--light-grey);
  text-align: center;
}

.read-more-btn {
  background: linear-gradient(135deg, var(--green) 0%, #00e680 100%);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 12px rgba(0,255,153,0.25);
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #00e680 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0,255,153,0.35);
}

.no-results {
  text-align: center;
  padding: 50px 20px;
  color: var(--dark-grey);
}

.no-results i {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  opacity: 0.6;
}

.no-results h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.no-results p {
  font-size: 1rem;
  color: var(--dark-grey);
}

/* ============================= */
/* PRODUCT MODAL                 */
/* ============================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-grey);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.close-modal:hover {
  color: var(--red);
  background: var(--white);
}

.modal-product-image {
  height: 280px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.modal-product-info {
  padding: 30px;
}

.modal-product-info h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--blue);
  padding-bottom: 10px;
}

.modal-product-details {
  margin-bottom: 25px;
}

.modal-product-details h4 {
  color: var(--dark-blue);
  font-size: 1.3rem;
  margin: 20px 0 12px 0;
}

.modal-product-details p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--dark-grey);
}

.modal-product-details strong {
  color: var(--blue);
}

.modal-product-details ul {
  margin-left: 20px;
  line-height: 1.8;
}

.modal-product-details ul li {
  margin-bottom: 8px;
  color: var(--dark-grey);
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.modal-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  flex: 1;
  max-width: 200px;
  font-family: 'Poppins', sans-serif;
}

.modal-btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #ff3333 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

.modal-btn-primary:hover {
  background: linear-gradient(135deg, #ff3333 0%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.4);
}

.modal-btn-secondary {
  background: var(--dark-grey);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(85,85,85,0.3);
}

.modal-btn-secondary:hover {
  background: var(--black);
  transform: translateY(-2px);
}
/* ============================= */
/* HOME PAGE - WHY CHOOSE US     */
/* ============================= */
.why-choose-us {
  background-color: var(--dark-blue); 
  padding: 80px 20px;
  text-align: center;
  color: #fff; 
}

.why-choose-us .section-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff; 
}

.why-choose-us .section-title p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #fff; 
}

.why-choose-us .features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; 
}

.why-choose-us .feature {
  background: var(--red); 
  border-radius: 15px;
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose-us .feature i {
  font-size: 40px;
  color: #fff; 
  margin-bottom: 15px;
}

.why-choose-us .feature h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff; 
}

.why-choose-us .feature p {
  font-size: 16px;
  color: #fff; 
}

.why-choose-us .feature:hover {
  transform: translateY(-8px) scale(1.05);
  background:#FF0000;
}

/* ============================= */
/* HOME PAGE - SERVICES CARDS    */
/* ============================= */
.services {
  background-color: var(--white);
  padding: 80px 20px; 
  text-align: center;
}

.services .section-title h2 {
  font-size: 36px; 
  margin-bottom: 10px; 
  color: var(--black);
  font-family: 'Poppins', sans-serif;
}

.services .section-title p {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 40px; 
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 50px; 
  flex-wrap: wrap;
}

.service-card {
  display: flex;
  flex: 0 0 45%; 
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
}

.service-card.school {
  background-color: var(--red);
  color: var(--white);
}

.service-card.business {
  background-color: var(--dark-blue);
  color: var(--white);
}

.service-card img {
  width: 50%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-content {
  width: 50%; 
  padding: 20px 25px; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  text-align: left;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
}

.service-card.school .btn-primary {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: inline-block;
}

.service-card.school .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,153,0.4);
}

.service-card.business .btn-primary {
  background-color: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: inline-block;
}

.service-card.business .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255,0,0,0.4);
}

.service-card img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ============================= */
/* PRODUCTS PAGE - SERVICES      */
/* ============================= */
.services-section {
  padding: 60px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--dark-grey);
  margin-bottom: 40px;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.services-section .service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
  flex: none;
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 12px 35px rgba(0,0,255,0.2);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 3rem;
  color: var(--blue);
}

.service-title {
  font-size: 1.4rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-description {
  color: var(--dark-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================= */
/* CTA SECTION                   */
/* ============================= */
.cta-section {
  background: linear-gradient(135deg, var(--light-grey) 0%, #e8e8f0 100%);
  padding: 60px 0;
  margin-top: 40px;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.cta-item {
  flex: 1;
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-item:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.cta-item h2 {
  color: var(--dark-blue);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-item p {
  color: var(--dark-grey);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue) 0%, #3333ff 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,255,0.3);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #3333ff 0%, var(--blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,255,0.4);
}

.secondary-btn {
  background: linear-gradient(135deg, var(--green) 0%, #33ff99 100%);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(0,255,153,0.3);
}

.secondary-btn:hover {
  background: linear-gradient(135deg, #33ff99 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,255,153,0.4);
}

/* ============================= */
/* HOME PAGE - EXPLORE PRODUCTS  */
/* ============================= */
.products {
  background-color: var(--dark-blue); 
  padding: 60px 20px;
  text-align: center;
}

.products .section-title h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--white); 
  font-family: 'Poppins', sans-serif;
}

/* Improved Carousel Styles */
.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.product-item {
  min-width: 250px;
  height: 200px;
  flex-shrink: 0;
  flex-grow: 0;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  border-radius: 10px;
}

/* Ensure no blank space at the end */
.carousel-track::after {
  display: none;
}

/* Responsive carousel items */
@media (max-width: 1024px) {
  .product-item {
    min-width: calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .product-item {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .product-item {
    min-width: 100%;
  }
}

.product-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.3);
  color: var(--white);
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(255,255,255,0.6);
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: var(--red);
}

.view-more-btn {
  margin-top: 20px;
}

.view-more-btn .btn-secondary {
  background-color: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.view-more-btn .btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255,0,0,0.4);
}

/* ============================= */
/* HOME PAGE - GET STARTED       */
/* ============================= */
.get-started {
  background-color: var(--white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.get-started h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--black);
  font-family: 'Poppins', sans-serif;
}

.get-started p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--black);
}

.get-started-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.get-started-btns .btn {
  background-color: var(--red);
  color: var(--white);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 180px;  
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.get-started-btns .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.get-started-btns .btn.btn-outline {
  background-color: var(--red);
  border: none;
  color: var(--white);
}


/* ============================= */
/* ABOUT PAGE - HERO             */
/* ============================= */
.about-hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
              url('./assets/aboutushead.jpg') no-repeat center center/cover;
  filter: blur(0.5px);
  z-index: -1;
}

/* ============================= */
/* ABOUT PAGE - CONTENT          */
/* ============================= */
.about {
  background-color: var(--white);
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: start;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

.about-text > p {
  font-size: 22px;
  font-weight: 400;   
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000000;
}

.stats-section {
  position: relative;
  background-color: rgba(22, 179, 40, 0.1);
  border-radius: 30px;
  padding: 40px 30px;
  margin: 0;
}

.stats-title {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 30px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  text-shadow: 2px 2px 4px #084B02;
}

.stat-item {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
}

/* ============================= */
/* ABOUT PAGE - VALUES TIMELINE  */
/* ============================= */
.values-section {
  text-align: center;
  font-family: Prompt, sans-serif;
  padding: 40px 20px;
}

.values-title {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-weight: 700;
}

.values-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.timeline {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #2e268f;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #2e268f;
  transform: translateX(-50%) rotate(45deg);
}

.timeline-end {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #2e268f;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.values-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
  position: relative;
}

.value-card {
  background: #0b0070;
  color: white;
  padding: 30px 40px;
  width: 40%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.value-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 75px;
  padding-right: 75px;
}

.value-card.left::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.value-card.right::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.center-dot {
  position: relative;
  width: 22px;
  height: 22px;
  background: orange;
  border-radius: 50%;
  z-index: 3;
}

/* ============================= */
/* ABOUT PAGE - COMMITMENT       */
/* ============================= */
.commitment-section {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 50px 0;
  margin-top: 50px;
}

.commitment-section h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 38px; 
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.commitment-subtitle {
  text-align: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 400;  
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.commitment-card {
  background-color: #d32f2f;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Prompt', sans-serif;
  width: 350px;
  min-height: 200px; 
}

.commitment-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.commitment-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* ============================= */
/* ABOUT PAGE - REVIEWS          */
/* ============================= */
.reviews {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.reviews h2 {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;   
  font-size: 38px;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: rgba(22, 179, 40, 0.17);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(19, 188, 16, 0.285);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.reviewer {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.avatar1 { background-image: url('assets/profile1.png'); }
.avatar2 { background-image: url('assets/profile2.png'); }
.avatar3 { background-image: url('assets/profile3.png'); }

.reviewer h4 {
  font-size: 16px;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 600;
}

.stars {
  color: #FFD700;
  font-size: 14px;
  margin-top: 2px;
}

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

/* ============================= */
/* CONTACT PAGE                  */
/* ============================= */
.contact {
  padding: 100px 20px;
  background: linear-gradient(to right, rgba(30, 32, 97, 0.9), rgba(0, 0, 0, 0.8)), 
              url('./assets/contact-bg.jpg') no-repeat center/cover;
  color: var(--white);
  position: relative;
  margin-top: 80px;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--light-grey);
  margin-bottom: 25px;
}

.divider {
  border: none;
  border-top: 3px solid var(--green);
  margin: 20px 0 30px;
  width: 70px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--green);
  margin-top: 5px;
}

.contact-item h4 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-item p,
.contact-item small {
  margin: 3px 0;
  color: var(--light-grey);
}

.contact-form {
  background: var(--white);
  color: var(--black);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 6px rgba(0,0,255,0.3);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.contact-form button:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.contact-form p {
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
  color: var(--dark-grey);
}

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

/* ============================= */
/* FOOTER                        */
/* ============================= */
footer {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 40px 0 15px;
  width: 100%;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.logo-col p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
  font-size: 0.9rem;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-contact-info i {
  margin-right: 10px;
  color: var(--blue);
  font-size: 1rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--blue);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--red);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1e40af;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,255,0.3);
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* ============================= */
/* RESPONSIVE - TABLET           */
/* ============================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  
  .service-card {
    flex: 1 1 100%;
    flex-direction: column;
  }
  
  .service-card img, 
  .service-content {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .contact-content,
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* RESPONSIVE - MOBILE           */
/* ============================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    min-height: 70vh;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-section {
    height: 300px;
  }
  
  .hero-overlay {
    padding: 30px 20px;
    max-width: 90%;
  }
  
  .hero-overlay h1 {
    font-size: 2rem;
  }
  
  .filter-bar,
  .controls-row {
    position: relative;
    top: 0;
  }
  
  .filter-bar-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .controls-content {
    flex-direction: column;
  }
  
  .search-container,
  .sub-filters {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .cta-flex {
    flex-direction: column;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-btn {
    max-width: none;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .values-row {
    flex-direction: column;
  }
  
  .value-card {
    width: 100%;
  }
  
  .value-card p {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .value-card.left::after,
  .value-card.right::after,
  .timeline::before {
    display: none;
  }
  
  .commitment-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-container {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .get-started-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .about-text h2,
  .values-title,
  .commitment-section h3,
  .reviews h2 {
    font-size: 28px;
  }
  
  .about-text > p {
    font-size: 16px;
  }
}

/* ============================= */
/* END OF STYLESHEET             */
/* ============================= */