  :root {
      --primary: #10c97c;
      --primary-dark: #0eb66f;
      --primary-light: #1fe88e;
      --secondary: #10ac84;
      --text: #333;
      --text-muted: #576574;
      --text-light: #8395a7;
      --background: #ececec;         /* Match body */
      --body-bg: #f1f1f1;
      --shadow-light: #ffffff;
      --shadow-dark: #b8b9be;
      --border-color: #e0e5ec;
      --radius: 50px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--body-bg);
      margin: 0;
      padding: 0 10px;
      color: var(--text);
      overflow-x: hidden !important;
    }
    
    a {
        text-decoration: none !important;
    }

    .neumorphic-container {
      position: relative;
      width: 320px;
      height: 320px;
      overflow: hidden;
      z-index: 1;
      background-image: url('bg.png'); /* Replace with your image path */
      background-size: cover;       /* Or 'contain' if you want full visibility */
      background-position: center;
      background-repeat: no-repeat;

    }

    .sun-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

.sun {
    position: relative;
    top: 0.7%;
    left: -0.3%;
    width: 123px;
    height: 125px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00);
    border-radius: 50%;
    box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.3), inset 4px 4px 10px rgba(0, 0, 0, 0.4), 4px 4px 10px rgba(255, 140, 0, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.2);
    z-index: 2;
}


    .rays {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 200px;
      height: 200px;
      transform: translate(-50%, -50%);
      animation: rotate 10s linear infinite;
      z-index: 1;
    }

    .ray {
      position: absolute;
      width: 10px;
      height: 30px;
      background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00);
      border-radius: 8px;
      box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.3), inset 4px 4px 10px rgba(0, 0, 0, 0.4), 4px 4px 10px rgba(255, 140, 0, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.2);
      top: 0;
      left: 50%;
      transform-origin: center 100px;
    }

    .ray:nth-child(1)  { transform: rotate(0deg); }
    .ray:nth-child(2)  { transform: rotate(45deg); }
    .ray:nth-child(3)  { transform: rotate(90deg); }
    .ray:nth-child(4)  { transform: rotate(135deg); }
    .ray:nth-child(5)  { transform: rotate(180deg); }
    .ray:nth-child(6)  { transform: rotate(225deg); }
    .ray:nth-child(7)  { transform: rotate(270deg); }
    .ray:nth-child(8)  { transform: rotate(315deg); }

    @keyframes rotate {
      0%   { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

/* === Neumorphic Header === */
.neumorphic-header {
  background: var(--background);
  border-radius: var(--radius);
  margin: 20px auto;
  padding: 10px 20px;
  max-width: 1200px;
  width: 95%;
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff !important;
  margin-right: 1.5rem !important;
  padding:0.5rem 1rem !important;
  border-radius: 50px;
  border-color:  #D1D9E6 !important;
  border: 0.0625rem solid #fafbfe !important;
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  padding: 8px 18px;
  text-decoration: none;
  color: #3d7a61;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar a.active,
.navbar a:hover {
  background: var(--primary-dark);
  font-weight: bold;
  color: #fff;
 }

.header-right {
  display: flex;
  align-items: center;
}

.btn-orange {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  color: white;
  font-weight: bold;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.2), -4px -4px 8px #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-orange:hover {
   box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-right {
    align-self: center;
    margin-top: 10px;
  }
}


.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .navbar.active {
display: block;
        position: absolute;
        top: 74px;
        z-index: 99999999;
        background: #ececec;
        padding: 20px;
        border-radius: 20px;
        max-width: 75%;
        box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff !important;
        margin-top: 1.4rem;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-top: 10px;
  }

  .header-inner {
        flex-direction: row;
        align-items: center;
  }

  .header-right {
        width: 100%;
        justify-content: end;
        margin-top: 0;
  }
  
  .header-left{
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {

  .header-right {
       display: none;
  
  }
  
  .neumorphic-header {
  width: 85%;
}
}


@media (max-width: 1160px) {

  .navbar ul, .header-left, .header-inner {
    gap: 5px;
  }
}



/* === Neumorphic Hero Section === */
/* === Hero Wrapper with Decorative Corners === */
.hero-wrapper {
  position: relative;
  background: url(file-cover.svg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 4em 1em;
}




/* === Hero Core === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 1;
  min-height: 60vh;
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}

/* === Hero Left Content === */
.hero-left {
  flex: 1 1 50%;
}

.hero h2 {
  font-size: 3rem;
  color: #3b3b5b;
  margin: 0 0 0.6em;
  font-weight: 800;
  line-height: 1.2;
}

.hero h2 span {
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 0 2em;
  max-width: 500px;
}


/* === Hero Right (Image Ring + Center Graphic) === */
.hero-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-ring {
  width: 100%;
  max-width: 380px;
  z-index: 2;
}

.hero-center-icon {
  position: absolute;
  width: 120px;
  max-width: 30%;
  z-index: 3;
}


.hero .cta-btn {
  margin-top: 2em;
  margin-right: 2em;
  padding: 0.9em 1.6em;
  font-size: 1rem;
  background: var(--background);
  color: var(--primary-dark);
  border-radius: var(--radius);
  border-color: var(--border-color);
  box-shadow:  3px 3px 6px var(--shadow-dark), -3px -3px 6px  var(--shadow-light);
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.hero .cta-btn:hover {
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

/* === Reusable Buttons === */
.btn,
.btn-primary,
.btn-secondary,
.contact button {
  display: inline-block;
  padding: 0.6em 1.2em;
  font-weight: bold;
  border: none;
  border-radius: var(--radius);
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  cursor: pointer;
  background: var(--background);
  transition: box-shadow 0.3s ease;
}

.btn-primary {
  color: white;
  background-color: var(--primary-dark);
}

.btn-secondary {
  color: var(--primary-dark);
}

.btn:hover,
.btn-primary:hover,
.contact button:hover {
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

.btn-primary:hover {
  background-color: var(--primary);
}


/************ RESULT AREA CSS (Using Theme Variables) **************/

.styled-circle-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 30px auto 10px;
  background: var(--background);
  border-radius: 50%;
  box-shadow: 9px 9px 16px var(--shadow-dark),
              -9px -9px 16px var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.styled-circle-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.styled-circle-ring .bg {
  fill: none;
  stroke: #e6ecf2;
  stroke-width: 12;
}

.styled-circle-ring .progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.styled-circle-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text);
  z-index: 2;
}

.styled-subtext {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center
}

.styled-details-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 24px;
  font-size: 1rem;
  border: none;
  background: var(--background);
  color: var(--text);
  border-radius: 16px;
  box-shadow: 6px 6px 12px var(--shadow-dark),
              -6px -6px 12px var(--shadow-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.styled-details-btn:active {
  box-shadow: inset 4px 4px 8px var(--shadow-dark),
              inset -4px -4px 8px var(--shadow-light);
  color: var(--primary-dark);
}

.styled-details-section {
  background: var(--background);
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 9px 9px 16px var(--shadow-dark),
              -9px -9px 16px var(--shadow-light);
}

.progress {
  transition: stroke-dashoffset 0.6s ease;
}

.result-list {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid #ddd;
  padding: 6px 0;
}

.result-row:last-child {
  border-bottom: none;
}

.seasonal-title {
  margin-top: 16px;
  font-weight: bold;
  font-size: 1.05rem;
  color: var(--primary);
  text-align: center;
}

 .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}



/*********** Calculator Container ************/
#calculator {
  margin-top: -25vh !important;
}


.calculator-container {
  max-width: 550px;
  z-index: 999999;
  margin: 40px auto;
  position: relative;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--background);
  box-shadow: 9px 9px 16px var(--shadow-dark), -9px -9px 16px var(--shadow-light);
}

.calculator-header h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.reset-btn{
    padding: 1.3rem;
    background: var(--background);
    border-radius: 2em;
    font-weight: 800;
    line-height: 26px;
    font-size: 2rem;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;

}

.reset-btn:hover{
    box-shadow: inset 4px 4px 8px #c5c5c5, inset -4px -4px 8px #ffffff;
}

 .section-title {
  text-align: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}


.calculator-header p {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.main-content {
  margin-top: 20px;
}

/*********** Tabs ************/
.tab-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0;
}

.tab {
 padding: 12px 20px;
    font-size: 1.5rem;
    font-weight: 800;
  background: none;
  border: none;
  border-radius: 10px 10px 0 0;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.3s ease;
}

.tab:hover {
  color: var(--primary-dark);
}

.tab.active {
  color: var(--primary);
  font-weight: bold;
  position: relative;
}

.tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/*********** Form Styles ************/
.form-section, .form-group {
  margin-bottom: 10px;
}

.form-group {
  padding: 5px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: var(--background);
}

.form-group label {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input, .form-group select, .battery-section input {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--background);
  box-shadow: inset 3px 3px 6px var(--shadow-dark),
              inset -3px -3px 6px var(--shadow-light);
  font-size: 1rem;
  color: var(--text);
}

.form-group input, .battery-section input {
    width: 90% !important;
}

/*********** Form Row ************/
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;

}

.form-row > div {
  flex: 1;
}

/*********** Toggle Switch ************/
.toggle-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--background);
  border-radius: 15px;
  box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

.toggle-label {
  font-weight: 600;
  color: var(--text);
}

/*********** Battery Section ************/
.battery-section {
  display: none;
  margin-top: 25px;
  padding: 20px;
  border-radius: 20px;
  background: var(--background);
  transition: all 0.3s ease;
}

.battery-section.show {
  display: block;
}

.battery-section .section-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
  color: var(--primary-dark);
}

.battery-section .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.battery-section .form-row > div {
  flex: 1;
}

 label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}


/*********** Calculate Button ************/
.calculate-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  box-shadow: 5px 5px 15px var(--shadow-dark),
              -5px -5px 15px var(--shadow-light);
  cursor: pointer;
  transition: 0.2s ease;
}

.calculate-btn:hover {
  background: var(--primary-dark);
}

/*********** Results Section ************/
.results-section {
  margin-top: 40px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text);
  padding: 10px 0;
}

.result-label {
  font-weight: bold;
  color: var(--secondary);
}

/*********** Responsive Comparison Table ************/
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--background);
  border-radius: 15px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  box-shadow: 9px 9px 16px var(--shadow-dark),
              -9px -9px 16px var(--shadow-light);
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--hover);
}

/*********** Scrollbar Styling (Optional) ************/
.comparison-table::-webkit-scrollbar {
  height: 6px;
}

.comparison-table::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 3px;
}

/*********** Media Queries Grouped Below ************/
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}


/*********** Subsection Title ************/
.styled-subsection-title {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

/*********** Battery Info Stats ************/
.battery-info {
  margin-top: 15px;
  background: var(--background);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 6px 6px 12px var(--shadow-dark),
              -6px -6px 12px var(--shadow-light);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/*********** Payback Analysis ************/
.styled-details-section p {
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}



/************ BANNER SECTION ************/
.banner {
    margin: 50px auto;
    max-width: 100%;
    background: var(--background);
    padding: 15vh;
    border-radius: 20px;
    text-align: center;
    box-shadow: 9px 9px 16px var(--shadow-dark), -9px -9px 16px var(--shadow-light);
    transition: all 0.3s ease;
}

.banner h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}
    
.banner button {
    width: 45%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Flex the main tag into two equal parts */
main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

main > .container {
  flex: 1 1 48%; /* Adjusts to 48% of width but flexible */
  min-width: 300px;
}

/* Results section also treated as container */
.results-section.container {
  flex: 1 1 48%;
  min-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  main > .container,
  .results-section.container {
    flex: 1 1 100%; /* Stack vertically on medium screens */
  }
}

/* Make .Monthly-Usage, #anytimeInputs2, .Night-time stack on small screens */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .toggle-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .toggle-button {
    padding: 12px;
    font-size: 14px; /* reduced */
  }

  .calculate-btn {
    font-size: 0.95rem; /* reduced */
  }

  .header h1 {
    font-size: 1.6rem; /* reduced */
  }

  .header p {
    font-size: 0.85rem; /* reduced */
  }

  .section-title {
    font-size: 1.15rem; /* reduced */
  }

  .form-group label {
    font-size: 0.9rem; /* reduced */
  }

  .result-item {
    font-size: 0.9rem; /* reduced */
  }

  .result-label {
    font-size: 0.95rem; /* reduced */
  }

  .slider-title,
  .tick span {
    font-size: 0.85rem; /* reduced */
  }

  .slider-value input {
    font-size: 22px; /* reduced */
  }

  .number-card input[type="number"] {
    font-size: 2.8rem; /* reduced */
  }
    #calculator {
     margin-top: 0vh !important; 
  }
  
  .banner{
    padding: 1rem;
}
 
 .banner button {
    width: 100%;
    font-size: 0.9rem;
 } 
}


/* Tweak input number font on small screens */
@media (max-width: 480px) {
  .slider-value input {
    font-size: 18px; /* reduced */
  }

  .number-card input[type="number"] {
    font-size: 2.2rem; /* reduced */
  }

  .section-title {
    font-size: 1rem; /* reduced */
  }

  .form-group label {
    font-size: 0.85rem; /* reduced */
  }

  .toggle-button {
    font-size: 13px; /* reduced */
  }

  .calculate-btn {
    font-size: 0.9rem; /* reduced */
  }

  .header h1 {
    font-size: 1.4rem; /* reduced */
  }

  .header p {
    font-size: 0.8rem; /* reduced */
  }

  .result-item {
    font-size: 0.85rem; /* reduced */
  }

  .result-label {
    font-size: 0.9rem; /* reduced */
  }

  .tick span {
    font-size: 13px; /* reduced */
  }

  main {
    width: auto;
    padding: 0 10px;
  }

  main > .container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px 10px;
  }

  .Monthly-Usage, #anytimeInputs2, .Night-time {
    gap: 10px;
  }

  .vertical-slider {
    width: 80%;
    margin: 0 auto;
  }

  .tick-container {
    width: 50%;
  }
  
      .hero h2, .benefits h2, .faq-section h2  {
        font-size: 1.7rem !important;
    }
    
    h1 {
        font-size: 1.4rem !important;
    }
    
    .hero p {
    font-size: 0.8rem !important;
    }
    
    
    .calculator-container {
        padding: 40px 15px;
    }
  
  
  .tab {
    padding: 12px 10px;
    font-size: 0.8rem;
  }
  .tab-buttons {
    gap: 5px;
  }
  
  .reset-btn {
    padding: 0.8rem;
    line-height: 10px;
    font-size: 1.2rem;
}

 
 .benefits, .faq-section {
    padding: 1rem 0em !important;
 }
 
.benefit-item {
    padding: 1.2em;
}

.container {
    width: 100%;
}

.footer-cta {
    top: -123px !important;
    left: 51% !important;
    padding: 1.5em 1em !important;
    border-radius: 50px !important;
    width: 75% !important;
}

.hero-wrapper {
    padding: 4em 1em 0em 1em;
}

}







/* === Benefits Section === */
.benefits {
  padding: 3em 1em;
  text-align: center;
  border-radius: var(--radius);
}

.benefits h2 {
  margin-bottom: 1.5em;
  font-size: 2rem;
  color: var(--primary-dark);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.benefit-item {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2em;
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  transition: box-shadow 0.3s ease;
}

.benefit-item:hover {
  box-shadow: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
}

.benefit-item h3 {
  margin-top: 2em;
  color: var(--primary-dark);
}

/* === Contact Section === */
.form-row textarea {
  width: 90%;
  padding: 1em;
  margin-bottom: 1em;
  border: none;
  border: none;
    border-radius: 10px;
    background: var(--background);
    box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    font-size: 1rem;
    color: var(--text);
  font-size: 1rem;
  color: var(--text);
}

#contact{
    margin-bottom: 10rem;
}


.faq-section {
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
  transition: box-shadow 0.3s ease;
}

.faq-section h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-shadow: var(--shadow-text);
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid #e0e5ec;
  box-shadow: 8px 8px 12px #d1d9e6, -4px -4px 12px #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: inset 4px 4px 10px #d1d9e6, inset -4px -4px 10px #ffffff;
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  text-shadow: 1px 1px 2px #fff;
  border-bottom: 1px solid #e3e7ef;
  padding-bottom: 0.4rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-top: 0.25rem;
}


/* === Footer === */

.footer {
  position: relative;
  background: var(--body-bg);
  padding: 0em 1em 3em;
  color: var(--text-muted);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Call-to-Action Box */
.footer-cta {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ececec;
  padding: 1.5em 2em;
  border-radius: 40px;
  box-shadow: 8px 8px 20px rgba(0,0,0,0.08), -8px -8px 20px rgba(255,255,255,0.8);
  max-width: 800px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.footer-cta a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    flex:1;
}

.footer-cta .cta-btn {
  padding: 0.8em 2em;
  background: var(--background);
  border-radius: 2em;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-cta .cta-btn:hover {
  box-shadow: inset 4px 4px 8px #c5c5c5, inset -4px -4px 8px #ffffff;
}

/* Footer Base Container */
.footer-container {
  background: #5d5d5d;
  border-radius: 30px;
  box-shadow: inset 8px 8px 16px rgba(0,0,0,0.2), inset -8px -8px 16px rgba(255,255,255,0.05);
  color: #fff;
  padding: 4em 2em 2em;
  margin-top: 0em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1em;
  color: #fff;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    gap: 10px;
    margin: 0.5em 0;
    align-items: center;
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-column ul {
  padding-left: 1em;
  list-style: none;
}

.footer-column li::before {
  content: "➤";
  color: var(--primary-light);
}

/* Social Icons (optional) */
.footer-column .social-icons {
  margin-top: 1em;
  display: flex;
  gap: 0.5em;
}

.footer-column .social-icons img {
  background: #777;
  padding: 6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* Branding + Copyright */
.footer-branding {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 2em;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1em;
  color: #bbb;
}

.footer-column li{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === Media Queries at End === */
@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    text-align: center;
    gap: 1em;
  }

  .footer-cta .cta-btn {
    margin-left: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 2em;
  }
}


/* === Responsive === */
@media (max-width: 768px) {
  .navbar ul,
  .contact-flex,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .btn,
  .hero .cta-btn,
  .contact button {
    width: 100%;
    text-align: center;
  }
}
