/* =====================
   Reset & Base
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* =====================
   Contact Header
===================== */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #e7e802;
    color: #333;
    flex-wrap: wrap;
    gap: 10px;
}
/* Left side: logo + contact info */
.contact-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
/* Each contact item (logo, call, email, hours) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon images */
.contact-item img {
    width: 25px;
    height: auto;
}
/* Logo specifically */
.contact-item .logo img {
    width: 150px;
    max-width: 100%;
    height: auto;
}
/* Contact info text */
.contact-item h4 {
    font-size: 12px;
    line-height: 1.3;
}

/* Define the keyframes for the flicker animation */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1; /* Fully visible */
  }
  20%, 24%, 55% {
    opacity: 0; /* Fully transparent */
  }
}

.flicker p {
    font-size: 1rem;
    text-align: right;
    font-weight: bold;
    animation: flicker 1.5s infinite linear; /* Adjust duration and timing as needed */
}

/* =====================
   Responsive (Mobile)
===================== */
@media (max-width: 768px) {
    /* Stack everything vertically */
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5%;
    }

    /* Left side items stack vertically */
    .contact-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    /* Scale logo */
    .contact-item .logo img {
        width: 120px;
    }

    /* Smaller text */
    .contact-item h4 {
        font-size: 0.9rem;
    }

    /* Tagline below contact items, left-aligned */
    .flicker {
        margin-top: 10px;
        width: 100%;
    }

    .flicker p {
        text-align: left;
        font-size: 0.95rem;
    }
}

/* =====================
   Header & Navigation
===================== */
.header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 23%;
  background: #66c337;
  position: relative;
  z-index: 999;
}
/* Hidden checkbox for mobile menu toggle */
#menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 25px;
}

.header .logo img {
    width: 150px;       /* default desktop width */
    max-width: 100%;    /* never overflow its container */
    height: auto;       /* maintain aspect ratio */
}

/* Optional: smaller logo on mobile */
@media (max-width: 768px) {
    .header .logo img {
        width: 120px;   /* scale down for mobile */
    }
}

/* ---------------------
   Nav Links
--------------------- */
/* Nav links container */
.nav-links {
  display: flex;
}
.nav-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-links ul li > a.disabled{
    pointer-events: none;
    cursor: default;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 2px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links ul li a:hover,
.nav-links ul li a:focus {
  color: #000;
  background-color: rgba(255,255,255,0.2);
}

/* Desktop: inline menu */
@media (min-width: 769px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding-top: 0;
        display: flex !important;
        flex-direction: row;
    }

    .nav-links ul {
        flex-direction: row;
        gap: 30px;
        padding-left: 0;
    }

    .nav-links ul li a {
        padding: 10;
        background: none;
        color: black;
        font-size: 11px;
    }

    .nav-links ul li a:hover {
        color: #e3e300;
    }
}

/* Hamburger icon */
.header .fa-bars {
    display: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

/* ---------------------
   Dropdown Menu
--------------------- */
.dropdown-parent {
    position: relative;
}

/* Hidden by default */
.dropdown {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #66c337;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 5px;
    z-index: 999;
}
/* Show ONLY on hover (desktop) */
.dropdown-parent:hover .dropdown {
    display: block !important;
}
.dropdown li {
    padding: 8px 15px;
}
.dropdown li a {
    color: #fff;
    text-decoration: none;
}
/* Mobile: dropdown NOT forced to show */
/* MOBILE (no hover on phones) */
@media (max-width: 768px) {
    .dropdown {
        position: static;
        background: #028fc1;
        padding-left: 20px;
    }

    .dropdown-parent:hover .dropdown {
        display: none !important;   /* prevent hover on mobile */
    }

    .dropdown-parent:focus-within .dropdown {
        display: block !important;  /* open when user taps */
    }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Stack nav links vertically & hide by default */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #66c337;
    flex-direction: column;
    padding-top: 60px;
    transition: right 0.3s ease;
  }

  /* Show nav when checkbox is checked */
  #menu-toggle:checked + .hamburger + .nav-links {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
  }

  /* Dropdown on mobile using focus-within */
  .dropdown-parent:focus-within .dropdown {
    display: flex;
    flex-direction: column;
  }

  .dropdown-parent > a {
    display: block;
    cursor: pointer;
  }
}
/* =====================
   Hero Section
===================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;            /* full screen */
    overflow: hidden;
}
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
/* All images stacked on top of each other */
/* All slides stacked */
.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 48s infinite;  /* 48s total for 12 slides (4s per slide) */
}
/* Delay each image for sequential fade */
.hero-slide img:nth-child(1) { animation-delay: 0s; }
.hero-slide img:nth-child(2) { animation-delay: 4s; }
.hero-slide img:nth-child(3) { animation-delay: 8s; }
.hero-slide img:nth-child(4) { animation-delay: 12s; }
.hero-slide img:nth-child(5) { animation-delay: 16s; }
.hero-slide img:nth-child(6) { animation-delay: 20s; }
.hero-slide img:nth-child(7) { animation-delay: 24s; }
.hero-slide img:nth-child(8) { animation-delay: 28s; }
.hero-slide img:nth-child(9) { animation-delay: 32s; }
.hero-slide img:nth-child(10) { animation-delay: 36s; }
.hero-slide img:nth-child(11) { animation-delay: 40s; }
.hero-slide img:nth-child(12) { animation-delay: 44s; }

/* Keyframes for fade-in/out */
@keyframes slideAnimation {
    0% { opacity: 0; }
    8% { opacity: 1; }       /* fade in */
    33% { opacity: 1; }      /* stay visible */
    41% { opacity: 0; }      /* fade out */
    100% { opacity: 0; }
}

/* Overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.text-box {
    text-align: center;
    padding: 20px 5%;
}

.text-box h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #66c337;
}

.text-box p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 10px 25px;
    background-color: #01a2dc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #66c337;
}

/* =====================
   Services Section
===================== */
.course {
    padding: 50px 5%;
    background: #66c337;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.course-col {
    background: #e5e500;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.course-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.course-col h3 {
    margin-bottom: 10px;
}

/* =====================
   Portfolio Section
===================== */
.campus {
    padding: 50px 5%;
    text-align: center;
}
.campus h1{
    color: #66c337;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.portfolio-grid img {
    width: 60%;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio-grid img:hover {
    transform: scale(1.05);
}

/* =====================
   Testimonials Section
===================== */
.testimonials {
    padding: 50px 5%;
    background: #f4f4f4;
    text-align: center;
}

.testimonials .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-col {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.testimonial-col img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

.testimonial-col h3 {
    margin-top: 10px;
}

.testimonial-col i {
    color: #ffc107;
}

/* =====================
   Footer
===================== */
footer {
    background: #66c337;
    color: #fff;
    padding: 30px 5%;
    text-align: center;
}

footer .footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

footer .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

footer .footer-socials a {
    color: #fff;
    margin: 0 5px;
    font-size: 20px;
}

footer .footer-copy {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {

    /* Hamburger */
    .header .fa-bars {
        display: block;
    }

    /* Mobile nav width */
    .nav-links {
        width: 100%;
        right: -100%;
    }

    /* Contact Header stacking */
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-left {
        gap: 15px;
    }

    /* Hero text & images */
    .text-box h1 {
        font-size: 2rem;
    }

    .hero-slide img {
        max-width: 90%;
    }
}
/*---contact---page-------section--------*/
.contact-section {
    padding: 60px 5%;
    background: #f4f4f4;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contact-container h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #65c237;
}

.contact-intro {
    color: #444;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 15px rgba(0,0,0,0.15);
}

.contact-box h3 {
    margin-bottom: 10px;
    color: #65c237;
}

.contact-box p {
    color: #333;
    font-size: 1rem;
}

/*---contact---page-------section-------*/

/*---about us---page-------section-------*/
.about-section {
  width: 100%;
  padding: 70px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.about-container h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #66c337;
}

.about-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #444;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-box {
  background: #66c337;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #e4e6eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.about-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
}

.about-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-container h1 {
    font-size: 2.2rem;
  }

  .about-intro {
    font-size: 1rem;
  }
}
/*---about us---page-------section-------*/

/*------payment--------section----------*/
.payment-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 40px 20px;
      text-align: center;
    }

    .payment-section h1 {
      color: #007e2b; /* M-Pesa green */
      margin-bottom: 10px;
    }

    .payment-section p {
      font-size: 1rem;
      margin-bottom: 30px;
    }

    .payment-box {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px 0;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 600px) {
      .payment-box {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------payment--------section----------*/
/*------WEB-DESIGN--------section----------*/
  /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box h2{
        color: #66c337;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px; /* spacing between cards */
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }
    .packages h2{
        color: #66c337;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------WEB--DESIGN--------section----------*/
/*------music--production--------section----------*/
 /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px; /* spacing between cards */
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------music--production--------section----------*/
/*------mixing and mastering--------section----------*/
/* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px; /* spacing between cards */
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------mixing and mastering--------section----------*/
/*------video---editing--------section----------*/
 /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px; /* spacing between cards */
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------video---editing--------section----------*/
/*------event--shooting--------section----------*/
 /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------event--shooting--------section----------*/
/*------logo--design--------section----------*/
 /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------logo--design--------section----------*/
/*------banner--design--------section----------*/
 /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------banner--design--------section----------*/
/*------social--media--management--------section----------*/

    /* Service Header */
    .service-header {
      background-color: #66c337;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
    }

    .service-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .service-header p {
      margin: 5px 0 0 0;
      font-size: 1rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-box, .payment-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      text-align: center;
    }

    .service-box p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      width: 100%;
      max-width: 1000px;
      margin-bottom: 30px;
    }

    .package-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .package {
      background-color: #66c337;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .package:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .package h3 {
      margin-bottom: 15px;
    }

    .package p {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 15px;
    }

    /* Payment Section */
    .payment-box {
      text-align: center;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .payment-box h3 {
      margin: 15px 0 10px;
    }

    .payment-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .payment-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .package-grid {
        flex-direction: column;
        align-items: center;
      }
      .package {
        flex: 1 1 80%;
      }
    }

    @media (max-width: 600px) {
      .service-box, .payment-box, .packages {
        padding: 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------social--media--management--------section----------*/
/*------donate--------section----------*/
 /* Header Section */
    .donate-header {
      background-color: #66c337;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .donate-header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .donate-header p {
      margin: 10px 0 0 0;
      font-size: 1.2rem;
      color: #fff;
    }

    main {
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .donate-box {
      background-color: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
    }

    .donate-box p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .mpesa-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .donate-box h3 {
      margin: 15px 0 10px;
    }

    .donate-box ol {
      text-align: left;
      margin: 0 0 20px 20px;
    }

    .donate-note {
      font-style: italic;
      color: #555;
      margin-top: 20px;
    }

    @media (max-width: 600px) {
      .donate-box {
        padding: 30px 20px;
      }
      .mpesa-logo {
        width: 120px;
      }
    }
/*------donate--------section----------*/


/*------shop--------section----------*/

/* Header */
.shop-header {
  background-color: #66c337;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.shop-header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.product-details {
  padding: 10px;
}

.product-details h3 {
  margin: 10px 0 5px;
  color: #66c337;
}

.buy-button {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #66c337;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Payment section */
#payment {
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-top: 20px;
}

.mpesa-logo {
  width: 150px;
  margin-bottom: 20px;
}

#payment ol {
  display: inline-block;
  text-align: left;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card img {
    height: 180px;
  }
  .mpesa-logo {
    width: 120px;
  }
}
/*------shop--------section----------*/