/* ========================
   CSS Variables (Dynamic Values)
======================== */
:root {
  --primary-color: #ff9d0b;
  /* Orange */
  --secondary-color: #04c104;
  /* Green */
  --background-color: #ffffff;
  /* Light background */
  --text-color: rgb(73, 71, 71);
  /* Light text color */
  --navbar-bg-color: rgba(77, 77, 77, 0.001);
  /* Navbar background */
  --font-family: "Poppins", sans-serif;
  /* Default font */
  --max-width: 1200px;
  /* Max width for containers */
  --padding: 20px;
  /* Default padding */
  --transition-speed: 0.5s;
  /* Transition speed */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  /* Default shadow */
}

/* ========================
   Global Styles
======================== */
body {
  margin: 0;
  padding: 0;
  background-color: var(--background-);
  color: var(--text-color);
  font-family: var(--font-family);
  overflow-x: hidden;
  /* Prevent horizontal overflow */
}

main hr {
  border: 0;
  background: #9c97f1;
  height: 1.2px;
  margin: 40px 84px;
}

main {
  background-color: white;
}

/* -----------------------------========================---------------------------------
   ---------------------------------Navbar Styles----------------------------------------
   -----------------------------========================--------------------------------- */
/* Navbar Styles */
nav {
  background: #1a1a1a00;
  position: sticky;
  top: 0;
  height: 90px;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

nav:hover {
  background-color: #1a1a1abb;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo and Company Name */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 10px;
  margin-right: 10px;
  margin-top: -30px;
}

.company-name {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  margin-top: 53px;
  margin-left: -95px;
}

.energy {
  color: #ff9900;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.green {
  color: #4caf50;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
} 

.energy,
.green {
  display: inline;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  display: block;
  font-size: 20px;
  font-weight: 500;
  text-shadow: #1a1a1a;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #ff9d0b;
}

/* Mega Menu for Projects and Products */
.mega-box {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100vw;
  background: #1a1a1abb;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1000;
}

.nav-links li:hover .mega-box {
  opacity: 1;
  visibility: visible;
}

.mega-box .content {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-box .row {
  flex: 1;
  margin: 0 20px;
}

.mega-box .row .mega-links {
  list-style: none;
  padding: 0;
}

.mega-box .row .mega-links li a {
  color: #fff;
  padding: 10px 0;
  display: block;
  font-size: 16px;
}

.mega-box .row .mega-links li a:hover {
  color: #ff9d0b;
}

#navbar.scrolled {
  background-color: #1a1a1abb;
}

/* Toggle Button for Mobile */
.toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive Styles */
/* Previous CSS remains the same until the media query */

/* Responsive Styles with Scrollable Mega Menus */
@media (max-width: 768px) {

  nav {
    height: 67px;
  }

  .toggle {
    display: block;
    z-index: 1001;
  }

  .logo img {
    height: 10px;
    margin-left: 50px;
    margin-right: 10px;
    margin-top: -10px;
  }

  .company-name {

    display: none;
  }

  .nav-links {
    position: fixed;
    top: 67px;
    left: -100%;
    width: 100%;
    height: 350px;
    background: rgba(39, 39, 39, 0.795);
    z-index: 1000;
    transition: all 0.5s ease;
    overflow-y: auto;
    flex-direction: column;
    padding: 0;
    margin: 0;
    display: flex !important;
    visibility: hidden;
  }

  .nav-links.active {
    left: 0;
    visibility: visible;
  }

  .nav-links li {
    text-align: left;
    position: relative;
  }

  .nav-links li a {
    padding: 15px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    display: block;
  }

  /* Scrollable Mega Menu */
  .mega-box {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    background: rgba(60, 60, 60, 0.97) !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  .nav-links li.active .mega-box {
    max-height: 60vh;
    /* Changed to viewport height unit */
    overflow-y: auto;
    /* Added scroll when content exceeds height */
  }

  .mega-box .content {
    flex-direction: column;
    padding: 10px !important;
    max-height: 100%;
    /* Ensure content respects parent height */
  }

  .mega-box .row {
    margin: 0 !important;
    padding: 10px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mega-box .row .mega-links li a {
    padding: 8px 15px !important;
  }

  /* Custom scrollbar for mega menu */
  .mega-box::-webkit-scrollbar {
    width: 6px;
  }

  .mega-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }

  .mega-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }
}

/* ---------------------------========================---------------------------
   -------------------------------Header Section---------------------------------
------------------------------========================--------------------------- */
.firstsection {
  position: relative;
  width: 100%;
  height: 104vh;
  top: -120px;
  overflow: hidden;
}

.sliders {
  display: flex;
  transition: transform 10.5s ease-in-out;
  /* Smooth transition */
}

.slide-container {
  width: 100%;
  height: 105vh;
  flex-shrink: 0;
  /* Ensure each slide takes full width */
}

.slides {
  width: 100%;
  height: 100%;
}

.heading-1,
.heading-2,
.heading-3 {
  position: absolute;
  color: white;
  text-align: left;
  /* Align text to the left */
  left: 13%;
  /* Adjust this value to set the horizontal starting point */
  z-index: 10;
  /* Ensure headings are above the image */
  width: auto;
  /* Allow headings to take only the space they need */
  margin: 0;
  /* Remove default margin */
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.heading-1 {
  color: #f4f4f4;
  top: 34%;
  /* Adjust position for the first heading */
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-size: 4.5rem;
  /* Adjust font size */
  font-weight: 600;
}

.heading-2 {
  top: 46%;
  /* Adjust position for the second heading */
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  /* Adjust font size */
  font-weight: 200;
}

.heading-3 {
  top: 53%;
  /* Adjust position for the second heading */
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  /* Adjust font size */
  font-weight: 200;
}

.slider-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.bullet {
  width: 70px;
  /* Length of the line */
  height: 3px;
  /* Thickness of the line */
  background-color: rgba(255, 255, 255, 0.656);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bullet:hover {
  background-color: rgba(145, 255, 27, 0.8);
}

.bullet.active {
  background-color: #ff9616;
  transform: scaleX(1.2);
  /* Expand the line */
}

/* Responsive Header */
@media (max-width: 1024px) {
  .firstsection {
    height: 90vh;
  }
}

@media (max-width: 768px) {
  .firstsection {
    height: 85vh;
  }

  .heading-1 {
    font-size: 2.5rem;
    /* Adjust font size for smaller screens */
  }

  .heading-2 {
    font-size: 1.5rem;
    /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .firstsection {
    height: 80vh;
  }

  .heading-1 {
    font-size: 2rem;
    /* Adjust font size for mobile screens */
  }

  .heading-2 {
    font-size: 1.2rem;
    /* Adjust font size for mobile screens */
  }
}

/* ========================
   Projects Section
======================== */
/* General Styling */
/* General Styles */

#projects {
  padding: 40px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -90px;
}

#projects h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 1px;
  margin-left: -600px;
  padding: 10px 0;
  position: relative;
  /* Required for pseudo-element positioning */
}

#projects h2::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 695px;
  width: 40px;
  height: 40px;
  border-right: 6px solid #ffd700;
  border-top: 6px solid #ffd700;
  transform: translateY(-50%);
}

/* Filter Buttons */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-button {
  padding: 10px 20px;
  background-color: #333;
  /* Dark button background */
  color: #fff;
  /* Light button text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.filter-button:hover {
  background-color: #555;
  /* Lighter on hover */
}

.filter-button.active {
  background-color: #0073e6;
  /* Active button color */
}

/* Project Categories */
.project-categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category {
  display: block;
  /* Ensure categories are visible by default */
}

.category h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #0073e6;
  /* Category heading color */
  text-align: center;
}

/* Project Cards */
.project-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* Enable horizontal scrolling */
  padding-bottom: 20px;
  /* Add space for scrollbar */
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: #0073e600 #efefef;
  /* For Firefox */
}

.project-cards::-webkit-scrollbar {
  height: 8px;
  /* Scrollbar height */
}

.project-cards::-webkit-scrollbar-track {
  background: #d3d3d3;
  /* Dark track */
}

.project-cards::-webkit-scrollbar-thumb {
  background: #0073e6;
  /* Scrollbar thumb color */
  border-radius: 4px;
}

.project-card {
  background-color: #ffffff;
  /* Dark card background */
  border: 0px solid #444;
  /* Dark border */
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  /* Prevent cards from shrinking */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-info {
  padding: 1px;
  text-align: center;
}

.project-info h4 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1.4em;
  margin-bottom: 3px;
  margin-top: 5px;
  color: #2c2929;
  /* Light text */
}

.project-info p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1em;
  color: #ccc;
  /* Light gray text */
  margin-top: 0px;
  margin-bottom: 15px;
}

.project-link {
  display: inline-block;
  padding: 10px 20px;
  margin-top: -50px;
  background-color: #0073e6;
  /* Button color */
  color: #fff;
  /* Light text */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.project-link:hover {
  background-color: #005bb5;
  /* Darker on hover */
}

/* ========================
   Third Section (Typed.js)
======================== */
.thirdsection {
  display: flex;
  height: 25vh;
  width: 100%;
  background-color: #05097a;
}

.thirdsection .animation {
  color: var(--primary-color);
  font-size: 3rem;
}

.thirdsection h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin-top: 4%;
  margin-left: 18%;
  text-decoration: underline;
}

#element {
  color: var(--secondary-color);
  margin-left: 2%;
  margin-top: 4%;
  font-size: 3rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-decoration: overline;
}

/* ========================
   About Us Section
======================== */
.about-section {
  --primary-color: #3a7bd5;
  --secondary-color: #00d2ff;
  --text-color: #2c3e50;
  --card-bg: #ffffff;

  background-color: #f5f7fa;
  padding: 120px 20px;
  perspective: 2000px;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.about-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  position: relative;
  text-align: center;
  will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 3D Depth Effect */
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 60%);
  transform: translateZ(-20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Floating Shadow Effect */
.about-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0) 70%);
  filter: blur(15px);
  transform: translateZ(-30px);
  transition: all 0.5s ease;
  opacity: 0;
}

.about-card:hover {
  transform: rotateX(5deg) rotateY(5deg) translateY(-20px) scale(1.03);
  box-shadow: 0 40px 70px -25px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover::after {
  opacity: 1;
  bottom: -25px;
}

/* 3D Icon Effect */
.icon-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg,
      rgba(58, 123, 213, 0.1) 0%,
      rgba(0, 210, 255, 0.1) 100%);
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: all 0.6s ease;
  position: relative;
}

.icon-container::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(145deg,
      rgba(58, 123, 213, 0.2) 0%,
      rgba(0, 210, 255, 0.2) 100%);
  transform: translateZ(-10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card:hover .icon-container {
  transform: rotateY(15deg) scale(1.1);
}

.about-card:hover .icon-container::before {
  opacity: 1;
}

.icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
  transform: translateZ(0);
}

.about-card:hover .icon {
  color: var(--secondary-color);
  transform: translateZ(10px) scale(1.1);
}

/* Text Elements */
.about-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  position: relative;
  transform: translateZ(20px);
}

.about-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.85;
  transform: translateZ(10px);
  transition: transform 0.4s ease;
}

.about-card:hover p {
  transform: translateZ(20px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
    perspective: 1000px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-card {
    padding: 30px;
  }

  .about-card:hover {
    transform: rotateX(5deg) translateY(-10px);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .about-card,
  .icon-container,
  .icon {
    transition: none !important;
    transform: none !important;
  }
}

/* ========================
   Responsive Design
======================== */
@media (max-width: 1024px) {
  .about-container {
    gap: 20px;
  }

  .about-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .about-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 10px;
  }

  .about-card {
    padding: 30px;
  }

  .icon {
    font-size: 2.5rem;
  }

  .about-card h2 {
    font-size: 1.5rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }
}

/* ========================
   Fifth Section (Statistics)
======================== */
.stats-section {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-box {
  position: relative;
}

.stat-box h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 350;
  color: #222;
  margin: 5px 0;
}

.stat-box p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 300;
  color: #444444;
  border-bottom: 1px solid #ffd700;
  width: 300px;
  padding-top: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.clients-section {
  background: #122a63;
  color: rgb(255, 255, 255);
  text-align: left;
  padding: 0px 80px;
  height: 70px;
  position: relative;
  display: inline-block;
  margin-top: 80px;
  text-align: center;
}

.clients-section h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
  font-size: 35px;
  margin-left: -10px;
  margin-top: 12px;
}

.clients-section::after {
  content: "";
  position: absolute;
  top: 7%;
  right: -20px;
  width: 50px;
  height: 50px;
  border-right: 9px solid #ffd700;
  border-top: 9px solid #ffd700;
  transform: translateY(-50%);
}

/* Base styles for the logos container */
.logos-container {
  background-color: white;
  width: 100%;
  /* Adjust the width to make it smaller (e.g., 60% of the parent container) */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 20px 0;
  /* Add some padding for better appearance */
  margin-left: 150px;
  /* Adjust margin-left as needed */
  margin-top: 40px;
  /* Adjust margin-top as needed */
  overflow: hidden;
  /* Hide any overflow outside the container */
  position: relative;
  /* Ensure the container stays within its bounds */
}

/* Wrapper for the logos to enable scrolling */
.logos-scroll-wrapper {
  display: flex;
  gap: 40px;
  /* Reduce space between logos */
  animation: scrollLogos 40s linear infinite;
  /* Automatic scrolling animation */
}

/* Logo image styles */
.logos-scroll-wrapper img {
  height: 90px;
  /* Smaller logo size */
  max-width: 100px;
  /* Smaller max width */
  object-fit: contain;
  /* Maintain aspect ratio */
  flex-shrink: 0;
  /* Prevent logos from shrinking */
}

/* Keyframes for automatic scrolling */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
    /* Start from the original position */
  }

  100% {
    transform: translateX(-100%);
    /* Scroll to the end */
  }
}

/* Pause animation on hover */
.logos-container:hover .logos-scroll-wrapper {
  animation-play-state: paused;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.logos-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.logos-container {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .logos-container {
    width: 70%;
    /* Increase width for smaller screens */
    margin-left: 300px;
    /* Adjust for smaller screens */
    margin-top: -40px;
    /* Adjust for smaller screens */
  }
}

@media (max-width: 768px) {
  .logos-container {
    width: 80%;
    /* Increase width for tablets */
    margin-left: 100px;
    /* Adjust for tablets */
    margin-top: -20px;
    /* Adjust for tablets */
  }
}

@media (max-width: 480px) {
  .logos-container {
    width: 90%;
    /* Increase width for mobile */
    margin-left: 20px;
    /* Adjust for mobile */
    margin-top: -10px;
    /* Adjust for mobile */
  }

  .logos-scroll-wrapper img {
    height: 40px;
    /* Even smaller logos for mobile */
    max-width: 80px;
  }
}

/* Background sketch effect */
.background-sketch {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 40%;
  background-image: url("images/drawing.jpeg");
  /* Replace with an actual sketch background */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  opacity: 0.2;
  z-index: -1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .stat-box h2 {
    font-size: 40px;
  }

  .clients-section {
    padding: 15px 30px;
    font-size: 18px;
  }

  .logos-container {
    gap: 20px;
  }

  .logos-container img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .stat-box h2 {
    font-size: 35px;
  }

  .stat-box p {
    font-size: 16px;
  }

  .clients-section {
    font-size: 16px;
    padding: 10px 20px;
  }

  .logos-container img {
    height: 35px;
  }
}

/* ========================
   Awards Section
======================== */
.awards-section {
  background-color: rgb(252, 250, 250);
  padding: 20px;
  margin-top: 40px;
  height: 80vh;
}

.awards-section h2 {
  background-color: rgba(4, 9, 165, 0);
  color: var(--primary-color);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 20px 40px;
  border-bottom: 3px solid #04c104;
  margin-right: 600px;
  max-width: 390px;
  position: relative;
  transition: transform var(--transition-speed);
}

.awards-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.award-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  flex: 0 0 auto;
  width: 300px;
  margin-top: 50px;
  text-align: center;
  transition: transform var(--transition-speed);
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.award-card h3 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  padding: 15px;
  font-size: 1.2rem;
  color: #555;
}

/* Hide scrollbar */
.awards-container::-webkit-scrollbar {
  display: none;
}

.awards-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================
   Map Section
======================== */
.map-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  gap: 30px;
  background-color: rgb(252, 250, 250);
  border-radius: 0px;
  /* box-shadow: var(--box-shadow); */
  transition: all var(--transition-speed);
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0);
}

.address-container {
  flex: 1;
  max-width: 40%;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed);
  margin-top: 20px;
}

.address-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.address-container h3 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.address-container p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 1.1rem;
  color: #333;
  margin: 8px 0;
  line-height: 1.6;
}

.address-container i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Responsive Map Section */
@media (max-width: 768px) {
  .map-address {
    flex-direction: column;
    align-items: center;
  }

  .map-container iframe {
    height: 300px;
  }

  .address-container {
    max-width: 90%;
    margin-top: 20px;
  }
}

/* ========================
   Client Logos Section (Continued)
======================== */
.logo {
  max-width: 180px;
  max-height: 100px;
  transition: transform var(--transition-speed), opacity var(--transition-speed);
  flex-shrink: 0;
  opacity: 0.85;
  border-radius: 8px;
}

.logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all var(--transition-speed);
  border-radius: 8px;
}

/* Responsive Client Logos Section */
@media (max-width: 768px) {
  .logos {
    gap: 25px;
  }

  .logo {
    max-width: 150px;
    max-height: 80px;
  }
}

@keyframes logoMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ========================
          footer
======================== */

footer {
  background-color: #1a1a1a;
  /* Darker black for a modern look */
  color: #fff;
  padding: 60px 20px 20px;
  /* Reduced padding to minimize footer height */
  font-family: "Arial", sans-serif;
  position: relative;
  margin-top: 80px;
  /* Space for the conical box */
}

/* Conical Box */
.conical-box {
  position: absolute;
  top: -6%;
  /* Half above the footer */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  /* Larger size */
  height: 50px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.conical-content {
  display: flex;
  gap: 40px;
  /* Adjusted gap for better spacing */
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Adjusted gap for better spacing */
  color: #1a1a1a;
  /* Dark text for contrast */
}

.contact-item i {
  font-size: 24px;
  /* Adjusted icon size */
  color: #4caf50;
  /* Green accent color */
}

.contact-item a {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #1a1a1a;
  text-decoration: none;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 16px;
  /* Adjusted text size */
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #4caf50;
  /* Green color on hover */
}

/* Footer Content */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* Reduced gap to minimize footer size */
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  /* Smaller logo */
  height: auto;
}

h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
  color: #fff;
}

h2 .energy {
  color: #ffa500;
  /* Orange color for "Energy" */
}

h2 .green {
  color: #4caf50;
  /* Green color for "Green" */
}

.company-description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 10px 0;
}

.view-more {
  color: #4caf50;
  text-decoration: none;
  font-size: 14px;
}

.view-more:hover {
  text-decoration: underline;
}

.footer-section h3 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  margin-bottom: 15px;
  color: #4caf50;
  /* Green accent color */
  margin-left: 50px;
  align-items: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin-left: 50px;
}

.footer-section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  opacity: 0.8;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: #4caf50;
  /* Green color on hover */
}

.social-media {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  margin-left: 50px;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.3s;
  margin-left: 20px;
}

.social-media a:hover {
  opacity: 1;
  color: #4caf50;
  /* Green color on hover */
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  /* White separator line */
}

.copyright p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    min-width: 100%;
  }

  .conical-box {
    top: -40px;
    width: 95%;
    padding: 15px;
  }

  .conical-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================
   Project page (Continued)
======================== */

/* Header Image for Projects Section */
.headers-image {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: -120px;
}

.headers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headers-text {
  position: absolute;
  top: 60%;
  left: 35%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.headers-text h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.headers-text p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
}

/* Projects Section */

/* Section Heading Styling */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.solar-heading {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  /* Use a modern font */
  font-size: 48px;
  font-weight: 700;
  color: #ff9d0b;
  /* Orange color to match the theme */
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.solar-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #ff9d0b;
  transform: translateX(-50%);
}

.subheading {
  font-family: "Open Sans", sans-serif;
  /* Complementary font */
  font-size: 18px;
  color: #666;
  font-weight: 300;
  margin-top: 10px;
}

.projectss {
  padding: 50px 20px;
  background-color: #faf9f6;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 400px;
  transition: transform 0.3s ease;
}

.projects-card:hover {
  transform: translateY(-10px);
}

.projects-card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.projects-card h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
  color: #333;
  margin: 20px 0 10px;
}

.projects-card p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  color: #666;
  padding: 0 20px 20px;
}

.projects-card .view-more {
  display: inline-block;
  background: #ff9d0b;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px 0;
  transition: background 0.3s ease;
}

.projects-card .view-more:hover {
  background: #e68a00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .headers-text h1 {
    font-size: 36px;
  }

  .headers-text p {
    font-size: 18px;
  }

  .solar-heading {
    font-size: 36px;
  }

  .subheading {
    font-size: 16px;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .projects-card h2 {
    font-size: 20px;
  }

  .projects-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .headers-text h1 {
    font-size: 28px;
  }

  .headers-text p {
    font-size: 16px;
  }

  .solar-heading {
    font-size: 28px;
  }

  .subheading {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .projects-card h2 {
    font-size: 18px;
  }

  .projects-card p {
    font-size: 12px;
  }
}

/* ========================
   Project detail page (Continued)
======================== */
/* Project Section Styling */
/* Base Styles */

.header-image {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  margin-top: 0px;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back Button */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  /* Darker on hover */
  transform: translateY(-2px);
  /* Slight lift on hover */
}

.back-button i {
  margin-right: 5px;
  /* Space between icon and text */
}


.project-detail-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 100px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section 1: Project Images */
.project-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* Responsive grid */
  gap: 15px;
  /* Space between images */
}

.gallery-item {
  overflow: hidden;
  border-radius: 1px;
  /* Rounded corners */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  /* Square images */
}

.gallery-item:hover {
  transform: scale(1.05);
  /* Slightly enlarge on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  /* Enhanced shadow on hover */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure images cover the area */
  display: block;
  border-radius: 1px;
  /* Match container's rounded corners */
}

/* Section 2: Project Description */
/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  /* Modern font */
  background-color: #f8f9fa;
  /* Light background */
  margin: 0;
  padding: 0;
  color: #333;
  /* Default text color */
}

.details {
  height: 690px;
  width: 500px;
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Base background */
}

/* Decorative Background Shapes */
.details::before,
.details::after {
  content: '';
  position: absolute;
  background: rgb(255, 173, 59);
  /* Light blue for shapes */
  border-radius: 50%;
  z-index: 0;
}

.details::before {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}

.details::after {
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
}

/* Content Container */
.project-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  /* Semi-transparent white */
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
  backdrop-filter: blur(10px);
  /* Frosted glass effect */
  position: relative;
  z-index: 1;
}

.project-description::before {
  content: "";
  position: absolute;
  top: 98%;
  right: 454px;
  width: 60px;
  height: 60px;
  border-right: 9px solid #ff9e27;
  border-top: 9px solid #ff9e27;
  border-bottom: 9px solid #ff9e27;
  border-left: 9px solid #ff9e27;
  transform: translateY(-50%);
}

.project-description::after {
  content: "";
  position: absolute;
  top: 1%;
  right: -30px;
  width: 60px;
  height: 60px;
  border-right: 9px solid #7cda18;
  border-top: 9px solid #7cda18;
  border-bottom: 9px solid #7cda18;
  border-left: 9px solid #7cda18;
  transform: translateY(-50%);
}

.details-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2c3e50;
  /* Dark blue for contrast */
  position: relative;
  display: inline-block;
}

.details-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #3498db;
  /* Accent line */
  border-radius: 2px;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.details-list li {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0;
  padding: 15px 20px;
  background: rgba(244, 247, 250, 0.8);
  /* Light background for list items */
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Infographic Icons */
/* .details-list li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
} */

/* Custom Icons for Each List Item */
/* .details-list li:nth-child(1)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/3498db/user.png'); 
}

.details-list li:nth-child(2)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/3498db/category.png');
}

.details-list li:nth-child(3)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/3498db/calendar.png'); 
}

.details-list li:nth-child(4)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/3498db/code.png'); 
} */

.details-list i {
  margin-right: 1px;
  /* Adds space between icon and text */
  color: #007BFF;
  /* Changes icon color */
}

.details-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* Lift effect on hover */
}

.details-list strong {
  color: #3498db;
  /* Accent color for strong text */
  font-weight: 600;
}

/* Call-to-Action Button */
.cta-button {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #3498db;
  /* Blue button */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #2980b9;
  /* Darker blue on hover */
  transform: translateY(-3px);
}

/* Subtle Animation for Section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.details {
  animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .details-title {
    font-size: 2rem;
  }

  .details-list li {
    font-size: 1rem;
  }

  .project-description {
    padding: 20px;
  }
}


/* Responsive Layout for Larger Screens */
@media (min-width: 768px) {
  .project-detail-page {
    flex-direction: row;
    /* Side-by-side layout on larger screens */
  }

  .project-images {
    flex: 1;
    /* Take up 50% of the space */
  }

  .project-description {
    flex: 1;
    /* Take up 50% of the space */
  }
}

/* ========================
   Product page (Continued)
======================== */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.product-showcase {
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #007bff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Slider Styles */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: auto;
  display: block;
}

/* Slider Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Product Details */
.product-details {
  padding: 20px;
  text-align: left;
}

.product-name {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  font-size: 0.9em;
  margin: 8px 0;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================
   Aboutus page (Continued)
======================== */

/* Parallax Effect */
.parallax {
  background-image: url("background.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.parallax-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.parallax-content h1 {
  font-size: 3rem;
  margin: 0;
}

.parallax-content p {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

/* Content Sections */
.content-section {
  padding: 80px 20px;
  text-align: center;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.content-section h2 i {
  margin-right: 10px;
  color: #1abc9c;
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile-text {
  flex: 1;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
  flex: 1;
  text-align: center;
}

.profile-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.05);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 10px 0 5px;
  color: #2c3e50;
}

.team-member p {
  color: #666;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #1abc9c;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #16a085;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    text-align: center;
  }

  .profile-text {
    text-align: center;
  }

  .profile-image img {
    width: 80%;
  }

  .team-member {
    width: 100%;
  }
}

/* History Section */
.history-intro {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.history-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.history-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin: 0 0 10px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.card-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design for History Section */
@media (max-width: 768px) {
  .history-cards {
    flex-direction: column;
    align-items: center;
  }

  .history-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Infrastructure Section */
.infrastructure-intro {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.infrastructure-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.infrastructure-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infrastructure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin: 0 0 10px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.card-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design for Infrastructure Section */
@media (max-width: 768px) {
  .infrastructure-cards {
    grid-template-columns: 1fr;
  }
}

/* Registration & Certification Section */
#registration {
  background: linear-gradient(135deg, #f4f4f9, #e0e0f5);
  padding: 80px 20px;
}

.registration-intro {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.registration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.registration-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.registration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1abc9c;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 20px 0 10px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.card-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design for Registration & Certification Section */
@media (max-width: 768px) {
  .registration-cards {
    grid-template-columns: 1fr;
  }
}

/* Vision & Mission Section */
#vision {
  background: #fff;
  padding: 80px 20px;
}

.vision-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-image {
  flex: 1;
}

.vision-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

.vision-text {
  flex: 1;
  background: #f4f4f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vision-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.vision-text h2 i {
  margin-right: 10px;
  color: #1abc9c;
}

.vision-content,
.mission-content {
  margin-bottom: 30px;
}

.vision-content h3,
.mission-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.vision-content p,
.mission-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design for Vision & Mission Section */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-text {
    padding: 20px;
  }

  .vision-text h2 {
    font-size: 2rem;
  }

  .vision-content h3,
  .mission-content h3 {
    font-size: 1.5rem;
  }
}


/* ------------------------------product detail page------------------------------------- */

/* === BASE STYLES === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.root-container {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.main-content {
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.navigation-return {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navigation-return:hover {
  background: white;
  transform: translateX(-5px);
}

.navigation-return-icon {
  margin-right: 8px;
}

/* === CONTENT SECTIONS === */
.content-section {
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  padding: 80px 10% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* === HEADER AREA === */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* === PRODUCT DISPLAY === */
.product-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-visual {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-details {
  padding: 20px;
}

.product-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-summary {
  opacity: 0.7;
  margin-bottom: 15px;
}

.hero-photo {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.photo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  /* Added padding for border breathing space */
}

.large-photo {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  /* Border styles */
  border: 10px solid #fff;
  /* Adjust color and width here */
  box-sizing: border-box;
  /* Ensures border doesn't affect image dimensions */
}

.photo-caption {
  margin-top: 1rem;
  font-style: italic;
  color: #666;
  font-size: 0.9em;
}

@media (min-width: 1600px) {
  .photo-container {
    max-width: 1400px;
  }
}

/* === DATA VISUALIZATION === */
.data-visual-container {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.data-visual-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: visualRotate 15s linear infinite;
  z-index: 0;
}

@keyframes visualRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.data-content {
  position: relative;
  z-index: 1;
  width: 60%;
}

.data-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.data-text {
  margin-bottom: 30px;
  line-height: 1.6;
}

.metrics-container {
  display: flex;
  gap: 30px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  background: linear-gradient(to right, #fff, #ddd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.visual-image {
  width: 35%;
  height: auto;
  object-fit: contain;
  animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* === COMPARISON MODULE === */
.comparison-module {
  display: flex;
  gap: 30px;
  margin: 50px 0;
}

.comparison-panel {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.comparison-panel:hover {
  transform: scale(1.03);
}

.panel-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.feature-list {
  list-style: none;
}

.feature-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.feature-item::before {
  content: '✓';
  color: #4ecdc4;
  font-weight: bold;
  margin-right: 10px;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .data-visual-container {
    flex-direction: column;
    text-align: center;
  }

  .data-content {
    width: 100%;
    margin-bottom: 30px;
  }

  .visual-image {
    width: 80%;
  }

  .metrics-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .comparison-module {
    flex-direction: column;
  }

  .navigation-return {
    top: 15px;
    left: 15px;
    padding: 8px 15px;
  }
}