@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}
:root {
  --bg-color: #03182d;
  --font: #000000;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

section {
  padding: 30px 5%;
}
/* =============== youtbe shorts-------------------- */
.floating-video {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  height: 444px; /* Shorts aspect ratio: 9:16 */
  border: 2px solid #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
  background: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease-out;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-weight: bold;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .floating-video {
    width: 180px;
    height: 320px;
    bottom: 10px;
    right: 10px;
  }
}

/* ============== Whatsapp ===================*/
/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* background: #25d366; */
  color: rgb(30, 255, 0);
  padding: 10px;
  font-size: 54px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-button:hover {
  transform: scale(1.1) rotate(5deg);
}
header {
  height: 65px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0000003b;
  z-index: 100;
  transition: 0.3s;
  /* border-bottom: 1px solid black; */
}

header .logo img {
  top: 6px;
  position: relative;
  height: 80px;
  width: 220px;
  padding: 5px 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  font-size: 15px;
  display: inline-flex;
  font-weight: 600;
  color: white;
}
.navlist li a:hover {
  color: white;
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
}
.btn {
  background: var(--font);
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* animation in header */

@keyframes move {
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.animat {
  opacity: 0;
  transform: translateX(-300px);
  animation: moveup 0.8s linear forwards;
}
@keyframes moveup {
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* ======================== slider section ============== */
/* === DESKTOP SLIDER === */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8% 5% 0 10%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  z-index: 0;
}

.slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
/* --- NEW CLEAN HEADLINE STYLE --- */

.headline-grid {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  z-index: 5;
  position: relative;
}

.headline-title {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.headline-subtext {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 550px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.know-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(90deg, #0cd47d, #18b6b6);
  color: #fff;
  border-radius: 35px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.know-btn:hover {
  opacity: 0.85;
}

/* === MOBILE VIEW === */
.mobile-view {
  display: none;
}

/* === RESPONSIVE SWITCHING === */
@media (max-width: 768px) {
  .slider {
    display: none;
  }

  .mobile-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("/bl2.png") no-repeat center center/cover;
    height: 100vh;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.55);
    color: white;
  }

  .heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .content {
    font-size: 16px;
    line-height: 1.5;
  }

  .video-button {
    margin-top: 25px;
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
}
/* ==============card design========== */

.video-section {
  position: relative;
  width: 100%;
  height: 200px; /* Reduced height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.heading {
  text-align: center;
  color: #000000;
  z-index: 2;
}

.heading h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding: 20px 0;
}
.heading p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .video-section {
    height: 240px; /* Slightly smaller for mobile */
  }

  .heading h2 {
    font-size: 28px; /* Adjusted for smaller screen */
  }
  .heading p {
    font-size: 12px;
  }
}

.card {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-image: url("Untitled\ design.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}
.gallery:hover {
  transform: scale(1.05) rotateY(5deg);
}
.gallery {
  transition: transform 0.3s ease-in-out;
  flex: 1 1 calc(30% - 20px);
  max-width: 30%;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0) 0px 5px 3px, rgb(0, 0, 0) 0px 15px 15px;
}

.gallery img {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 300px; /* Adjust height as per your design */
  padding: 10px;
  border-radius: 20px;
  object-fit: cover; /* Ensures the image doesn’t stretch */
}

.inf {
  color: rgb(0, 0, 0);
  padding: 10px;
  text-align: center;
}
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.buttons button {
  flex: 1;
  margin: 0 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: var(--bg-color);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  text-align: center;
}

.buttons button:first-child {
  margin-left: 0;
}

.buttons button:last-child {
  margin-right: 0;
}

.buttons button:hover {
  background-color: #b96600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    flex: 1 1 calc(45% - 20px);
    max-width: 45%;
  }

  .gallery img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .gallery img {
    height: 180px;
  }
}

/* ================= why choose ================= */

.choose {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
}
.close {
  text-align: center;
  width: 100%;
  padding: 10px;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 5px 20px,
    rgba(1, 26, 56, 0.23) 0px 6px 6px;
  border-radius: 20px;
}
.close h3 {
  font-size: 20px;
  text-align: center;
}
.close .image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.image img {
  position: relative;
  width: 300px;
  height: 220px;
  border-radius: 20px;
  padding: 10px;
  object-fit: cover;
}
.close .intro p {
  width: 100%;
  text-align: center;
  padding-top: 15px;
}
/* ================= oure revolution section ======== */

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #121212;
  padding: 50px 20px;
  flex-wrap: wrap;
  color: white;
  text-align: center;
}

.stat {
  flex: 1 1 200px;
  margin: 20px;
}

.stat-icon {
  width: 50px;
  margin-bottom: 20px;
}

.stat h2 {
  font-size: 28px;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.stat p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ============== About Section =========== */
.parallax-section {
  background-image: url("sunset-sky-powers-wind-solar-energy-generated-by-ai.jpg"); /* Your image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
}

.parallax-section::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6); /* Overlay */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.parallax-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.layout.reverse {
  flex-direction: row-reverse;
}

.about-content,
.about-video {
  flex: 1 1 45%;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p,
.about-content ol {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #f7b500;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.about-video img {
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .parallax-section {
    padding: 50px 10px;
    min-height: 100vh;
  }

  .layout {
    flex-direction: column;
    gap: 30px;
  }

  .layout.reverse {
    flex-direction: column;
  }

  .about-content,
  .about-video {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-content p,
  .about-content ol {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
  }

  .about-content ol {
    padding-left: 20px;
  }

  .about-video img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }
}

/* ========================== our Founder ====================== About */

.why-axis {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.text-section {
  flex: 1 1 45%;
  min-width: 280px;
}

.text-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.text-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #444;
}

.text-section strong {
  font-weight: bold;
  color: #000;
}

.image-section {
  flex: 1 1 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.profile-card {
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 220px;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #000000;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.profile-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #000000;
}

.profile-card p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .why-axis {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .image-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .profile-card {
    width: 100%;
    max-width: 300px;
  }
}
/* Section Wrapper with Fixed Background */
  /* background-image: url("sunset-sky-powers-wind-solar-energy-generated-by-ai.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; Parallax effect */

.section-wrapper.financial-style {
  padding: 60px 8%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b3b74;
  margin-bottom: 40px;
}

/* ===========================
   GRID – DESKTOP (DEFAULT)
=========================== */
.product-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Cards per row */
  gap: 40px;
  justify-content: center;
}

/* CARD */
.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  transition: all 0.35s ease;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ON HOVER */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: 0.3s ease;
}

/* HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.06);
  filter: brightness(55%);
}

/* TEXT OVERLAY */
.product-card-content {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.product-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* BUTTON */
.product-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #0b3b74;
}

/* ================================================
   RESPONSIVE DESIGN  
================================================ */

/* 📌 Large Tablets – 1024px: 3 Cards per row */
@media (max-width: 1024px) {
  .product-type-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .section-heading {
    font-size: 36px;
  }
}

/* 📌 Tablets – 768px: 2 Cards per row */
@media (max-width: 768px) {
  .product-type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .product-card {
    height: 230px;
  }

  .product-card-content h3 {
    font-size: 20px;
  }
}

/* 📌 Mobile – 550px: 1 Card per row */
@media (max-width: 550px) {
  .product-type-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card {
    height: 220px;
  }

  .product-card-content h3 {
    font-size: 18px;
  }

  .section-heading {
    font-size: 30px;
  }
}

/* 📌 Small Mobile – 400px */
@media (max-width: 400px) {
  .product-card {
    height: 200px;
  }

  .product-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* ===== Additional Sections ===== */
.content-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.content-section h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
}


/* ============ Parallax Background project section ============ */

.sections {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.sections.show {
  opacity: 1;
  transform: translateY(0);
}

.g-item {
  /* border: 2px solid red; */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 5px;
  /* background-color: #f4f4f4; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
}
.grid-item {
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.grid-item:hover {
  transform: translateY(-5px);
}
.grid-item i {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
}
.grid-item h3 {
  font-size: 18px;
  margin: 0;
  color: #555;
}
@media (max-width: 480px) {
  .grid-item {
    padding: 15px;
  }
  .grid-item i {
    font-size: 30px;
  }
  .grid-item h3 {
    font-size: 16px;
  }
}
/* ============================ Product Cards ================== */
.cardone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.galleryone {
  flex: 1 1 calc(30% - 20px);
  max-width: 30%;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0) 0px 5px 3px, rgb(0, 0, 0) 0px 15px 15px;
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
}

.galleryone:hover {
  transform: scale(1.05) rotateY(5deg);
}

.galleryone img {
  width: 100%;
  height: 300px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
}

.infone {
  color: #000;
  padding: 15px;
  text-align: center;
}

.buttonsone {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.buttonsone button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: #000000;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.buttonsone button:hover {
  background-color: #262626;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .galleryone {
    flex: 1 1 calc(45% - 20px);
    max-width: 45%;
  }

  .galleryone img {
    height: 200px;
  }

  .parallaxcontentone h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .galleryone {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .galleryone img {
    height: 180px;
  }

  .parallaxcontentone h2 {
    font-size: 28px;
  }
}
/* =============  solar /hybird / wind ================= */

.windturbn {
        background-image: url("img/3dbg.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 60px 0;
        position: relative;
      }
      .windturbn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 35, 78, 0.55);
        backdrop-filter: blur(2px);
      }
      .windturbn > * {
        position: relative;
        z-index: 2;
      }

      .windturbn-intro {
        max-width: 1280px;
        margin: 40px auto;
        font-size: 18px;
        text-align: center;
        padding: 0 20px;
        color: #fff;
      }

      .windturbn-tabs-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        padding: 0 20px;
      }
      .windturbn-tabs {
        display: flex;
        gap: 12px;
        background: rgba(255, 255, 255, 0.8);
        padding: 6px;
        border-radius: 14px;
        backdrop-filter: blur(6px);
      }
      .windturbn-tab {
        border: 0;
        background: #fff;
        padding: 12px 30px;
        border-radius: 14px;
        font-size: 18px;
        cursor: pointer;
        color: #666;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: 0.25s;
      }
      .windturbn-tab.active {
        background: #003c78;
        color: #fff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      }

      .windturbn-panel {
        max-width: 1280px;
        margin: 20px auto 60px;
        padding: 0 20px;
      }

      .windturbn-content {
        display: flex;
        gap: 40px;
        background: rgba(255, 255, 255, 0.92);
        padding: 32px;
        border-radius: 16px;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(12px);
      }
      .windturbn-text {
        flex: 1;
        min-width: 250px;
      }
      .windturbn-text h2 {
        font-size: 40px;
        color: #003c78;
        margin-bottom: 14px;
      }
      .windturbn-text p {
        margin-bottom: 14px;
        font-size: 17px;
      }

      .windturbn-media {
        flex: 1;
      }
      .windturbn-media img {
        width: 100%;
        border-radius: 16px;
        display: block;
      }

      .windturbn-hidden {
        display: none;
      }

      @media (max-width: 900px) {
        .windturbn-content {
          flex-direction: column;
          padding: 24px;
        }
        .windturbn-text h2 {
          font-size: 30px;
        }
        .windturbn-intro {
          color: white;
        }
      }
      @media (max-width: 540px) {
        .windturbn-tab {
          padding: 10px 18px;
          font-size: 15px;
        }
      }
/* ===================== Explore ===================== */

.explore {
  background: white;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 5rem 2rem;
}

.exploretitle {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.exploretitle::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #000;
  margin: 0.8rem auto 2rem;
  border-radius: 2px;
}

.exploredesc {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Project Grid - 4 Cards per Row */
.exploreproject {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

/* Card Style - Rectangular Shape */
.explorecard {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 320px; /* Wider rectangle */
  min-height: 160px; /* shorter height */
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.explorecard:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #000;
}

/* Hover Highlight Effect */
.explorecard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  z-index: 0;
}

.explorecard:hover::before {
  left: 0;
}

/* Icon */
.exploreicon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin: 0 auto 1rem;
  transition: transform 0.5s ease;
  z-index: 1;
  position: relative;
}

.explorecard:hover .exploreicon {
  transform: scale(1.1);
}

/* Text */
.explorecard p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #000;
  z-index: 1;
  position: relative;
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .exploreproject {
    grid-template-columns: repeat(2, 1fr);
  }

  .explorecard {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .exploreproject {
    grid-template-columns: 1fr;
  }

  .explore {
    padding: 3rem 1rem;
  }

  .exploretitle {
    font-size: 2rem;
  }

  .exploredesc {
    font-size: 1rem;
  }

  .explorecard {
    max-width: 100%;
    padding: 1.5rem;
  }

  .exploreicon {
    width: 60px;
    height: 60px;
  }
}

/* =========== blog section ================= */

      /* Blog Section */
      .vf-blog-section {
        /*border: 2px solid red;*/
        background-image: url("img/3dbg.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 50px 8%;
        font-family: "Inter", sans-serif;
      }

      .vf-blog-title {
        color: white;
        text-align: center;
        font-size: 32px;
        font-weight: 700;
      }

      .vf-blog-subtitle {
        text-align: center;
        margin-bottom: 40px;
        color: #ffffff;
      }

      /* Grid */
      .vf-blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
        gap: 35px;
      }

      /* Card */
      .vf-blog-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .vf-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      }

      /* Image Box */
      .vf-blog-img-box {
        position: relative;
        height: 210px;
      }

      .vf-blog-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .vf-blog-img-text {
        position: absolute;
        bottom: 15px;
        left: 20px;
        right: 20px;
        color: white;
        font-size: 20px;
        font-weight: 700;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
      }

      /* Content */
      .vf-blog-content {
        padding: 20px 22px 28px;
      }

      .vf-date-tag {
        display: inline-block;
        background: #e0f4ef;
        color: #000000;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 4px;
        margin-bottom: 12px;
      }

      .vf-blog-heading {
        font-size: 20px;
        font-weight: 700;
        margin: 8px 0 12px;
      }

      .vf-blog-text {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
      }

      /* Read More Button */
      .vf-readmore-btn {
        font-weight: 600;
        color: #000000;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
      }

      .vf-readmore-btn:hover {
        color: #000000;
      }

      /* ===================== ANIMATIONS & TRANSITIONS ===================== */

      /* Fade-up animation for cards */
      @keyframes fadeUp {
        0% {
          opacity: 0;
          transform: translateY(40px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Apply fade-up when cards load */
      .vf-blog-card {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
      }

      /* Delay animation for staggered appearance */
      .vf-blog-card:nth-child(1) {
        animation-delay: 0.1s;
      }
      .vf-blog-card:nth-child(2) {
        animation-delay: 0.2s;
      }
      .vf-blog-card:nth-child(3) {
        animation-delay: 0.3s;
      }
      .vf-blog-card:nth-child(4) {
        animation-delay: 0.4s;
      }
      .vf-blog-card:nth-child(5) {
        animation-delay: 0.5s;
      }
      .vf-blog-card:nth-child(6) {
        animation-delay: 0.6s;
      }

      /* Hover Lift Animation */
      .vf-blog-card {
        transition: transform 0.35s ease, box-shadow 0.35s ease;
      }

      .vf-blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
      }

      /* Image Zoom Animation */
      .vf-blog-img-box img {
        transition: transform 0.5s ease;
      }

      .vf-blog-card:hover .vf-blog-img-box img {
        transform: scale(1.08);
      }

      /* Overlay text fade-in on hover */
      .vf-blog-img-text {
        opacity: 1;
        transition: opacity 0.4s ease;
      }

      .vf-blog-card:hover .vf-blog-img-text {
        opacity: 1;
      }

      /* Button subtle movement */
      .vf-readmore-btn {
        transition: color 0.3s ease, transform 0.3s ease;
      }

      .vf-readmore-btn:hover {
        transform: translateX(4px);
      }

      .vf-blog-card {
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      }

      .vf-blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(27, 92, 25, 0.25),
          0 0 18px rgba(5, 48, 34, 0.2); /* subtle green glow */
      }
/* ============== Youtbe video section ======================== */

.heading-3d {
  text-align: center;
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 30px;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #070707, #ffffff);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: perspective(500px) rotateX(10deg) rotateY(-10deg);
  transition: transform 0.3s ease;
}

.heading-3d:hover {
  transform: perspective(500px) rotateX(0deg) rotateY(0deg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  background: rgba(255, 255, 255, 0.215);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  transition: transform 0.3s ease;
  width: auto;
}

.video-card:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.video-title {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: bold;

  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive improvements */
@media (max-width: 500px) {
  .heading-3d {
    font-size: 2em;
    padding: 8px 16px;
  }

  .video-card {
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .video-title {
    font-size: 1em;
  }
}

/* ================== footer=============== */

footer {
  color: #ffffff;
  font-size: 16px;
  background-image: url("/bl2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.9);
}

footer * {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.row {
  padding: 2em 1em;
}

.row.primary {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2em;
}

.column {
  display: flex;
  flex-direction: column;
}

.column h3 {
  color: white;
  font-size: 1.1em;
  margin-bottom: 1em;
}

.about p,
.subscribe p {
  text-align: left;
  line-height: 1.8;
  margin: 0.3em 0;
}

.customer-care {
  margin-top: 1.5em;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 0.1em 0; /* Minimal space between links */
  line-height: 1.4; /* Tight line height */
}

.links a {
  color: #ffffff;
  text-decoration: none;
}

.links a:hover {
  color: white;
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 1em;
  font-size: 2em;
  margin: 1em 0;
}

.social a {
  color: white;
}

.social a:hover {
  color: #ccc;
}

.email {
  margin-top: 1em;
}

.row.copyright {
  text-align: center;
  font-size: 0.9em;
  padding: 1em 0;
}

.row.copyright a {
  color: #ffffff;
  text-decoration: underline;
}

@media screen and (max-width: 850px) {
  .row.primary {
    grid-template-columns: 1fr;
  }
  .social {
    justify-content: center;
  }
}
