@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --white: #ffffff;
  --black: #353535;
  --grey: #A0A0A0;
  --Off-white: #F6F6F6;
  --green: #003300;
  --regular: 400;
  --semi-bold: 600;
  --bold: 700;

  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
  --radius: 0.5rem;
}

.dark {
  --background: 0 0% 3.9%;
  --foreground: 0 0% 98%;
  --card: 0 0% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 9%;
  --secondary: 0 0% 14.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 14.9%;
  --muted-foreground: 0 0% 63.9%;
  --accent: 0 0% 14.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 14.9%;
  --input: 0 0% 14.9%;
  --ring: 0 0% 83.1%;
  --chart-1: 220 70% 50%;
  --chart-2: 160 60% 45%;
  --chart-3: 30 80% 55%;
  --chart-4: 280 65% 60%;
  --chart-5: 340 75% 55%;
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

ody {
  font-family: "Poppins", sans-serif;
}

.Intro-Slide {
  position: relative;
}

.slider_hero_content {
  position: absolute;
  top: 22%;
  left: 6%;
  right: 6%;
  max-width: 810px;
}

.Intro-Slide .slider_hero_content h1 {
  font-size: 60px;
  color: #fff;
  background: none;
  font-weight: 600;
}



.Intro-Slide .slider_hero_content p {
  font-size: 23px;
  color: #fff;
  margin-top: 25px;
  max-width: 700px;
  margin-bottom: 60px;
}

.Intro-Slide .slider_hero_content a {
  /* color: #0d3b0d; */
  background-color: #fff;
  border: 1px solid #fff;
  width: fit-content;
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.Intro-Slide .slider_hero_content a:hover {
  background-color: transparent;
  color: #fff;
}

@media (min-width: 1600px) {
  body {
    width: 1600px;
    margin: auto;
  }
}


@media(max-width:991px) {
  .Intro-Slide .slider_hero_content h1 {
    font-size: 48px;
  }

  .Intro-Slide .slider_hero_content p {
    font-size: 20px;
  }
}

@media(max-width:768px) {
  .Intro-Slide .slider_hero_content h1 {
    font-size: 36px;
  }

  .Intro-Slide .slider_hero_content p {
    font-size: 16px;
  }
}

@media(max-width:575px) {
  /* .Intro-Slide {
    height: 100vh;
  }
  .Intro-Slide img {
    height: 100vh !important;
    object-fit: cover !important;
  } */

  .slider_hero_content {
    position: absolute;
    top: 15%;

  }
}

@media (max-width: 350px) {
  body {
    width: 350px;
    margin: auto;
  }
}

p {
  color: var(--black);
}

a {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--green);
  height: 70px;
}



/* ========== Common Heading in Sections ==========  */

.Common-Head {
  font-size: 43px;
  /* 4.3rem * 10 = 43px */
  font-weight: var(--semi-bold);
  text-align: center;
}

@media (max-width: 1400px) {
  .Common-Head {
    font-size: 40px;
    /* 4rem * 10 = 40px */
  }
}

@media (max-width: 1200px) {
  .Common-Head {
    font-size: 38px;
    /* 3.8rem * 10 = 38px */
  }
}

@media (max-width: 1000px) {
  .Common-Head {
    font-size: 37px;
    /* 3.7rem * 10 = 37px */
  }
}

@media (max-width: 768px) {
  .Common-Head {
    font-size: 34px;
    /* 3.4rem * 10 = 34px */
  }
}

@media (max-width: 500px) {
  .Common-Head {
    font-size: 30px;

  }
}

/* ========== Top Navigation Section ========== */

/* Main Navigation */

.Nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}

@media (max-width: 1400px) {
  .Nav {
    padding: 0 9%;
  }
}

@media (max-width: 1200px) {
  .Nav {
    padding: 0 8%;
  }
}

@media (max-width: 1000px) {
  .Nav {
    padding: 0 7%;
  }
}

@media (max-width: 768px) {
  .Nav {
    padding: 0 5%;
  }
}

@media (max-width: 600px) {
  .Nav {
    display: none;
  }
}

/* Logo */

.Nav-Logo img {
  height: auto;
  max-width: 100px;
  width: 100%;
}

@media (max-width: 1000px) {
  .Nav-Logo img {
    height: 40px;
  }
}

/* Menu */

.Nav-Menu {
  display: flex;
  gap: 90px;
  list-style: none;
}

.Nav-Menu a {
  font-size: 19px;
  /* 1.9rem * 10 = 19px */
  font-weight: var(--semi-bold);
}

@media (max-width: 1400px) {
  .Nav-Menu a {
    font-size: 17px;
    /* 1.7rem * 10 = 17px */
  }
}

@media (max-width: 1000px) {
  .Nav-Menu a {
    font-size: 16px;
    /* 1.6rem * 10 = 16px */
  }
}

@media (max-width: 1200px) {
  .Nav-Menu {
    gap: 70px;
  }
}

@media (max-width: 1000px) {
  .Nav-Menu {
    gap: 50px;
  }
}

/* Mobile Navigation */

@media (min-width: 601px) {
  .Side-Nav-Container {
    display: none;
  }
}

@media (max-width: 600px) {
  .Side-Nav {
    display: flex;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100%;
    height: 52px;
    background-color: #fff;
  }

  .Side-Nav-Logo img {
    height: 35px;
    width: 80px;
    position: fixed;
    top: 10px;
    left: 20px;
  }

  @media (max-width: 500px) {
    .Side-Nav-Logo img {
      height: 35px;
      top: 10px;
    }
  }

  .Side-Nav-Btn {
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .Side-Nav-Open-Btn {
    height: 39px;
    position: fixed;
    right: 20px;
    top: 6px;
    transition: all 0.4s;
  }

  .Side-Nav-Menu-Text {
    color: var(--black);
    font-weight: var(--regular);
    position: fixed;
    cursor: pointer;
    right: 83px;
    top: 20px;
    font-size: 25px;
    /* 2.5rem * 10 = 25px */
    transition: all 0.4s;
  }

  @media (max-width: 600px) {
    .Side-Nav-Menu-Text {
      font-size: 18px;
      right: 70px;
      top: 16px;
    }
  }

  .Side-Nav-Close-Btn {
    height: 45px;
    position: fixed;
    right: 150px;
    top: 0px;
    opacity: 0;
    transition: all 0.4s;
    cursor: pointer;
  }

  /* @media (max-width: 500px) {
    .Side-Nav-Close-Btn {
      height: 40px;
      top: 14px;
    }
  } */

  .Side-Nav-Links-Container {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    background-color: var(--black);
    transform: translateX(220px);
    transition: all 0.4s;
  }

  @media (max-width: 500px) {
    .Side-Nav-Links-Container {
      width: 190px;
      transform: translateX(190px);
    }
  }

  .Side-Nav-Link {
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    /* 1.8rem * 10 = 18px */
    letter-spacing: 0.5px;
    padding: 21px 30px 21px 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
  }

  .Side-Nav-Link:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 500px) {
    .Side-Nav-Link {
      font-size: 16px;
      /* 1.6rem * 10 = 16px */
      padding: 23px 30px 23px 0;
    }
  }

  .Side-Nav-Overlay {
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
  }

  /* .Side-Nav-Links-Container .Close {
    margin-bottom: 10px;
  } */

  .Nav-Open .Side-Nav-Open-Btn {
    right: 250px;
    opacity: 0;
    pointer-events: none;
  }

  .Nav-Open .Side-Nav-Menu-Text {
    right: 300px;
    opacity: 0;
    pointer-events: none;
  }

  .Nav-Open .Side-Nav-Close-Btn {
    right: 220px;
    opacity: 1;
  }



  .Nav-Open .Side-Nav-Links-Container {
    transform: translateX(0);
    background: #353535;
  }

  ul.navLinks {
    list-style: none;
    padding-top: 45px;
  }

  ul.navLinks li {
    padding-bottom: 25px;
    text-align: center;
    padding-right: 15px;
  }

  ul.navLinks li a {
    font-size: 16px;
    /* 1.6rem * 10 = 16px */
    color: #fff;
    cursor: pointer;
  }

  .Nav-Open .Side-Nav-Overlay {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .Nav-Open .Side-Nav-Close-Btn {
    right: 190px;
  }
}

/* ========== Intro Slide Section ========== */
.Intro-Slide {
  height: 100vh;
}

.Intro-Slides-Container {
  position: relative;
  background-color: var(--black);
}


@media (max-width: 600px) {
  .Intro-Slides-Container {
    margin: 50px 0 0 0;
  }
}

.Intro-Slide img {
  width: 100%;
  height: 100vh !important;
  object-fit: cover !important;
}

.Intro-Slide::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  /* background-color: #000; */
  opacity: 0.6;
}

.Intro-Fade {
  animation: fade-in 8s ease-in-out;
}

@media (max-width: 768px) {
  .Intro-Slide {
    height: 100vh
  }

  .Intro-Slide img {
    height: 100vh;
    object-fit: inherit !important;
  }
}

@keyframes fade-in {

  0%,
  100% {
    opacity: 0;
  }

  6%,
  94% {
    opacity: 1;
  }
}

/* ========== Landing Text ========== */

.Intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 80px 10% 0 10%;
}

@media (max-width: 1400px) {
  .Intro {
    padding: 70px 9% 0 9%;
  }
}

@media (max-width: 1200px) {
  .Intro {
    padding: 60px 8% 0 8%;
  }
}

@media (max-width: 1000px) {
  .Intro {
    padding: 55px 7% 0 7%;
  }
}

@media(max-width: 575px) {
  .About-Details-Container {
    text-align: center;
  }

  .Intro-Slide img {
    height: 100vh;
    height: fit-content;
    object-fit: cover !important;
  }
}

@media (max-width: 500px) {
  .Intro {
    padding: 30px 5% 0 5%;
  }
}

/* Landing Texts */
.Intro-Title {
  font-size: 43px;
  font-weight: var(--semi-bold);
  text-align: center;
}

@media (max-width: 1400px) {
  .Intro-Title {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .Intro-Title {
    font-size: 38px;
  }
}

@media (max-width: 1000px) {
  .Intro-Title {
    font-size: 37px;
  }
}

@media (max-width: 768px) {
  .Intro-Title {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .Intro-Title {
    font-size: 30px;
  }
}

.Intro-Details {
  font-size: 18.5px;
  line-height: 30px;
  /* text-align: center; */
}

@media (max-width: 1400px) {
  .Intro-Details {
    font-size: 18px;

  }
}

@media (max-width: 1200px) {
  .Intro-Details {
    font-size: 17.5px;
  }
}

@media (max-width: 1000px) {
  .Intro-Details {
    font-size: 17px;

  }
}

@media (max-width: 768px) {
  .Intro-Details {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ========== About Section ========== */

.About {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 45px;
}

.About .Common-Head {
  padding: 40px 0 60px 0;
}

@media (max-width:1000px) {
  .About .Common-Head {
    padding: 40px 0 20px;
  }
}

@media (max-width: 768px) {
  .About .Common-Head {
    padding: 20px 0 20px 0;
  }
}

/* About Details */
.About-Items-Container {
  height: 730px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url("https://www.ogvenergy.com/assets/images/common/White-BG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 0 10%;
}

@media (max-width: 1400px) {
  .About-Items-Container {
    padding: 0 9%;
  }
}

@media (max-width: 1200px) {
  .About-Items-Container {
    padding: 0 8%;
  }
}

@media (max-width: 1199px) {
  .Intro-Slides-Container {
    /* height: 900px; */
    height: fit-content;
  }
}

@media (max-width: 1000px) {
  .About-Items-Container {
    height: 1000px;
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 7% 70px 7%;
  }
}

@media (max-width: 768px) {
  .About-Items-Container {
    padding: 0px 7% 19px 7%;
    height: 1080px;
  }

  .Intro-Slides-Container {
    /* height: 100%; */
    height: fit-content;
  }

  .About-Items-Container {
    height: 100%;
  }
}

.About-Details-Container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 17px;
  padding: inherit;
}

.About-Details {
  font-size: 17px;
  /* 1.7rem * 10 = 17px */
  line-height: 30px;
  padding: 0 100px 0 0;
}

@media (max-width: 1400px) {
  .About-Details {
    line-height: 29px;
    padding: 0 90px 0 0;
  }
}

@media (max-width: 1200px) {
  .About-Details {
    line-height: 28px;
    font-size: 16px;
    /* 1.6rem * 10 = 16px */
    padding: 0 65px 0 0;
  }
}

@media (max-width: 1000px) {
  .About-Details {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .About-Details {
    line-height: 27px;
    font-size: 15.5px;
    /* 1.55rem * 10 = 15.5px */
  }
}

/* About Image */

.About-Image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.About-Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .About-Image img {
    width: 90%;
    height: 90%;
  }
}

@media (max-width: 768px) {
  .About-Image img {
    width: 100%;
    height: 100%;
  }
}

/* Features */

.Feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10% 70px 10%;
}

@media (max-width: 1400px) {
  .Feature {
    padding: 0 9% 70px 9%;
  }
}

@media (max-width: 1200px) {
  .Feature {
    padding: 0 8% 70px 8%;
  }
}

@media (max-width: 1000px) {
  .Feature {
    padding: 0px 7% 70px 7%;
  }
}

@media (max-width:768px) {
  .Feature {
    padding: 0px 7% 70px 7%;
  }

  .Common-Head2 {
    margin-bottom: 0 !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 500px) {
  .Feature {
    padding: 0 5% 70px 5%;
  }
}

@media (max-width:452px) {
  .Feature {
    padding: 7% 5% 70px 5%;
  }
}

@media (max-width:394px) {
  .Feature {
    padding: 8% 5% 70px 5%;
  }
}

/* Title */

.Feature-Title {
  font-size: 17px;
  /* 1.7rem * 10 = 17px */
  text-align: center;
  padding: 70px 0 70px 0;
  line-height: 30px;
}

.Common-Head2 {
  font-size: 43px;
  /* 4.3rem * 10 = 43px */
  font-weight: var(--semi-bold);
  text-align: center;
  margin-bottom: -50px;
  margin-top: 70px;
}

@media (max-width: 1400px) {
  .Feature-Title {
    font-size: 17px;
    /* 1.7rem * 10 = 17px */
  }
}

@media (max-width: 1200px) {
  .Feature-Title {
    font-size: 17px;
    /* 1.7rem * 10 = 17px */
  }
}

@media (max-width: 768px) {
  .Feature-Title {
    font-size: 16px;
    /* 1.6rem * 10 = 16px */
    padding: 20px 0 70px 0;
  }
}

@media (max-width: 500px) {
  .Feature-Title {
    font-size: 15px;

    text-align: left;
    line-height: 27px;
    text-align: center;
  }

  .Common-Head2 {
    margin-top: unset;
    margin-bottom: unset;
    font-size: 28px;

  }
}

/* Items */

.Feature-Items-Container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1400px) {
  .Feature-Items-Container {
    gap: 15px;
  }
}

@media (max-width: 1200px) {
  .Feature-Items-Container {
    gap: 12px;
  }
}

@media (max-width: 1000px) {
  .Feature-Items-Container {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .Feature-Items-Container {
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .Feature-Items-Container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.Feature-Item {
  height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  border-radius: 7px;
  background-color: var(--white);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.07);
  padding: 50px 40px 0 40px;
}

@media (max-width: 1000px) {
  .Feature-Item {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .Feature-Item {
    height: 290px;
    padding: 32px 11px 0 11px;
  }
}

@media (max-width: 500px) {
  .Feature-Item .Details {
    font-size: 13px !important;
    /* 1.3rem * 10 = 13px */
  }

  .Feature-Item {
    height: 260px;
  }

  .Feature-Item .Title {
    font-size: 18px !important;
    /* 1.8rem * 10 = 18px */
  }
}

/* Item Image */

.Feature-Item img {
  height: 70px;
}

@media (max-width: 1400px) {
  .Feature-Item img {
    height: 68px;
  }
}

/* Item Title */

.Feature-Item .Title {
  color: var(--black);
  font-size: 19px;
  /* 1.9rem * 10 = 19px */
  font-weight: var(--semi-bold);
}

/* Item Details */

.Feature-Item .Details {
  color: #000;
  font-size: 16px;
  /* 1.6rem * 10 = 16px */
  text-align: center;
}

@media (max-width: 1400px) {
  .Feature-Item .Details {
    font-size: 15px;

  }
}

/* ========== Map Section ========== */

.Map {
  background-image: url("https://www.ogvenergy.com/assets/images/common/White-BG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 0 0 80px 0;
}

@media (max-width: 768px) {
  .Map {
    padding: 0 0 40px 0;
  }
}

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

.Map .Common-Head {
  padding: 60px 0 60px 0;
}

@media (max-width: 1000px) {
  .Map img {
    height: auto;
    object-fit: inherit;
  }
}

@media (max-width: 768px) {
  .Map .Common-Head {
    padding: 40px 0 40px 0;
  }
}

/* ========== Products ========== */

.Product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 10% 100px 10%;
  background-image: url("/assets/productbg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1400px) {
  .Product {
    padding: 80px 9% 100px 9%;
  }
}

@media (max-width: 1200px) {
  .Product {
    padding: 80px 8% 100px 8%;
  }
}

@media (max-width: 1000px) {
  .Product {
    padding: 80px 7% 90px 7%;
  }
}

@media (max-width: 500px) {
  .Product {
    padding: 60px 5% 70px 5%;
  }
}

.Product .Common-Head {
  padding: 0 0 70px 0;
  color: #000;
}

@media (max-width: 768px) {
  .Product .Common-Head {
    padding: 0 0 40px 0;
  }
}

/* Product Items */

.Product-Items-Container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1400px) {
  .Product-Items-Container {
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .Product-Items-Container {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .Product-Items-Container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.Product-Item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Product-Item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.Product-Item p {
  color: var(--white);
  font-size: 34px;
  /* 3.4rem * 10 = 34px */
  font-weight: var(--semi-bold);
  letter-spacing: 2px;
  position: absolute;
}

@media (max-width: 1400px) {
  .Product-Item p {
    font-size: 32px;
    /* 3.2rem * 10 = 32px */
  }
}

@media (max-width: 1000px) {
  .Product-Item p {
    font-size: 28px;

  }
}

@media (max-width: 768px) {
  .Product-Item p {
    font-size: 25px;
    /* 2.5rem * 10 = 25px */
  }
}

@media (max-width: 600px) {
  .Product-Item p {
    font-size: 24px;
    /* 2.4rem * 10 = 24px */
  }
}

.Product-Details {
  font-size: 20px;
  line-height: 32px;
  padding: 70px 8% 0 8%;
  /* text-align: center; */
}

@media (max-width: 1400px) {
  .Product-Details {
    padding: 70px 6% 0 6%;
  }
}

@media (max-width: 1200px) {
  .Product-Details {
    padding: 70px 4% 0 4%;
    font-size: 18px;
    /* 1.8rem * 10 = 18px */
    line-height: 30px;
  }
}

@media (max-width: 1000px) {
  .Product-Details {
    padding: 70px 0 0 0;
  }
}

/* ========== Contact Section ========== */

.Contact {
  height: 830px;
  padding: 0 10%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url("https://www.ogvenergy.com/assets/images/common/White-BG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 1400px) {
  .Contact {
    padding: 0 9%;
    height: 800px;
  }
}

@media (max-width: 1200px) {
  .Contact {
    height: 750px;
    padding: 0 8%;
  }
}

@media (max-width: 1000px) {
  .Contact {
    grid-template-columns: repeat(1, 1fr);
    height: 1420px;
    padding: 50px 7% 90px 7%;
  }
}

@media (max-width: 768px) {
  .Contact {
    padding: 50px 7% 70px 7%;
  }
}

@media (max-width: 500px) {
  .Contact {
    height: 1550px;
    padding: 50px 5% 50px 5%;
  }
}

@media (max-width: 400px) {
  .Contact {
    height: 1620px;
  }
}

.Contact-Details-Container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 0 150px 0 0;
}

@media (max-width: 1400px) {
  .Contact-Details-Container {
    padding: 0 100px 0 0;
    gap: 35px;
  }
}

@media (max-width: 1200px) {
  .Contact-Details-Container {
    padding: 0 50px 0 0;
    gap: 30px;
  }
}

@media (max-width: 1000px) {
  .Contact-Details-Container {
    padding: 0;
  }
}

.Contact-Details-Container .Title {
  font-size: 28px;
  /* 2.8rem * 10 = 28px */
  font-weight: var(--bold);
}

@media (max-width: 1200px) {
  .Contact-Details-Container .Title {
    font-size: 26px;

  }
}

.Contact-Details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.Contact-Details p {
  font-size: 16px;
  /* 1.6rem * 10 = 16px */
  line-height: 25px;
}

@media (max-width: 1200px) {
  .Contact-Details p {
    font-size: 15px;

    line-height: 24px;
  }
}

/* Contact Form */

.Contact-Form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background-color: var(--Off-white);
}

.Contact-Form .Item:last-of-type {
  padding: 0;
  border: none;
}

@media (max-width: 768px) {
  .Contact-Form {
    background-color: rgba(255, 255, 255, 0);
  }
}

.Contact-Form .Title {
  font-size: 30px;

  font-weight: var(--bold);
}

@media (max-width: 1200px) {
  .Contact-Form .Title {
    font-size: 28px;

  }
}

.Contact-Form p {
  font-size: 15px;

}

@media (max-width: 1200px) {
  .Contact-Form p {
    font-size: 14px;

  }
}

@media (max-width: 1000px) {
  .Contact-Form p {
    font-size: 15px;

  }
}

@media (max-width: 768px) {
  .Contact-Form p {
    font-size: 14px;

  }
}

.Contact-Form .Asterisk {
  font-size: 20px;
  color: var(--green);
}

@media (max-width: 1200px) {
  .Contact-Form .Asterisk {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .Contact-Form .Asterisk {
    font-size: 20px;

  }
}

@media (max-width: 768px) {
  .Contact-Form .Asterisk {
    font-size: 18px;

  }
}

.Contact-Form .Item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.Contact-Form .Full-Length {
  font-size: 16px;
  color: var(--black);
  border: hidden;
  border-radius: 3px;
  border: 2px solid var(--grey);
  padding: 12px;
  width: 400px;
  padding-bottom: 25px;
}

@media (max-width: 1200px) {
  .Contact-Form .Full-Length {
    width: 350px;
  }
}

@media (max-width: 1000px) {
  .Contact-Form .Full-Length {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .Contact-Form .Full-Length {
    width: 380px;
  }
}

@media (max-width: 500px) {
  .Contact-Form .Full-Length {
    width: 300px;
  }
}

.Contact-Form .Half-Length {
  font-size: 16px;
  color: var(--black);
  border: hidden;
  border-radius: 3px;
  border: 2px solid var(--grey);
  padding: 12px;
  width: 195px;
}

@media (max-width: 1200px) {
  .Contact-Form .Half-Length {
    width: 170px;
  }
}

@media (max-width: 1000px) {
  .Contact-Form .Half-Length {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .Contact-Form .Half-Length {
    width: 185px;
  }
}

@media (max-width: 500px) {
  .Contact-Form .Half-Length {
    width: 300px;
  }
}

.Contact-Form input:focus,
.Contact-Form textarea:focus {
  outline: none;
}

.Contact-Form .Dual-Container {
  display: flex;
  gap: 10px;
}

@media (max-width: 500px) {
  .Contact-Form .Dual-Container {
    flex-direction: column;
    gap: 15px;
  }
}

.Contact-Form textarea {
  resize: none;
  font-family: "Poppins", sans-serif;
}

.Contact-Form .Button {
  font-size: 16px;
  font-weight: var(--semi-bold);
  letter-spacing: 1.5px;
  color: var(--white);
  border: none;
  background-color: var(--green);
  padding: 15px 50px;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .Contact-Form .Button {
    padding: 14px 45px;
  }
}

@media (max-width: 1200px) {
  .Contact-Form .Button {
    padding: 13px 38px;
  }
}

@media (max-width: 575px) {
  .Contact-Form .Button {
    margin-top: 20px;
  }

  footer .Contact-Form .Button {
    margin-top: 0;
  }
}

/* ========== Footer Section ========== */

.Know-More {
  height: 150px;
  background-color: var(--Off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 0 10%;
}

@media (max-width: 1400px) {
  .Know-More {
    padding: 0 9%;
    gap: 80px;
  }
}

@media (max-width: 1200px) {
  .Know-More {
    padding: 0 8%;
    gap: 40px;
  }
}

@media (max-width: 1000px) {
  .Know-More {
    flex-direction: column;
    padding: 0 7%;
    gap: 20px;
    height: 190px;
  }
}

@media (max-width: 500px) {
  .Know-More {
    flex-direction: column;
    padding: 0 5%;
    gap: 25px;
  }
}

.Know-More p {
  font-size: 20px;
  font-weight: var(--semi-bold);
  text-align: center;
}

@media (max-width: 1400px) {
  .Know-More p {
    font-size: 19px;
    /* 1.9rem * 10 = 19px */
  }
}

@media (max-width: 1200px) {
  .Know-More p {
    font-size: 18px;
    /* 1.8rem * 10 = 18px */
  }
}

.Know-More .Highlight {
  font-weight: var(--semi-bold);
  color: var(--green);
}

.Know-More .Email {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Know-More .ID {
  font-size: 16px;
  /* 1.6rem * 10 = 16px */
  background-color: var(--white);
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  padding: 16px;
  width: 350px;
}

@media (max-width: 1400px) {
  .Know-More .ID {
    width: 300px;
  }
}

@media (max-width: 1200px) {
  .Know-More .ID {
    width: 290px;
  }
}

@media (max-width: 1000px) {
  .Know-More .ID {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .Know-More .ID {
    width: 320px;
  }
}

@media (max-width: 500px) {
  .Know-More .ID {
    width: 230px;
    font-size: 14px;
    padding: 15px;
  }
}

.Know-More .Button {
  font-size: 16px;
  font-weight: var(--semi-bold);
  letter-spacing: 2px;
  color: var(--white);
  background-color: var(--green);
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 16px 40px;
  cursor: pointer;

}

.Know-More .ID:focus {
  outline: none;
}

@media (max-width: 1200px) {
  .Know-More .Button {
    padding: 16px 20px;
  }
}

@media (max-width: 1000px) {
  .Know-More .Button {
    padding: 16px 25px;
  }
}

@media (max-width: 500px) {
  .Know-More .Button {
    font-size: 14px;
    padding: 15px 22px;
  }
}

/* Copyright */

.Copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10%;
}

@media (max-width: 1400px) {
  .Copyright {
    padding: 30px 9%;
  }
}

@media (max-width: 1200px) {
  .Copyright {
    padding: 30px 8%;
  }
}

@media (max-width: 1000px) {
  .Copyright {
    padding: 30px 7%;
  }
}

@media (max-width: 600px) {
  .Copyright {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .Copyright {
    padding: 30px 3%;
  }
}

.Copyright img {
  height: 55px;
}

@media (max-width: 1400px) {
  .Copyright img {
    height: 50px;
  }
}

@media (max-width: 1200px) {
  .Copyright img {
    height: 45px;
  }
}

@media (max-width: 600px) {
  .Copyright img {
    display: none;
  }
}

.Copyright a {
  font-size: 17px;
  /* 1.7rem * 10 = 17px */
  font-weight: var(--semi-bold);
}

@media (max-width: 500px) {
  .Copyright a {
    font-size: 15px;

  }
}

.Copyright .Highlight {
  color: var(--green);
}

header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgb(204 204 204 / 35%);
  left: 0;
  z-index: 9;
}

.Title-text {
  font-size: 15px;
}

/* Chat Tool Styles */
.page-wraper {
  position: relative;
}

.chat_tool {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat_window {
  width: 350px;
  height: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
}

.welcome_page {
  text-align: center;
}

.chat_win_intro {
  text-align: center;
  padding: 35px 15px;
  background-color: #7350b7;
  border-radius: 10px;
}

.chat_win_intro h3 {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}

.chat_win_intro p {
  color: white;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.ch_theme_button {
  padding: 20px 10px;
}

.ch_theme_button button {
  background-color: #7350b7;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  width: 100%;
}

.user_form {
  display: none;
  flex-direction: column;
  height: 100%;
}

.chat_header {
  background: var(--green);
  color: white;
  padding: 15px;
  border-radius: 10px 10px 0 0;
}

.chat_back_button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  /* 1.8rem * 10 = 18px */
  cursor: pointer;
  width: 30px;
  height: 26px;
  border-radius: 4px;
  background-color: rgb(0 0 0 / 30%);
  color: #fff;
}

.chat_back_button:hover {
  background-color: #fff;
  color: #000;
}

.user_form_inner {
  padding: 20px;
  flex: 1;
}

.fieldrow {
  margin-bottom: 15px;
}

.user_form_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  /* 1.4rem * 10 = 14px */
}

.chat_con {
  display: none;
  flex-direction: column;
  height: 100%;
}

.chat_con_body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.chat_messages {
  margin-bottom: 15px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 5px;
}

.chat_messages.visitor {
  background: var(--green);
  color: white;
  margin-left: 20px;
}

.chat_footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

.chat_footer_inner {
  display: flex;
  gap: 10px;
}

.chat_reply_input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.chat_reply_submit {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.call_button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  border: none;
  font-size: 24px;
  /* 2.4rem * 10 = 24px */
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  float: right;
}

.clearfix {
  clear: both;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-size: 13px;
}

.faq-section .h2 {
  font-size: 10px;
}

.faq-title {
  text-align: center;
  font-size: 30px;

  margin-bottom: 20px;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.Contact {
  /* padding-top: 80px; */
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: 500;
  font-size: 25px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}