/* ===================== */
/* BASE & RESET */
/* ===================== */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #232323;
  width: 100%;
  min-height: 100vh;
}

/* ===================== */
/* TOPBAR */
/* ===================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #05162e;
  color: #fff;
  padding: 7px 40px;
  font-size: 16px;
  line-height: 1.4;
}

.topbar .left, 
.topbar .center, 
.topbar .right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LEFT: Phone & Email */
.topbar .left {
  font-weight: 500;
}

/* Icons */
.topbar .left i {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Separator */
.topbar .left .separator {
  color: #ccc;
  user-select: none;
}

/* Phone & Email text */
.topbar .left .phone-text,
.topbar .left .email-text {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease-in-out, text-decoration-color 0.25s ease-in-out;
}

/* Hover effect */
.topbar .left .phone-text:hover,
.topbar .left .email-text:hover {
  color: #16c0fe;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: #16c0fe;
  cursor: pointer;
}

/* CENTER (optional) */
.topbar .center {
  font-size: 15px;
  opacity: 0.85;
}

/* Social icons (RIGHT) */
.topbar .right a {
  color: #fff;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topbar .right a:hover {
  background: #4a6eea;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    padding: 6px 20px;
    font-size: 14px;
    gap: 8px;
  }
  .topbar .left {
    font-size: 14px;
  }
  .topbar .left i {
    font-size: 12px;
    padding: 5px;
  }
  .topbar .center {
    font-size: 13px;
    order: 3;
  }
}



/* RIGHT: Social Icons */
.topbar .right a {
  color: #fff;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topbar .right a:hover {
  background: #4a6eea;
  transform: translateY(-1px);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    padding: 6px 8px;
    font-size: 14px;
    gap: 8px;
  }
  .topbar .left {
    font-size: 14px;
    gap: 8px;
  }
  .topbar .left i {
    font-size: 12px;
    padding: 5px;
  }
  .topbar .center {
    font-size: 13px;
    order: 3; /* optional: move center to bottom in mobile */
  }
}

/* Keep your existing .topbar CSS */
/* Scrolling center text */
.topbar .center {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.topbar .center span {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  font-size: 15px;
  font-weight: 600;
  color: #16c0fe;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.topbar .center span:hover {
  animation-play-state: paused;
}

/* Responsive: center moves below on small screens */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    gap: 5px;
  }
  .topbar .center {
    order: 3;
    width: 100%;
  }
}


/* ===================== */
/* HEADER / NAVBAR */
/* ===================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  flex-wrap: wrap;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 55px;
  object-fit: contain;
}

/* NAV DESKTOP */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

nav a {
  text-decoration: none;
  color: #14285d;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 2px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

nav a:hover,
nav a.show {
  background: rgba(74, 110, 234, 0.12);
  color: #265be3;
}

.quote-btn {
  background: linear-gradient(90deg, #16c0fe, #4a6eea);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.quote-btn:hover {
  box-shadow: 0 4px 12px rgba(74, 110, 234, 0.3);
  transform: translateY(-2px);
}

nav .quote-btn {
  position: relative;
}

nav .quote-btn::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 30px;
  background: #ccc;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #14285d;
  border-radius: 2px;
}

/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */

/* Tablets */
@media (max-width: 991px) {
  nav {
    gap: 18px;
  }
  nav a {
    font-size: 16px;
    padding: 6px 10px;
  }
  .logo-img {
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
  }

  nav a,
  nav .quote-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
  }

  nav .quote-btn::before {
    display: none;
  }

  nav.show {
    max-height: 500px; /* enough to show all links */
  }
}


/* GENERAL NAV STYLES */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 10;
}
nav a, nav .dropbtn {
    display: block;
    padding: 10px 10px;
    color: #14285d;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
}
nav a:hover, nav .dropbtn:hover {
    color: #ffcb05;
}

/* DROPDOWN CONTAINER */
nav .dropdown {
    position: relative;
}
nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-direction: column;
}
nav .dropdown-content a {
    padding: 12px 20px;
    color: #14285d;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    transition: background 0.16s;
}
nav .dropdown-content a:last-child {
    border-bottom: none;
}
nav .dropdown-content a:hover {
    background: #f5f5f5;
    color: #ffcb05;
}

/* Show dropdown on hover for desktop */
nav .dropdown:hover .dropdown-content,
nav .dropdown:focus-within .dropdown-content {
    display: flex;
}

/* HAMBURGER MENU (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 14px;
}
.menu-toggle span {
    height: 4px;
    width: 28px;
    background: #14285d;
    border-radius: 2px;
    transition: all 0.2s;
}

/* RESPONSIVE STYLES */
@media (max-width: 920px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        gap: 0;
        padding: 0;
        position: static;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        display: none;
    }
    nav.show {
        display: flex;
    }
    nav a, nav .dropbtn {
        padding: 14px 18px;
        font-size: 18px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }
    nav .dropdown-content {
        position: static;
        box-shadow: none;
        background: #fff;
        border-radius: 0;
    }
    nav .dropdown-content a {
        padding-left: 36px;
        font-size: 17px;
    }
    nav .dropdown .dropbtn::after {
        content: "▼";
        margin-left: 6px;
        font-size: 11px;
    }
}

/* Better tap targets for mobile */
@media (max-width: 600px) {
    nav a, nav .dropbtn {
        font-size: 16px;
        padding: 16px 10px;
    }
    nav .dropdown-content {
        min-width: 100%;
    }
}

/* Hide default bullets in dropdowns */
nav ul, nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ===================== */
/* HERO SECTION */
/* ===================== */
/* .hero {
  width: 100%;
  min-height: 420px;
  background: linear-gradient(90deg, #225ae3e6 30%, #8b32c2e3 90%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
} */
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
}
.hero-title {
  color: #fff;
  font-size: 72px;
  margin: 16px 0 10px 0;
  font-weight: bold;
  letter-spacing: 2px;
}
.breadcrumbs {
  color: #fff;
  font-size: 22px;
}
.breadcrumbs span {
  color: #fff;
  opacity: 0.8;
}

/* ===================== */
/* SOCIAL ICONS */
/* ===================== */
.socials a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 20%;
  width: 30px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  transition: background 0.2s, color 0.2s;
}
.socials a:hover { color: #fff; background: #4a6eea; }
.socials a.facebook:hover { background: #3b5998; }
.socials a.twitter:hover { background: #1da1f2; }
.socials a.linkedin:hover { background: #0077b5; }
.socials a.youtube:hover { background: #ff0000; }
.socials a.skype:hover { background: #00aff0; }

/* ===================== */
/* RESPONSIVE QUERIES */
/* ===================== */

/* Tablets */
@media (max-width: 900px) {
  nav {
    gap: 16px;
    font-size: 16px;
  }
  .quote-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* Mobile (Hamburger Menu) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 100;
  }
  nav.show {
    display: flex;
  }
  nav a {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }
  .quote-btn {
    width: calc(100% - 40px);
    margin: 12px 20px;
    text-align: center;
  }
}

/* Make hero full height (or desired height) */
.hero {
  width: 100%;
  height: 60vh; /* full viewport height */
  position: relative;
  overflow: hidden;
}

/* Slider container fills hero */
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0; /* remove border radius if any */
  z-index: 1;
}

/* banner codes */
.home-banner {
  width: 100%;
  min-height: 30vw;
  position: relative;
  overflow: hidden;
}
.banner-swiper, .banner-swiper .swiper-wrapper, .banner-slide {
  width: 100%;
  min-height: 30vw;
}
.banner-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36vw;
}
.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg,rgba(35,40,90,0.65) 25%,rgba(42,38,117,0.43) 95%);
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
  background: rgba(0,0,0,0.15);
  border-radius: 18px;
}
.banner-content h1 {
  font-size: 2.0em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.7px;
  line-height: 1.1;
}
.banner-content p {
  font-size: 1.15em;
  font-weight: 400;
  margin-bottom: 25px;
}
.banner-btn {
  display: inline-block;
  padding: 13px 36px;
  font-size: 1.1em;
  color: #fff;
  background: linear-gradient(90deg,#ffcb05 30%,#ff9900 100%);
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(255,203,5,0.13);
  transition: background 0.28s, color 0.2s;
}
.banner-btn:hover {
  color: #22285d;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(34,40,93,0.10);
}
.swiper-button-next, .swiper-button-prev {
  color: #ffcb05;
  text-shadow: 0 2px 10px #22285d;
  filter: drop-shadow(0 2px 8px #232650);
}
.swiper-pagination-bullet-active {
  background: #ffcb05;
}
/* Responsive for mobile */
@media (max-width: 900px) {
  .banner-content h1 { font-size: 1.2em; }
  .banner-content p { font-size: 1em; }
  .banner-slide { height: 44vw!important; min-height: 210px!important; }
}
@media (max-width: 600px) {
  .home-banner, .banner-swiper, .banner-swiper .swiper-wrapper, .banner-slide { 
    min-height: 160px!important; height: 42vw!important;
  }
  .banner-content { padding: 15px 5px; }
}






/* highlights-section */

.highlights-section {
  background: #fff; /* White background */
  padding: 45px 15px 50px 15px;
  margin-top: 0;
  color: #333;
}
.highlights-section .container {
  max-width: 1100px;
  margin: auto;
}
.hl-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 1px;
  color: #14285d;
}
.hl-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* default card style */
.hl-card {
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 28px 30px;
  min-width: 180px;
  text-align: center;
  flex: 1 1 200px;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* hover effect for all cards */
.hl-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* icon styling */
.hl-icon {
  font-size: 38px;
  margin-bottom: 8px;
  color: #fff;
}
.hl-number {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 7px;
  letter-spacing: 2px;
}
.hl-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Assign each box a distinct color */
.hl-card:nth-child(1) { background: #ff6b6b; } /* red/pink */
.hl-card:nth-child(2) { background: #4ecdc4; } /* turquoise */
.hl-card:nth-child(3) { background: #ffa502; } /* orange */
.hl-card:nth-child(4) { background: #1e90ff; } /* blue */
.hl-card:nth-child(5) { background: #9b59b6; } /* purple */

/* On hover, slightly brighten colors */
.hl-card:nth-child(1):hover { background: #ff8787; }
.hl-card:nth-child(2):hover { background: #5fe3d9; }
.hl-card:nth-child(3):hover { background: #ffba45; }
.hl-card:nth-child(4):hover { background: #4caeff; }
.hl-card:nth-child(5):hover { background: #b67fd1; }

@media (max-width: 850px) {
  .hl-cards { gap: 18px; }
  .hl-card { min-width: 140px; padding: 22px 12px; }
  .hl-icon { font-size: 30px; }
  .hl-number { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hl-cards { flex-direction: column; align-items: center; gap: 15px; }
  .hl-card { width: 100%; }
}



/* testimonials-section */
.testimonials-section {
  background: #f8f9fc;
  padding: 70px 18px;
}

.testimonial-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #14285d;
}

#testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px); /* desktop default */
  background: linear-gradient(120deg, #e1efff 0%, #f9ffff 100%);
  box-shadow: 0 8px 32px rgba(60,123,226,0.11),
              0 1.5px 8px rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  margin-right: 20px;
}

.testimonial-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 100%;
  border: 3px solid #4a6eea;
  margin-bottom: 15px;
}

.testimonial-person {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-company span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a6eea;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  background: #f4faff;
  border-left: 4px solid #4a6eea;
  padding: 12px 15px;
  border-radius: 8px;
}

.testimonial-controls {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.testimonial-arrow {
  background: #4a6eea;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.testimonial-arrow:hover {
  background: #16c0fe;
}

#testimonial-step {
  font-size: 1.1rem;
  color: #1940a6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}



/* Certificates Section */
.certificates-section {
    background: #f8f9fc;
    padding: 60px 20px;
    text-align: center;
}

.certificates-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #14285d;
    margin-bottom: 8px;
}

.certificates-section .section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.certificate-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 4px solid #4a6eea;
    transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-image img {
    transform: scale(1.03);
}

.certificate-title {
    padding: 12px;
    font-weight: 600;
    color: #14285d;
    font-size: 15px;
    background: #fafbfe;
}


/* lighbox certificate style */


/* Lightbox Popup */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    animation: fadeIn 0.3s ease;
}

/* Lightbox animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90vw;       /* Up to 90% of the viewport width */
    max-height: 90vh;      /* Up to 90% of the viewport height */
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease forwards;
    object-fit: contain;   /* Keeps full image visible within boundaries */
}


@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Caption below image */
#lightboxCaption {
    margin: 15px auto;
    text-align: center;
    color: #fff;
    font-size: 16px;
    max-width: 80%;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.close-btn:hover {
    color: #ff5252;
}

/* Responsive tweaks */
@media (max-width: 500px) {
    .certificate-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .close-btn {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
}


/* amazon product section */
/* Section Styling */
.amazon-section {
    padding: 50px 20px;
    background-color: #fff8f0;
}

.amazon-section .container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.amazon-section h2 {
    color: #232f3e;
    font-size: 28px;
    margin-bottom: 20px;
}

.amazon-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Grid Layout for Products */
.amazon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-items: center;
}

/* Product Card Styling */
.amazon-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.amazon-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 15px;
    border-radius: 6px;
    object-fit: contain;
}

.amazon-card h3 {
    font-size: 17px;
    color: #232f3e;
    margin: 10px 0 8px;
    min-height: 48px;
    line-height: 1.3;
}

.amazon-card .price {
    color: #059209;
    font-weight: 700;
    margin: 8px 0 15px;
    font-size: 18px;
}

.btn-buy {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    width: 90%;
    margin: 0 auto;
    transition: background 0.25s ease;
}

.btn-buy:hover {
    background: #e68a00;
}

/* Responsive Layouts */
@media (max-width: 1400px) {
    .amazon-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
    .amazon-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .amazon-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .amazon-grid { grid-template-columns: 1fr; }
    .amazon-card { max-width: 300px; }
}


/* footer section */

.custom-footer {
    background: linear-gradient(90deg, #14285d 60%, #287efb 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding-top: 48px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px 28px 30px;
}

.footer-col {
    min-width: 210px;
}

.footer-logo {
    width: 54px;
    border-radius: 15px;
    margin-bottom: 11px;
    background: #fff;
    padding: 3px;
}

.footer-company {
    font-size: 1.35em;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-col.about p {
    font-size: 1em;
    color: #deebf7;
    margin: 14px 0 20px 0;
    line-height: 1.5;
}

.footer-socials a {
    display: inline-block;
    margin-right: 12px;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    line-height: 35px;
    text-align: center;
    font-size: 1.2em;
    transition: background 0.25s, color 0.25s, transform 0.3s;
}
.footer-socials a:hover {
    background: #ffd700;
    color: #14285d;
    transform: scale(1.14) rotate(-8deg);
}

.footer-col h3 {
    font-weight: 700;
    margin-bottom: 13px;
    letter-spacing: .5px;
    color: #ffd700;
    font-size: 1.13em;
}

.footer-col.links ul,
.footer-col.contact ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-col.links ul li {
    margin-bottom: 10px;
}
.footer-col.links ul li a {
    color: #deebf7;
    text-decoration: none;
    transition: color 0.22s;
}
.footer-col.links ul li a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-col.contact ul li {
    margin-bottom: 11px;
    display: flex; align-items: center;
    gap: 8px;
    color: #e5eefd;
    font-size: 1em;
}
.footer-col.contact a { color: #dae7ff; }
.footer-col.contact a:hover { color: #ffd700; }

/* Newsletter Styling */
.newsletter-form {
    display: flex;
    margin-bottom: 6px;
}
.newsletter-form input[type="email"] {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 10px 16px;
    font-size: 1em;
    outline: none;
    background: #fff;
    color: #14285d;
    width: 70%;
    min-width: 0;
}
.newsletter-form button {
    border: none;
    border-radius: 0 25px 25px 0;
    background: #ffd700;
    color: #14285d;
    padding: 0 15px;
    font-size: 1.18em;
    cursor: pointer;
    transition: background 0.26s;
}
.newsletter-form button:hover {
    background: #fff;
    color: #287efb;
}
.newsletter-note {
    color: #f0edba;
    font-size: 0.97em;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.10);
    color: #fff;
    text-align: center;
    padding: 14px 0 10px;
    letter-spacing: .4px;
    font-size: 1em;
    font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* Responsive Tweaks */
@media (max-width: 750px) {
    .footer-main {
        gap: 24px;
        padding: 0 10px 24px 10px;
    }
    .footer-col {
        min-width: 160px;
    }
}
@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials { margin-bottom: 16px; }
}


/* service page */
body {
            background: #f6f7fa;
        }
        .main-container {
            max-width: 1280px;  
            width: 96vw;
            margin: 0 auto;
            box-sizing: border-box;
        }
        .service-feature {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
            margin: 40px auto 0 auto;
            flex-wrap: wrap;
        }
        .feature-text {
            flex: 2 1 400px;
            min-width: 270px;
        }
        .feature-text h1 {
            font-size: 2.7em;
            color: #14285d;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .feature-text p {
            font-size: 1.22em;
            color: #004d40;
            line-height: 1.7;
        }
        .feature-text .highlight {
            color: #ffcb05;
            font-weight: 600;
        }
        .feature-image {
            flex: 1 1 290px;
            width: 320px;
            max-width: 98vw;
            border-radius: 13px;
            box-shadow: 0 4px 24px rgba(40,45,80,0.10);
            object-fit: cover;
            margin: 0;
        }
        @media (max-width: 900px) {
            .service-feature {
                flex-direction: column;
                gap: 30px;
                padding: 0 2vw;
            }
            .feature-image {
                width: 100%;
                max-width: 97vw;
                margin: 0 auto;
            }
            .feature-text h1 {
                font-size: 1.7em;
            }
            .feature-text p { font-size: 1.04em;}
        }
        /* Feature Card Style: slightly smaller than main container, centered */
        .feature-card {
            max-width: 1120px;
            width: 88vw;
            margin: 42px auto 0 auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 6px 34px rgba(20, 40, 93, 0.07);
            padding: 35px 24px 28px 24px;
        }
        .feature-card h2 {
            color: #ffcb05;
            font-size: 2em;
            font-weight: 700;
            text-align: center;
            margin: 0 0 20px 0;
        }
        .feature-card p,
        .feature-card ul {
            font-size: 1.16em;
            color: #004d40;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .feature-card ul {
            padding-left: 32px;
        }
        @media (max-width: 900px) {
            .main-container, .feature-card {
                max-width: 100vw;
                width: 100vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .feature-card {
                padding: 28px 2vw 22px 2vw;
            }
            .feature-card h2 {
                font-size: 1.24em;
            }
        }
        /* Responsive for mobile/screens */
@media (max-width: 1100px) {
    .main-container, .feature-card, .service-feature {
        max-width: 100vw;
        width: 99vw;
    }
    .feature-card {
        padding: 24px 2vw 16px 2vw;
    }
}

/* Whatsapp feature */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 26px;
    right: 26px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 6px 22px rgba(40,45,80,0.22);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7em;
    transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
    box-shadow: 2px 8px 32px rgba(37,211,102,.22);
    transform: scale(1.08);
    color: #fff;
}


/* footer company build */

.company-build {
    color: #e0f02d;
    font-weight: bold;
    text-decoration: none;
    
}
