/* Main */
:root {
  /* variables */
  --colour1: #E3F0AF;
  --colour2: #5DB996;
  --colour3: #fff;
  --colour4: #118B50;
}
html {
  font-family: 'Alata';
  overflow-x: hidden;
  cursor: url("imgs/cursor.png"), auto !important;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
br {
  height: 2px;
}

/* TEXT */
h1 {
  font-family: 'Mandali';
}
h2 {
  font-family: 'Mandali';
}
a {
  text-decoration: none;
  color: var(--colour4);
}
ul {
  list-style-type: square;
}
/* list bullet point colour */
li::marker {
  color: var(--colour4);
}
/* This is changing the colour when the user selects some text */
::selection {
  color: white;
  background: var(--colour2);
}
::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--colour2);
}

/* MAIN COMPONENTS */
/* this is the container div for all pages so the padding is consistent */
.mainDiv {
  padding: 50px 60px;
}
.textifyTtl {
  margin: 0 !important;
}

/* NAVBAR */
/* container for logo */
#logoContainer {
  margin: 10px;
  float: left;
}
nav .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: white;
      font-size: 20px;
      font-weight: bold;
    }
    nav .logo img {
      width: 35px;
      margin-right: 10px;
    }

/* text styling for the logo/main page name */
#logo {
  display: block;
  color: var(--colour4);
  border-radius: 5px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  
}
.nav {
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.nav > li {
  /* margin: 12.5px 10px; */
  float: right;
  margin: 12.5px 10px !important;
}
.nav > li > a {
  font-family: 'Ubuntu';
  color: var(--colour4);
  border-radius: 5px;
  text-align: center;
  margin: 0px 20px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  line-height: 42px;
  border: none;
}
.nav > li > a:hover {
  color: var(--colour4);
  background: transparent;
  box-shadow: none;
}
.nav > li > a:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: var(--colour2);
  transition: 400ms ease all;
}
.nav > li > a:after{
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.nav > li > a:hover:after{
  width: 100%;
  transition: 600ms ease all;
}
.icon {
  display: none;
}
.fa {
  position: relative;
  top: 20px;
  right: 10px;
  width: 30px;
}

/* DROP-DOWN MENU */
.dropdown {
  float: right;
  margin: 12.5px 10px !important;
}
.dropbtn {
  font-family: 'Ubuntu';
  color: var(--colour4);
  border-radius: 5px;
  text-align: center;
  margin: 0px 20px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  line-height: 42px;
  border: none;
}
.dropbtn:hover {
  color: var(--colour4);
  background: transparent;
  box-shadow: none;
}
.dropbtn:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: var(--colour2);
  transition: 400ms ease all;
}
.dropbtn:after{
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.dropbtn:hover:after{
  width: 100%;
  transition: 600ms ease all;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
  display: block;
}


/* MAIN BUTTON DESIGN; original from CodePen - Candy Color Button Animation - Yuhomyan */
/* button styling */
.mainBtn {
  width: 200px;
  height: 50px;
  border-radius: 5px;
  padding: 10px 25px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  background-image: linear-gradient(330deg, var(--colour4) 0%, var(--colour2) 74%);
  line-height: 52px;
  padding: 0;
  border: none;
}
/* button text styling */
.mainBtn span {
  color: var(--colour3);
  font-family: 'Alata';
  font-size: 2.5vh;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/* creating the transition for the bottom and right side line design */
.mainBtn:before, .mainBtn:after {
  position: absolute;
  content: ""; /* this is necessary for transitions */
  right: 0;
  bottom: 0;
  background: var(--colour2);
  transition: all 0.3s ease;
}
/* editing the width & height during the transitions, as well as before and after  */
.mainBtn:before {
  height: 0%;
  width: 2px;
}
.mainBtn:after {
  width: 0%;
  height: 2px;
}
.mainBtn:hover:before {
  height: 100%;
}
.mainBtn:hover:after {
  width: 100%;
}
.mainBtn:hover {
  background: transparent;
}
/* creating the transition for the top and left side line design */
.mainBtn span:before, .mainBtn span:after {
  position: absolute;
  content: ""; 
  left: 0;
  top: 0;
  background: var(--colour2);
  transition: all 0.3s ease;
}
/* Changing the text style during and after the transition */
.mainBtn span:hover{
  color: var(--colour4);
}
.mainBtn span:before {
  width: 2px;
  height: 0%;
}
.mainBtn span:after {
  height: 2px;
  width: 0%;
}
.mainBtn span:hover:before {
  height: 100%;
}
.mainBtn span:hover:after {
  width: 100%;
}

/* PARALLAX */
.para {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* MAIN PAGE  */
/* divs */
/* images */
#mainHomeImg, #subHomeImg, #sumHomeImg {
  height: 70vh;
}
#mainHomeImg {
  background-image: url("imgs/bg\ img.png");
}
#subHomeImg {
  background-image: url("imgs/bg\ img2.png");
}
#sumHomeImg {
  background-image: url("imgs/amc.jpg");

}
/* CALCULATIONS PAGE */
/* headings styling */
.outputTtl {
  margin: 1rem 2.5rem 0;
  text-decoration: underline;
  text-decoration-color: var(--colour2);
}
#charging-time, #charging-cost {
  margin: 0rem 2.5rem;
}
/* Calculation inputs */
/* creating the container for the inputs and making it responsive to different screen sizes by using display:flex and using flex properties */
#form {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap; 
  align-items: flex-start;
  width: 90%;
  margin-bottom: 30px;
}
/* styling for the container that the input is in */
.inputContainer {
  margin: 2.5% 3% 0.5%;
  flex-grow: 1;
  min-width: 200px; 
  max-width: 40%;
}
/* the styling for the individual inputs, and controlling that they don't get too small or big, depending on the screen size */
input {
  min-width: 50%; 
  max-width: 70%;
  margin: 0 5px 10px 0;
  padding: 0.5rem;
  border-radius: 5px;
  border: 2px solid var(--colour2);
  appearance: none;
  -webkit-appearance:none;
  -moz-appearance:textfield;
}
input:focus {
  border: 2px solid var(--colour4) !important;
  background-color: #E3F0AF;
  outline: none;
}
/* changing the opacity for the optional inputs */
.optional {
  opacity: 50%;
}
.optional:has(input:focus) {
  opacity: 100%;
}

/* this input container is unique, as it needs to be larger as it has two inputs in it */
#charge-amount {
  max-width: 30%;
  flex-grow: 2; 
}
/* this is the button to calculate (uses styling from the main button as well */
#calculate {
  width: 30%;
  min-width: 120px;
  max-width: 250px;
  margin: 10px 20px;
}
/* Reset button styling */
.subBtn {
  width: 8%;
  min-width: 74px;
  margin: 10px 10px 10px 20px;
  border: none;
  outline: none;
  color: var(--colour4);
  background-color: transparent;
  font-family: 'Alata';
  font-size: 2vh;
  border: 2px var(--colour1) solid;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  line-height: 1;
  transition: 0.5s;
}
/* reset button hover and focus styling */
.subBtn:hover,
.subBtn:focus {
  border-color: var(--colour4);
  color: #fff;
  box-shadow: inset 0 -3.25em 0 0 var(--colour2);
}
.subBtn:active {
  box-shadow: inset 0 -3.25em 0 0 var(--colour4);
  color: var(--colour4);
}
#outputContainer {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap; 
  align-items: flex-start;
  margin: auto;
  width: 100%;
  margin-bottom: 2rem;
}
.output {
  margin: 1.2% 3% 0.5%;
  flex-grow: 1;
  min-width: 235px; 
  max-width: 50%;
}

/* EV CHARGING TIPS PAGE */
#tipsMainContainer {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap; 
  align-items: flex-start;
  width: 90%;
  margin-bottom: 30px;
}
#tipsTextContainer {
  margin: 10px;
  flex-grow: 1;
  min-width: 200px; 
  max-width: 55%;
}
#tipsImgContainer {
  margin: 20px;
  min-width: 340px; 
  flex-grow: 1;
  height: 100vh;
  background-image: url("imgs/car3.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

/* EV SAVING PLANET PAGE */
#saveMainContainer {
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap; 
  align-items: flex-start;
  width: 90%;
  margin-bottom: 30px;
}
#saveTextContainer {
  margin: 10px;
  flex-grow: 1;
  min-width: 200px; 
  max-width: 55%;
}
#saveImgContainer {
  margin: 20px;
  min-width: 400px; 
  flex-grow: 1;
  height: 128vh;
  background-image: url("imgs/Save\ Plant.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}
/* animation.css library */
.animate__fadeIn {
  animation-duration: 2s;
}


/* media queries for mobile responsiveness  */
@media screen and (max-width: 500px) {
  /* since this is a landscape image, it doesn't appear very well in mobile view so it will disappear in mobile view and will only be the text */
  #tipsImgContainer, #saveImgContainer {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  /* calculations page */
  #outputContainer {
    margin: 10px;
  }
  /* removing the parallax image affect on the main page */
  .para {
    background-attachment: scroll;
    background-size:contain;
    width: 100%;
  }
  /* navigation bar */
  .nav > li, .nav > .dropdown {
  	display: none;
  }
  .nav > a.icon {
    float: right;
    display: block;
  }
  .nav.responsive {
    position: relative;
  }
  .nav.responsive > .icon {
    position: absolute;
    right: 0;
    top: 50px;
  }
  .nav.responsive > li, .nav.responsive > .dropdown {
    float: none;
    display: block;
    text-align: left;
  }
  
}
@media screen and (max-width: 1210px) {
  /* flexibox components */
  #tipsTextContainer, #saveTextContainer {
    width: 100%;
    max-width: 100%;
  }
}
/* toast notification styling */
.message {
  font-size: 1.3rem;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
}
 
    body {
      margin: 0;
      font-family: 'Ubuntu', sans-serif;
      background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
      color: #333;
    }

    /* Hero Section */
    #aboutImgContainer {
      width: 100%;
      height: 350px;
      background: url("imgs/saving-planet2.jpg") no-repeat center center/cover;
      border-radius: 12px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }
    #aboutImgContainer::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }
    #aboutImgContainer h1 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 3rem;
      z-index: 1;
      text-shadow: 0 4px 8px rgba(0,0,0,0.6);
    }

    /* About Text */
    #aboutTextContainer {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      margin-top: -30px;
    }

    /* Team Section */
    .team-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .team-card {
      text-align: center;
      background: linear-gradient(145deg, #ffffff, #f1f8f6);
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .team-card:hover {
      transform: scale(1.05);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    }
    .team-card img {
      width: 110px;
      height: 110px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 12px;
      border: 3px solid #4caf50;
    }
    .team-card h3 {
      margin: 10px 0 5px;
      font-family: 'Alata', sans-serif;
    }
    .team-card p {
      font-size: 14px;
      color: #555;
    }

    /* Section Titles */
    h2 {
      margin-top: 50px;
      text-align: center;
      font-size: 2rem;
      color: #2e7d32;
    }
 /*Drap Downmenu */
 /* AC chargens */
 /* Main container */
#acMainContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    background-color: #f9f9f9;
}

/* Image container */
#acImgContainer {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url('imgs/ac1.jpg'); /* Replace with app image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text container */
#acTextContainer {
    flex: 1 1 500px;
    max-width: 800px;
}

/* Section titles */
#acTextContainer h1.textifyTtl {
    font-family: 'Mandali', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0aa66a;
}

#acTextContainer h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #0aa66a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Spec cards (if any) */
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: #0aa66a;
    margin-bottom: 0.5rem;
}

/* FAQ details styling */
.faq details {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 4px solid #0aa66a;
    background: #f1f2f6;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

/* CTA button */
.cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background-color: #0aa66a;
    color: #fff;
    font-family: 'Mandali', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
    #acMainContainer {
        flex-direction: column;
        padding: 1rem;
    }

    #acImgContainer, #acTextContainer {
        flex: 1 1 100%;
    }
}

 /* DC chargens */
 /* Main container */
#dcMainContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    background-color: #f9f9f9;
}

/* Image container */
#dcImgContainer {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url('imgs/dc1.jpg'); /* Replace with app image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text container */
#dcTextContainer {
    flex: 1 1 500px;
    max-width: 800px;
}

/* Section titles */
#dcTextContainer h1.textifyTtl {
    font-family: 'Mandali', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0aa66a;
}

#dcTextContainer h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #0aa66a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Spec cards (if any) */
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0aa66a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: #0aa660;
    margin-bottom: 0.5rem;
}

/* FAQ details styling */
.faq details {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 4px solid #0aa66a;
    background: #f1f2f6;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

/* CTA button */
.cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background-color: #0aa66a;
    color: #fff;
    font-family: 'Mandali', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
    #dcMainContainer {
        flex-direction: column;
        padding: 1rem;
    }

    #dcImgContainer, #dcTextContainer {
        flex: 1 1 100%;
    }
}

 /* solar-powerd chargens */
 /* Main container */
#paveMainContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    background-color: #f9f9f9;
}

/* Image container */
#paveImgContainer {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url('imgs/solar1.jpg'); /* Replace with app image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text container */
#paveTextContainer {
    flex: 1 1 500px;
    max-width: 800px;
}

/* Section titles */
#paveTextContainer h1.textifyTtl {
    font-family: 'Mandali', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0aa66a;
}

#paveTextContainer h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #1e272e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Spec cards (if any) */
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: #0aa66a;
    margin-bottom: 0.5rem;
}

/* FAQ details styling */
.faq details {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 4px solid #0aa66a;
    background: #f1f2f6;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

/* CTA button */
.cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background-color: #0aa66a;
    color: #fff;
    font-family: 'Mandali', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
    #paveMainContainer {
        flex-direction: column;
        padding: 1rem;
    }

    #paveImgContainer, #paveTextContainer {
        flex: 1 1 100%;
    }
}

  
/*smart chargens */
/* Main container */
#appMainContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    background-color: #f9f9f9;
}

/* Image container */
#appImgContainer {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url('imgs/smart1.jpg'); /* Replace with app image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text container */
#appTextContainer {
    flex: 1 1 500px;
    max-width: 800px;
}

/* Section titles */
#appTextContainer h1.textifyTtl {
    font-family: 'Mandali', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0aa660;
}

#appTextContainer h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #0aa660;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Spec cards (if any) */
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: #0aa66a;
    margin-bottom: 0.5rem;
}

/* FAQ details styling */
.faq details {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 4px solid #0aa66a;
    background: #f1f2f6;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

/* CTA button */
.cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background-color: #0aa66a;
    color: #fff;
    font-family: 'Mandali', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
    #appMainContainer {
        flex-direction: column;
        padding: 1rem;
    }

    #appImgContainer, #appTextContainer {
        flex: 1 1 100%;
    }
}
/*O&M & AMC */
/* Main container */
#servicesMainContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    background-color: #f9f9f9;
}

/* Image container */
#servicesImgContainer {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url('imgs/amc.jpg'); /* Replace with app image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text container */
#servicesTextContainer {
    flex: 1 1 500px;
    max-width: 800px;
}

/* Section titles */
#secvicesTextContainer h1.textifyTtl {
    font-family: 'Mandali', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0aa66a;
}

#secvicesTextContainer h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #0aa66a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Spec cards (if any) */
.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: #0aa66a;
    margin-bottom: 0.5rem;
}

/* FAQ details styling */
.faq details {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 4px solid #0aa66a;
    background: #f1f2f6;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

/* CTA button */
.cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background-color: #0aa66a;
    color: #fff;
    font-family: 'Mandali', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 900px) {
    #servicesMainContainer {
        flex-direction: column;
        padding: 1rem;
    }

    #servicesImgContainer, #servicesTextContainer {
        flex: 1 1 100%;
    }
}
/* request quote fome */
body {
      font-family: 'Ubuntu', sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f7f9;
      color: #222;
    }

    .contact-section {
      max-width: 900px;
      margin: 60px auto;
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-section h1 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 10px;
      color: #2e7d32; /* Green heading */
    }

    .contact-section p {
      text-align: center;
      margin-bottom: 30px;
      font-size: 16px;
      color: #444;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      font-weight: bold;
      display: block;
      margin-bottom: 6px;
      color: #0aa61f; /* Blue labels */
    }

    input, select, textarea {
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
      transition: border 0.3s;
    }

    input:focus, select:focus, textarea:focus {
      border: 1px solid #2e7d32; /* Green focus */
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: linear-gradient(90deg, #2e7d32, #38d653);
      color: #fff;
      padding: 14px 20px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: linear-gradient(90deg, #1b5e20, #6bf572);
    }
    /* request quote */
    
    body {
      font-family: 'Ubuntu', sans-serif;
      background: #f4f7f9;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 700px;
      margin: 40px auto;
      background: #fff;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    }
    h2 {
      text-align: center;
      color: #2e7d32;
      margin-bottom: 20px;
    }
    form label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }
    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }
    form textarea {
      height: 120px;
      resize: vertical;
    }
    .btn {
      margin-top: 20px;
      display: block;
      width: 100%;
      background: #2e7d32;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 18px;
    }
    .btn:hover {
      background: #256428;
    }
  



  