/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Arial', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Links & Buttons */
a {
  text-decoration: none;
  color: inherit;
}

.btn1, .btn2 {
  display: inline-block;
  border-radius: 25px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.btn1 {
  background-color: #3CAB90;
  color: #ffffff;
  height: 41px;
  width: 173px;
  border-radius: 109px;
  gap: 10px;
  opacity: 1;
  padding: 12px 34px;
}

.btn2 {
  background-color: #ffcc00;
  color: #000;
  height: 41px;
  width: 208px;
  border-radius: 109px;
  gap: 10px;
  padding: 12px 34px;
}

.btn:hover {
  opacity: 0.8;
}

/* Container inside header */
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
}

.container-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0B9586;
  padding: 1rem 3rem;
}

/* Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #0B9586;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1rem;
}

.navbar li {
  display: inline;
}

/* Mobile Menu Styles - CSS Only */
.mobile-menu-checkbox {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.navbar {
  transition: all 0.3s ease;
}

/* Prevent body scroll when mobile menu is open */
.mobile-menu-checkbox:checked ~ body {
  overflow: hidden;
}

/* Additional mobile menu body scroll prevention */
.mobile-menu-checkbox:checked {
  position: fixed;
}

html:has(.mobile-menu-checkbox:checked) body {
  overflow: hidden;
}

/* Mobile Menu Toggle Button - CSS Only */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
  width: 157px;
  height: 54px;
  background: #0000000F;
  opacity: 50%;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.94px;
}

.home-link {
  display: inline-block;
  width: 110px;
  height: 38px;
  padding: 8px 28px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 3px 0 #116f66;
  text-align: center;
  line-height: 22px;
  background: #0000000F;
}

/* Contact Section in Header */
.contact p {
  color: #ffffff;
  text-align: right;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.94px;
}

.contact a {
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.94px;
}

/* Hero Section with Background Image */
.hero {
  background: url("../assets/images/solar-panels-meadow 1.png");
  background-size: cover;
  padding: 4rem 0;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: Inter;
  font-weight: 600;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: -2%;
}

.hero-subtitle {
  color: white;
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

/* Intro Section */
h2 {
  padding-top: 0%;
}

.intro {
  padding: 4rem 0;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.intro-heading-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: nowrap;
}

.intro-text {
  flex: 1 1 60%;
  max-width: none;
}

.intro-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 1rem 0;
}

p {
  line-height: 1.6;
  color: #101828;
  margin-bottom: 1rem;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}

#intro-desc {
  color: #475467;
}

.list-number {
  color: #84BD3A;
  font-weight: bold;
  margin-right: 0.5rem;
}

.intro-image-wrapper {
  flex: 1 1 40%;
  position: relative;
  display: inline-block;
}

.intro-image {
  width: 100%;
  max-width: 469px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Yellow Box Overlay */
.yellow-box {
  position: absolute;
  bottom: 10%;
  left: -20%;
  background-color: #FFCC00;
  padding: 1rem;
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.yellow-box-icon img {
  width: 90px;
  height: 90px;
  margin-bottom: 0.5rem;
}

.yellow-box-text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

/* Slide Indicator Style */
.slide-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  color: white;
}

.slide-indicator .line {
  position: relative;
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.slide-indicator .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background-color: white;
  border-radius: 2px;
}

/* Section 3 styles */
.section3 {
  background: url("../assets/images/8116 1.png");
  background-size: cover;
  padding: 4rem 0;
  color: #fff;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.sec3-background {
  flex: 1 1 40%;
  text-align: center;
  width: 1440px;
  height: 505px;
  opacity: 1;
  gap: 10px;
}

.sec3-content {
  text-align: left;
}

.btn3 {
  width: 173px;
  height: 41px;
  opacity: 1;
  gap: 10px;
  padding: 12px 34px;
  border-radius: 109px;
  background-color: #FFBB1C;
  color: black;
}

/* Solar Kits Section */
.Solar-Kits {
  padding-bottom: 2rem;
  background-color: #fff;
  text-align: center;
}

.sec3-heading {
  padding-top: 3rem;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
}

.section-description {
  text-align: center;
  padding-top: 1rem;
}

.kits-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kit-card {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.kit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.kit-content {
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kit-title {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.kit-description {
  color: #475467;
  font-size: 1rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.kit-link {
  color: #12B76A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.kit-link:hover {
  text-decoration: underline;
}

/* Section 4 styling */
.Section-4 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: url("../assets/images/section-4bg.png") no-repeat center center/cover;
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
}

.overlay h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.overlay p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.sec4-desc {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: white;
}

/* Energy Innovators Section */
.innovators-section {
  padding: 4rem 0;
 
}

#bg-color{
 background-color: rgba(255, 187, 28, 0.05);
}

.innovators-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: nowrap;
}

.innovators-text {
  flex: 1 1 40%;
}

.innovators-section h2 {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}

.innovators-section p {
  color: #666;
  margin-bottom: 2rem;
  text-align: left;
}

.innovators-cards {
  flex: 1 1 60%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, max-content));
  gap: 1.5rem;
  justify-content: start;
}

.innovator-card {
  background-color: #3CAB900D;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  border: #3CAB90;
  border-style: solid;
  border-width: 2px;
  width: auto;
  max-width: 350px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.innovator-card .card-image {
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 5px;
  flex-shrink: 0;
  
}

.placeholderImage{
  padding-top: 20px;
  opacity: 50%;
}

.card-image{
  border-radius: 5px;
  margin: 0 auto 1rem auto;
  flex-shrink: 0;
  position: relative;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 171, 144, 0.15);
  opacity: 100%;
  border-radius: 5px;
}

.innovator-card h3 {
  color: #000000;
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.innovator-card p {
  color: #666;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  flex-shrink: 0;
}

.innovator-card .view-link {
  color: #3CAB90;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0;
  flex-shrink: 0;
}

.innovator-card .view-link:hover {
  text-decoration: underline;
}

/* Our Values Section */
.values-section {
  padding: 4rem 0;
 
  text-align: center;
}

.values-section h2 {
  color: #000;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.values-section .subtext {
  color: #666;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background-color: rgba(60, 171, 144, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  border: 2px solid #3CAB90;
}

/* Shared card icon styles */
.card-icon {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 1rem;
  border-radius: 5px;
}

/* Different icons for each card */
.card-icon1 {
  background-image: url('../assets/images/Customer Loyalty.png');
}

.card-icon2 {
  background-image: url('../assets/images/Price Tag.png');
}

.card-icon3 {
  background-image: url('../assets/images/Environment.png');
}

.value-card h3 {
  color: #000;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.value-card p {
  color: #666;
  font-size: 1rem;
}
/*testimonial styling*/
.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 7rem;
  padding-right: 7rem;
  padding-bottom: 5rem;
  background-color: white;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial-left {
  max-width: 40%;
  position: relative;
}

.quote-mark {
  width: 50px; /* Adjust size to fit your image */
  height: auto;
  
  top: -10px;
  left: -20px;
  z-index: 0;
}

.testimonial-title {
  font-weight: bold;
  position: relative;
  z-index: 1;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: 0%;
}

.testimonial-subtitle {
  font-size: 16px;
  color: rgba(28, 28, 28, 1);
  z-index: 1;
  position: relative;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
}

.testimonial-right {
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-box {
  background: rgba(60, 171, 144, 0.06);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-sizing: border-box;
}

.testimonial-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.box-subtitle {
  font-weight: 600;
  color: rgba(60, 171, 144, 1);
  font-size: 14px;
  opacity: 0.7;
}

.pagination-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.5;
}

.dot.active {
  background: rgba(107, 107, 107, 1);
  opacity: 1;
}

.testimonial-text {
  color: rgba(16, 24, 40, 1);
  text-align: left;
  margin: 0;
  flex-grow: 1;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-title {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.profile-name {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
}

.navigation-arrows {
  display: flex;
  gap: 10px;
}

.arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(28, 28, 28, 1);
  background-color: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.arrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid rgba(28, 28, 28, 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.arrow.left::before {
  transform: rotate(135deg);
}

.arrow.right::before {
  transform: rotate(-45deg);
}

.arrow:hover {
  background-color: rgba(28, 28, 28, 1);
}

.arrow:hover::before {
  border-color: #fff;
}


/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .main-header .container {
    padding-left: 2rem;
  }
  
  .innovators-wrapper {
    gap: 3rem;
  }
}

/* Tablet and Small Desktop */
@media (max-width: 992px) {
  /* Navigation adjustments for medium screens */
  .navbar {
    gap: 1.5rem;
  }
  
  .navbar a {
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .contact a {
    font-size: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .intro-heading-wrapper {
    gap: 3rem;
  }
  
  .innovators-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonial-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .testimonial-title {
    font-size: 36px;
    line-height: 48px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  /* Header adjustments */
  .container-heading {
    padding: 1rem 2rem;
    position: relative;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation on tablet and mobile */
  .navbar ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Show mobile menu when checkbox is checked */
  .mobile-menu-checkbox:checked ~ .navbar ul {
    transform: translateX(0);
  }
  
  .navbar li {
    width: 100%;
    text-align: center;
  }
  
  .navbar a {
    display: block;
    font-size: 20px;
    font-weight: 500;
    padding: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .navbar a:hover {
    color: #3caf90;
    background: rgba(60, 175, 144, 0.1);
  }
  
  /* Contact section adjustments */
  .contact {
    gap: 1rem;
  }
  
  .contact a {
    font-size: 18px;
  }
  
  /* Hero section */
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Intro section */
  .intro-heading-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-text {
    flex: none;
  }
  
  .intro-image-wrapper {
    flex: none;
    align-self: center;
  }
  
  .yellow-box {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  /* Innovators section */
  .innovators-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .innovators-text {
    text-align: center;
  }
  
  .innovators-cards {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  
  /* Values section */
  .values-cards {
    grid-template-columns: 1fr;
  }
  
  /* Kits section */
  .kits-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  /* Testimonial section */
  .testimonial-section {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  
  .testimonial-left,
  .testimonial-right {
    max-width: 100%;
  }
  
  .testimonial-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .testimonial-text {
    font-size: 20px;
  }
  
  /* Subscribe form responsive styles */
  .subscribe-form {
    max-width: 100%;
  }
  
  .subscribe-form input {
    max-width: 100%;
    min-width: 280px;
    padding-right: 140px;
  }
  
  .subscribe-form button {
    width: 120px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .intro {
    padding: 2rem 0;
  }
  
  .intro-heading {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .sec3-heading {
    font-size: 28px;
  }
  
  .testimonial-box {
    padding: 20px;
    min-height: 280px;
  }
  
  .testimonial-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  /* Header */
  .container-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .logo {
    width: 120px;
    height: auto;
  }
  
  .contact {
    display: none; /* Hide contact on small mobile to save space */
  }
  
  /* Ensure mobile menu works on small screens */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Mobile menu positioning adjustments for small screens */
  .navbar ul {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 1.5rem;
  }
  
  .navbar a {
    font-size: 18px;
    padding: 0.8rem;
  }
  
  .navbar {
    padding: 0.5rem;
  }
  
  .mobile-menu-toggle {
    padding: 8px;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }
  
  /* Hero */
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn1, .btn2 {
    width: 200px;
    justify-content: center;
  }
  
  /* Intro */
  .intro-heading {
    font-size: 1.3rem;
  }
  
  .intro-image {
    max-width: 100%;
  }
  
  .yellow-box {
    width: 100%;
    max-width: none;
  }
  
  /* Cards */
  .innovator-card,
  .value-card {
    padding: 1rem;
  }
  
  .card-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem auto;
  }
  
  /* Kit cards */
  .kit-card {
    width: 100%;
    max-width: 300px;
  }
  
  /* Testimonial */
  .testimonial-section {
    padding: 2rem 1rem;
  }
  
  .testimonial-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .testimonial-text {
    font-size: 18px;
  }
  
  .testimonial-box-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
  
  .subscribe-form {
    align-items: center;
  }
  
  .subscribe-form input {
    min-width: 250px;
    padding-right: 110px;
  }
  
  .subscribe-form button {
    width: 100px;
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }
  
  .btn1, .btn2 {
    width: 180px;
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .intro-heading {
    font-size: 1.2rem;
  }
  
  .card-image {
    width: 180px;
    height: 40px;
  }
  
  .subscribe-form input {
    min-width: 200px;
    padding-right: 90px;
  }
  
  .subscribe-form button {
    width: 80px;
    padding: 6px 8px;
    font-size: 11px;
  }
}

/*footer styles*/
.footer {
  background-color: rgba(40, 54, 70, 1);
  color: #fff;
  padding: 20px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.footer-divider {
  border: none;
  height: 2px;
  background-color: rgba(113, 119, 125, 1);
  margin: 20px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 40px;

}

.footer-logo-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo {
  width: auto;
  height: auto;
  opacity: 20%;
  background-color: #101828;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 406px;
  width: 100%;
}

#subscribe-form-title {
  margin-bottom: 10px;

  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;

}

.subscribe-form input {
  width: 100%;
  max-width: 406px;
  height: 48px;
  padding-left: 20px;
  padding-right: 160px; 
  opacity: 1;
  border-radius: 38px;
  border-width: 1px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(179, 189, 199, 1);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.subscribe-form button {
  position: absolute;
  right: 0px; 
  top: calc(50% + 17px);
  transform: translateY(-50%);
  width: 147px;
  height: 48px;
  padding: 12px 28px;
  gap: 10px;
  opacity: 1;
  border-radius: 109px;
  background-color: rgba(255, 187, 28, 1);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  min-width: 120px; 
}

#sub-btn{
  font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.3px;
text-align: center;

}

.subscribe-form button:hover {
  background-color: #e76f51;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal a,
.footer-legal span {
  color: rgba(146, 152, 159, 1);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.copyright {
  color: rgba(146, 152, 159, 1);
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.26px;
  text-align: right;

}

