
/* Global styles */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;        /* bigger base font */
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #111;
}


/* Responsive sizing */
h1 {
  font-size: clamp(25px, 5vw, 52px);
}
h2 {
  font-size: clamp(20px, 5vw, 40px);
}
h3 {
  font-size: clamp(18px, 5vw, 32px);
}
p {
  font-size: clamp(17px, 2vw, 16px);
}




/* INDEX PAGE NAVBARS */

/* Variables */
:root {
  --blue-main: #0d6efd;
}

/* Pre-header */
.pre-header {
  background-color: var(--blue-main);
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}

/* Logo frame */
.logo-frame {
  border: 3px solid var(--blue-main);
  padding: 5px;
  display: inline-block;
}

/* Navbar styling */
.navbar-nav .nav-link {
  color: #000;
}
.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  color: var(--blue-main);
}

.dropdown-menu {
  min-width: 250px;
}

/* Blue background shade for active nav item */
.navbar-nav .active-link {
  background-color: #0d6efd;
  color: #fff !important;
  border-radius: 5px;
  padding: 5px 10px;
}

/* FOOTER SECTION */

/* Footer Styling */
.footer-section {
  background-color: #0d6efd !important;
  color: #ffffff !important;
}

.footer-section h5 {
  color: #fff;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-section .form-control::placeholder {
  color: #888;
  font-size: 14px;
}

.footer-section .btn {
  font-size: 14px;
  padding: 6px 12px;
}

/* FULL BACKGROUND COLOR */



.overlay-wrapper {
  background-color: rgba(255, 255, 255, 0.88); /* translucent white */
  min-height: 100vh;
}


#about-us img {
  max-height: 500px;
  max-width: 800px;
  object-fit: cover;
}


/* hero section */

#hero {
  height: 100vh; /* Full viewport height */
  position: relative;
  overflow: hidden;
}

#hero .hero-img {
  height: 100%;
  object-fit: cover; /* Ensures the image covers the section */
}

#hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%; /* allow full width */
  padding: 0 10px; /* small padding for safety */
}

#hero .carousel-caption h1 {
  font-size: 1.5rem;   /* adjust size */
  font-weight: bold;
}

#hero .carousel-caption p {
  font-size: 1.5rem;
}

#hero .carousel-caption h1,
#hero .carousel-caption p {
  white-space: nowrap;          /* keeps text in one line */
  font-size: clamp(16px, 5vw, 48px); /* responsive scaling */
  line-height: 1.2;
}

/* Hero Carousel Images */
.hero-img {
  height: 100vh; /* Adjust height as needed */
  object-fit: fill; /* Ensures image fits box perfectly */
}

/* Carousel Caption Styling */
.carousel-caption {
  bottom: 20%;
  z-index: 10;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Make entire hero section responsive */
@media (max-width: 768px) {
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .hero-img {
    height: 10vh;  /* smaller hero height on mobiles */
    weight: 2px;
    min-height: 500px;
  }
}



/* Logo Frame Styling - Box with Rounded Corners */
.navbar-brand img,
footer img {
  width: 230px;
  height: 70px;
  padding: 8px;
  background-color: white;
  object-fit: cover; /* Ensures the image fits perfectly inside the box */
}



/* Fullscreen background image */
section.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


/* Center navbar */

.navbar-nav {
  margin: 0 auto;
  gap: 20px; /* spacing between menu items */
}

/* Navbar link styles */
/* Ensure navbar links are always visible */
.navbar-dark .navbar-nav .nav-link {
  color: white;               /* Default link color */
  font-weight: 1800;
  padding: 10px 15px;
  transition: 0.3s;
}

/* Hover effect */
.navbar-dark .navbar-nav .nav-link:hover {
  background-color: #0d6efd;  /* Blue on hover */
  border-radius: 6px;
  color: white;
}

/* Active (selected) menu item */
.navbar-dark .navbar-nav .nav-link.active {
  background-color: #003366;  /* Dark blue for selected item */
  border-radius: 6px;
  color: white;
}


.booking-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

/* MAIN WRAPPER */
.booking-form-wrapper {
  background: #0d6efd;
  padding: 25px 20px;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
}

/* INPUTS */
.booking-inline-form input,
.booking-inline-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: none;
  border-radius: 15px;
  margin-bottom: 15px;     /* Reduced spacing */
  font-size: 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

/* TEXTAREA SAME STYLE */
.booking-inline-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.btn-book {
  width: 100%;
  background: #fff;
  color: #0d6efd;
  padding: 14px;
  border-radius: 15px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/* Full form section background */
.booking-section {
    width: 100%;
    background-color: #0d6efd;  /* Blue */
    padding: 50px 20px;          /* spacing */
}

/* White box for form */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}



/* MOBILE FIXES */
@media (max-width: 768px) {
  .booking-form-wrapper {
    padding: 20px 15px;
  }

  .booking-inline-form {
    display: block;
  }

  .btn-book {
    margin-top: 5px;
  }
}






/* Responsive spacing for smaller screens */
@media (max-width: 576px) {
  .booking-form .form-control,
  .btn-book {
    width: 100%;
    flex: 1 1 100%;
  }
}



/* <!-- Why Choose Us Section --> */

/* Background Section - Why Choose Us */
.why-choose-us {
 background-image: url('../images/website.png');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
}

.why-choose-us .overlay {
  background-color: rgba(240, 232, 232, 0.6); /* Dark overlay */
  min-height: 100%;
}

.why-choose-us h2 {
  font-weight: bold;
  color: #1b0505;
  font-size: 2.5rem;
}

.why-choose-us p {
  color: #030101;
  font-size: 2.5rem;
}


/* Testimonal Section */

/* Testimonial Section - Modern Centered Design */
#testimonials {
  background-color: #f8f9fa;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

#testimonials h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

#testimonials h5 {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 400;
}

#testimonials p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Testimonial Card */
#testimonials .card {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

#testimonials .card:hover {
  transform: translateY(-5px);
}

/* Center avatar-style logo */
#testimonials .card-body img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Name */
#testimonials .card-body h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

/* Star rating */
#testimonials .card-body .text-muted {
  font-size: 1rem;
  color: #f5c518 !important;
  margin-bottom: 1rem;
}

/* Review text */
#testimonials .card-body p:last-child {
  font-style: italic;
  color: #444;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Button */
#testimonials .btn-outline-primary {
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

#testimonials .btn-outline-primary:hover {
  background-color: #0d6efd;
  color: white;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  #testimonials .carousel-control-prev,
  #testimonials .carousel-control-next {
    display: none;
  }

  #testimonials .card {
    margin-bottom: 1.5rem;
  }
}

/* Maintanance */

.maintenance-section {
  position: relative;
  overflow: hidden;
}

.call-icon {
  width: 45px;
  height: 45px;
  background: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* Floating Button Base Style */
.float-whatsapp,
.float-call {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 1.5s infinite;
}

.float-whatsapp {
  background-color: #25D366;
  right: 20px;
}

.float-call {
  background-color: #d80027;
  right: 80px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* SALES.HTML */

.product-img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

/* COMPUTER REPAIR */

/* === Computer Repair Section === */
.computer-repair-section {
  padding: 80px 20px;
  background: #f4f7ff;
  color: #002855;
}

.section-title {
  color: #002855;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  margin-bottom: 30px;
  color: #333;
}

.repair-box {
  background: #fff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.repair-box:hover {
  background-color: #002855;
  color: #fff;
  transform: translateY(-5px);
}

.repair-box .icon {
  font-size: 24px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.repair-box:hover .icon {
  color: #fff;
}

.repair-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.repair-box p {
  font-size: 14px;
  margin: 0;
}

/* ABOUT US PAGE  */

.about-top-banner {
  background-image: url('../images/cr.jpg'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  height: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-top-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 41, 77, 0.6); /* Dark blue overlay */
  z-index: 1;
}

.about-top-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 48px;
}


.img-fluid.rounded.shadow {
  width: 500px;
  height: auto;
}

.custom-img-size {
  width: 400px;        /* You can increase or decrease */
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .custom-img-size {
    width: 100%;
  }
}


/* LAPTOP REPAIR */
/* === Laptop Repair Section === */
.laptop-repair-section {
  padding: 80px 20px;
  background: #f4f7ff;
  color: #002855;
}

.laptop-repair-section .section-title {
  color: #002855;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.laptop-repair-section .section-desc {
  font-size: 15px;
  margin-bottom: 30px;
  color: #333;
}

.repair-box {
  background: #fff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.repair-box:hover {
  background-color: #002855;
  color: #fff;
  transform: translateY(-5px);
}

.repair-box .icon {
  font-size: 24px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.repair-box:hover .icon {
  color: #fff;
}

.repair-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.repair-box p {
  font-size: 14px;
  margin: 0;
}


/* === Hardware Upgrade Section === */
.hardware-upgrade-section {
  padding: 80px 20px;
  background: #f0f4ff;
  color: #002855;
}

.hardware-upgrade-section .section-title {
  color: #002855;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hardware-upgrade-section .section-desc {
  font-size: 15px;
  margin-bottom: 30px;
  color: #333;
}

.upgrade-box {
  background: #fff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.upgrade-box:hover {
  background-color: #002855;
  color: #fff;
  transform: translateY(-5px);
}

.upgrade-box .icon {
  font-size: 24px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.upgrade-box:hover .icon {
  color: #fff;
}

.upgrade-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.upgrade-box p {
  font-size: 14px;
  margin: 0;
}


/* === Networking Section === */
.networking-section {
  background: #f4f7ff;
  color: #002855;
}

.networking-section .section-title {
  color: #002855;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.networking-section .section-desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.network-box {
  background: #ffffff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.network-box:hover {
  background-color: #002855;
  color: #ffffff;
  transform: translateY(-5px);
}

.network-box .icon {
  font-size: 22px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.network-box:hover .icon {
  color: #ffffff;
}

.network-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.network-box p {
  font-size: 14px;
  margin: 0;
}


/* === Malware Section === */
.malware-section {
  background: #f4f7ff;
  color: #002855;
}

.malware-section .section-title {
  font-size: 32px;
  color: #002855;
  font-weight: bold;
  margin-bottom: 15px;
}

.malware-section .section-desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.malware-box {
  background: #ffffff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.malware-box:hover {
  background-color: #002855;
  color: #ffffff;
  transform: translateY(-5px);
}

.malware-box .icon {
  font-size: 22px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.malware-box:hover .icon {
  color: #ffffff;
}

.malware-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.malware-box p {
  font-size: 14px;
  margin: 0;
}


/* === OS Update Section === */
.os-update-section {
  background: linear-gradient(to right, #f4f7ff, #ffffff);
  color: #002855;
}

.os-banner {
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.os-box {
  background: #fff;
  border-left: 5px solid #002855;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.os-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.os-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #002855;
  margin-bottom: 15px;
}

.os-box.windows {
  border-color: #0078d7;
}

.os-box.linux {
  border-color: #d92228;
}

.os-box i {
  margin-right: 10px;
  font-size: 22px;
  color: inherit;
}

.os-box p {
  font-size: 15px;
  line-height: 1.6;
}


.cctv-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.list-icons {
  padding-left: 0;
  list-style: none;
}

.list-icons li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.list-icons i {
  color: #dc3545;
  margin-right: 10px;
}


/* === Data Recovery Section === */
.data-recovery-section {
  padding: 80px 20px;
  background: #f4f7ff;
  color: #002855;
}

.data-recovery-section .section-title {
  color: #002855;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.data-recovery-section .section-desc {
  font-size: 15px;
  margin-bottom: 30px;
  color: #333;
}

.recovery-box {
  background: #fff;
  border: 2px solid #002855;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.recovery-box:hover {
  background-color: #002855;
  color: #fff;
  transform: translateY(-5px);
}

.recovery-box .icon {
  font-size: 24px;
  color: #002855;
  margin-bottom: 10px;
  display: block;
}

.recovery-box:hover .icon {
  color: #fff;
}

.recovery-box h5 {
  font-weight: 600;
  font-size: 16px;
}

.recovery-box p {
  font-size: 14px;
  margin: 0;
}


/* CCTV SECTION STYLING */
#cctv-section {
  padding: 60px 20px;
  background-color: #f8f9fa; /* Light background */
  color: #111;
  font-family: 'Segoe UI', sans-serif;
}

#cctv-section h2 {
  color: #dc3545; /* Bootstrap's red for "CCTV Camera" */
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

#cctv-section p,
#cctv-section li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

#cctv-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

#cctv-section ul li strong {
  color: #000080; /* Dark blue headings in bullets */
}

/* Carousel Image Styling */
.carousel-item img {
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.03);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000080;
  border-radius: 50%;
  padding: 12px;
}

/* Section Final Line (highlight) */
#cctv-section p.text-success {
  font-size: 18px;
  font-weight: 600;
  color: #28a745;
}

/* ---------------- OUR SERVICES HEADER ---------------- */
#services h3 {
  text-align: left;           /* left align */
  color: #007bff;             /* bootstrap blue */
  font-weight: 700;
}

    /* Flip Box Styles */
    .flip-box {
      background-color: transparent;
      width: 100%;
      height: 270px;
      perspective: 1000px;
    }
    .flip-box-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }
    .flip-box:hover .flip-box-inner {
      transform: rotateY(180deg);
    }
    .flip-box-front,
    .flip-box-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .flip-box-front {
      background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .flip-box-front h5 {
      font-weight: 600;
      color: #0d6efd;
      margin-top: 12px;
    }
    .flip-box-front i {
      font-size: 40px;
      color: #0d6efd;
    }
    .flip-box-back {
      background: #fff;
      color: #333;
      transform: rotateY(180deg);
      text-align: left;
      overflow-y: auto;
    }
    .flip-box-back h6 {
      font-weight: bold;
      margin-bottom: 8px;
      color: #0d6efd;
    }
    .flip-box-back ul {
      padding-left: 18px;
      margin: 0;
    }
    .flip-box-back li {
      margin-bottom: 6px;
    }



/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  background-image: url('../images/why.jpg'); /* Optional diamond pattern */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.why-choose-us .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 20px;
}

.why-choose-us .lead {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.why-choose-us .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-us .features-list li {
  font-size: 1rem;
  color: #0d47a1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-choose-us .features-list i {
  color: #0056b3;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .why-choose-us .lead,
  .why-choose-us .features-list {
    text-align: center;
  }
}


.cctv-frame {
  border: 3px solid #007bff; /* Bootstrap Blue */
  padding: 5px;
  margin: 10px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
  transition: transform 0.3s ease;
}

.cctv-frame:hover {
  transform: scale(1.02);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}

.carousel-inner .row {
  justify-content: center;
  align-items: center;
}

.os-banner {
  max-width: 30%; /* You can adjust to 50%, 40%, etc. */
  height: auto;
}


/* SALES PAGE */

  .section-title {
      font-weight: 700;
      margin-bottom: 20px;
      color: #0d6efd;
    }
    .categories {
      font-size: 15px;
      margin-bottom: 20px;
      color: #555;
    }
    .product-card {
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .product-card:hover {
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      transform: translateY(-5px);
    }
    .product-card img {
      max-height: 160px;
      object-fit: contain;
      margin-bottom: 15px;
    }
    .product-card h6 {
      font-weight: 600;
      margin-bottom: 10px;
    }
    .product-card p {
      font-size: 14px;
      color: #666;
      min-height: 50px;
    }
    .btn-contact {
      background: #0d6efd;
      color: #fff;
      border-radius: 20px;
      padding: 6px 18px;
      font-size: 14px;
      transition: 0.3s;
    }
    .btn-contact:hover {
      background: #084298;
    }

/* INDEX PAGE IMAGE */

.highlight-section {
  position: relative;
  text-align: center;
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Top center text */
.banner-text.top-center {
  position: absolute;
  top: 20px;         /* distance from top */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85); /* light background box */
  padding: 12px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.main-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0056b3;
  margin: 0;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 5px 0 0;
  color: #000;
}

.sub-heading span {
  font-weight: 700;
  color: #ff4500; /* highlight color */
}

.image-banner {
  position: relative;
  text-align: center;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title text styling */
.title-text {
  text-align: center;
  margin: 20px 0;
}

.title-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0056b3;
  margin: 0;
}

.title-text p {
  font-size: 1rem;
  font-weight: 500;
  margin: 5px 0 0;
  color: #000;
}

.title-text p span {
  color: #ff4500;
  font-weight: 700;
}

/* Image styling */
.image-banner {
  text-align: center;
}

.banner-img {
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Apply to whole website */
body {
 
  line-height: 1.6; /* better readability */
 
}

/* Headings with bold weight */
h1, h2, h3, h4, h5, h6 {
 h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}


/* Logo Curs */

   .logo-carousel {
      background: #f8f9fa;
      padding: 30px 0;
    }
    .logo-carousel img {
      max-height: 80px;
      object-fit: contain;
      margin: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .logo-carousel img:hover {
      transform: scale(1.1);
    }

    /* blog */

    .blog-detail h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #222;
}

.blog-detail h3 {
  margin-top: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.blog-detail p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.blog-detail blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  border-left: 4px solid #0d6efd;
  padding-left: 15px;
}
