* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
}
/* Reusable button */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid black;
  border-radius: 6px;
  color: #000000;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s ease;
}

.btn:hover {
    background: black;
    color: white;
}
.heading{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: black;
}
.heading span{
    background-color: aquamarine;
    color: white;
    display: inline-block;
    padding: .5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%,0% 0%);
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 70px;
}

.logo span {
    color: blue;
    font-size: 28px;
    font-weight: bold;
}
nav {
    align-items: center;
    display: flex;
    gap: 80px;
}
nav a {
    text-decoration: underline;
    color: black;
    font-size: 23px;
    text-transform: lowercase;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HOME SECTION */
.home-section {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    gap: 40px;
}

.bulb {
    width: 300px;
    max-width: 55%;
}

.home-section-content {
    text-align: center;
    max-width: 600px;
}

.home-section-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
}

.home-section-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}
/* BULB ANIMATIONS */
@keyframes floatBulb {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(1.5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255,255,255,0.8));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
    }
}

/* Apply animation */
.bulb {
    animation: floatBulb 5s ease-in-out infinite,
               glow 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* Slight delay for natural feel */
.bulb.right {
    animation-delay: 1.5s;
}

.bulb:hover {
    transform: scale(1.05) rotate(2deg);
}

/* SECTION */
.features-section {
    padding: 60px 40px;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
}


/* GRID */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.feature-card {
    border: 1px solid #999;
    padding: 30px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(110, 28, 235, 0.5);
}

.feature-card img {
    width: 140px;
    margin-bottom: 25px;
}

.feature-card h3 {
    color: blue;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.feature-card button {
    padding: 10px 22px;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.feature-card button:hover {
    background: black;
    color: white;
}



/* OUR SERVICES */
.services {
    padding: 80px 8%;
}

/* HEADING */
.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
}

.section-heading span {
    background: cyan;
    padding: 6px 26px;
    margin-left: 10px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

/* SERVICE ITEM */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

/* REVERSE */
.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-text {
    direction: ltr;
}

/* IMAGE */
.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* TEXT */
.service-text h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.service-text h4 {
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

/* ANIMATION */
.service-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.service-item.show {
    opacity: 1;
    transform: translateY(0);
}


/* CATEGORIES SECTION */
.categories {
    padding: 5px 8%;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.section-title span {
    background: cyan;
    padding: 6px 26px;
    margin-left: 10px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

/* GRID */
.product-grid {
    display: grid;
     padding: 15px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.product-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(238, 18, 18, 0.4);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-card h5 {
    margin-bottom: 10px;
}

/* STARS */
.stars {
    color: gold;
    margin-bottom: 15px;
}


/* REVIEW SLIDER SECTION */
.review-slider-section {
  padding: 40px 10%;
  color: #fc02b1;
  text-align: center;
}

.slider {
  position: relative;
  padding: 20px;
  overflow: hidden;
  max-width: 1200px;
  border-radius: 200px;
  color: #000;
  margin: auto;
}
.subtitle{
    font-size: 30px;
    color: purple;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
}

.slide img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.slide h4 {
  margin-bottom: 5px;
}

.slide span {
  color: #fb4b06;
  font-size: 0.9rem;
}

.slide p {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.stars {
  color: #ffcc00;
  margin: 10px 0;
}


/* BLOGS SECTION */
.pvs-blogs {
  padding: 80px 20px;
  color: #023bf4;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.section-title span {
  color: #ffcc00;
}

.section-subtitle {
  text-align: center;
  font-size: 25px;
  color: #f0be0a;
  margin-bottom: 50px;
}

.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.15);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.blog-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  max-height: 70px;
  overflow-y: auto;
  transition: max-height 0.3s ease;
}
.blog-text::-webkit-scrollbar {
  display: none;
}

.blog-card.active .blog-text {
  max-height: 300px;
}

.read-more {
  margin-top: 15px;
  background: none;
  border: 1px solid #ffcc00;
  color: #ffcc00;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #ffcc00;
  color: #000;
}

/* FOOTER SECTION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f4f6f8;
}

.footer {
    background: #0d1117;
    color: #c9d1d9;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-box {
    flex: 1 1 280px;
}

.footer-box h3 {
    color: #58a6ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-box p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-box a {
    color: #c9d1d9;
    text-decoration: none;
}

.footer-box a:hover {
    color: #58a6ff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #161b22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background: #f9fafa;
    color: #fefefe;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid #21262d;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #8b949e;
}

/* FOOTER SECTION CLOSE */










/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .home-section {
        flex-direction: column;
    }

    .bulb {
        width: 220px;
    }
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-text p {
        text-align: center;
    }

    .service-item.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 90px;
        right: 30px;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    nav a {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    nav.active {
        display: flex;
    }

    .home-section-content h1 {
        font-size: 32px;
    }

    .home-section-content p {
        font-size: 16px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .service-text h3 {
        font-size: 24px;
    }
    .section-title {
        font-size: 32px;
    }
    .section-title {
    font-size: 2rem;
  }
}