/* DEFAULT STYLING */
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
/*  font-family: "Poppins", sans-serif;
  font-family:monospace,monospace;*/
}
ul {
  margin-left: 20px;
}
ul li {
  list-style: disc;
}
li {
  list-style: none;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}
.img img {
  width: 35%;
}
.button {
  padding: 8px 40px;
  border-radius: 48px;
  min-height: 56px;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #000;
  transition: 0.3s ease;
}

.button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
}

.h3-heading {
  font-size: 22px;
  padding: 25px;
  border-bottom: 1px solid #000;
  margin-bottom: 24px;
  text-align: center;
}

/* ------------------------HEADER------------------------ */
header {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
}

/* -------------------------NAVBAR START------------------------- */

.navbar {
  height: 55px;
  width: 100%;
  padding: 12px;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: rgba(22, 22, 22, 0.788);

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column-1 {
  flex: 0 0 20%; /* 30% width */
}

.column-2 {
  flex: 0 0 80%; /* 70% width */
}
.left-nav {
  margin-left: 20px;
  padding: 24px;
}

.left-nav h5 {
  font-size: 22px;
  font-weight: 800;
}

.right-nav {
  margin-right: 20px;
  padding: 24px;
}

.right-nav .nav-links {
}

.right-nav .nav-links ul {
  display: flex;
}

.right-nav .nav-links ul li {
  padding: 6px 12px;
  color: #fff;
  margin: 0 2px;
  display: flex;
  align-items: center;

  justify-content: center;
  border-radius: 20px;
  transition: 0.3s ease;
}

.right-nav .nav-links ul li:hover {
  background-color: #fff;
  color: #000;
}

.right-nav .nav-links ul li a {
  font-size: 15px;
  text-align: left;
}

.right-nav .hamburger-icon {
  display: none;
  z-index: 9999;
  color: #fff;
  cursor: pointer;
}

.nav-links ul li:hover .nav-icon {
  transform: rotate(180deg);
}

.nav-links ul li .nav-icon {
  margin-left: 10px;
  transition: 0.3s ease;
}

/* sub menu  */
.nav-links ul li .dropdown-menu {
  position: absolute;
  width: 200px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: #000000;
  top: 30px;
  border-radius: 10px;
  padding: 10px;
}

.nav-links ul li .dropdown-menu li {
  margin-block: 6px;
  padding:5px;
  color: #fff;
  width:100%;
}

.nav-links ul li:hover .dropdown-menu {
  display: flex;
}
.nav-links ul li .dropdown-menu li a{width:100%; padding:5px;}
/* -------------------------NAVBAR END------------------------- */

/* ------------------------- HOMEPAGE 1 END -------------------------  */

.homepage .home-bg-img {
  height: 100vh;
  z-index: -1;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.home-bg-img h1 {
  font-size: 72px;
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid #fff;
  font-style: italic;
}

.home-bg-img h2 {
  font-size: 30px;
  margin-top: 20px;
}

.home-bg-img p {
  font-size: 30px;
  text-align: center;
  margin-top: 50px;
}

/* -------------------------HOME PAGE 2 START------------------------- */

.page-2 {
  display: flex;
  /* height: 100vh; */
}

.page-2 .page-2-left {
  flex: 1;
}

.page-2 .page-2-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-2 .page-2-right {
  flex: 1;
}

.page-2 .page-2-right-container {
  padding: 32px 56px;
}

.page-2 .page-2-right-container h2 {
  font-size: 44px;
  font-weight: 800;
}

.page-2 .page-2-right-container p {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.page-2 .page-2-right-container button {
  padding: 8px 40px;
  margin-top: 30px;
  border-radius: 48px;
  min-height: 56px;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #000;
  transition: 0.3s ease;
}

.page-2 .page-2-right-container button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
}

/* HOME PAGE 2 - MEDIA QUERY */

@media (max-width: 1400px) {
  .page-2 .page-2-right-container h2 {
    font-size: 34px;
    font-weight: 700;
  }

  .page-2 .page-2-right-container p {
    font-size: 19px;
    font-weight: 500;
  }
}

@media (max-width: 1060px) {
  .page-2 .page-2-right-container h2 {
    font-size: 24px;
    font-weight: 700;
  }

  .page-2 .page-2-right-container p {
    font-size: 16px;
    font-weight: 500;
  }
}

/* ------------------------- HOME PAGE 2 END------------------------- */
/* ----------------------HOME PAGE 3 START---------------------- */

.page-3 {
  padding: 0px 120px;
  background-color: #4caf50;
}

.page-3-container {
  padding: 40px 0;
}

.page-3-container h3 {
  font-size: 22px;
  padding: 15px 0;
  border-bottom: 1px solid #00f064;
  text-align: center;
}

.page-3-container .page-3-text-container {
  display: flex;
  margin-top: 30px;
}

.page-3-text-container .page-3-para {
  padding: 0 24px;
}

.page-3-container .p-1 {
  margin-bottom: 24px;
  line-height: 1.25;
  font-size: 22px;
  font-weight: 400;
}

.page-3-container .p-2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: rgb(255, 255, 255);
}

.page-3-container .p-3 {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  margin-top: 20px;
}

.page-3-contact {
  padding: 0 24px;
}

.page-3-contact h4 {
  font-size: 22px;
  /* margin-top: 24px; */
  font-weight: 500;
  margin-bottom: 24px;
}

.page-3-contact {
  padding: 0 24px;
}

.page-4 {
  padding: 40px;
}

.page-4-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-4-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.page-4-links-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  justify-content:center;
  gap: 30px;
}

.page-4-links-container a {
  min-height: 56px;
  max-width: 300px;
  padding: 8px 40px;
  background-color: #000;
  color: #fff;
  width: 500px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  transition: 0.3s ease;
}

.page-4-links-container a:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
}

/* ====================== ABOUT PAGE CSS ====================== */
.about {
  padding: 50px 0px;
  background-color: #fff;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 10px;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}
/* Styling the responsive div */
.responsive-div {
  max-width: 100%; /* Allows the div to be flexible */
  width: 100%;
  padding: 100px;
  background-color: #4caf50;
  color: white;
  border-radius: 0px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center the text */
  margin: auto;
}

/* Heading styles */
.responsive-div h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Paragraph styles */
.responsive-div p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-section {
  display: flex;
  justify-content: space-around; /* Align items horizontally with space */
  align-items: center; /* Align items vertically in the center */
  /* height: 50vh;                  */
  background-color: #f0f0f0;
}

.flex-item {
  width: 100%;
  height: 100%;
}
.bg-img-1 {
  position: relative;
  background-image: url(../img/11.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   height:40vh;
}
.bg-img-2 {
  position: relative;
  background-image: url(../img/12.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height:40vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-container {
  width: 100%;
  margin-top: 100px;
}
.text-center {
  text-align: center;
  padding: 20px;
}
.whoweare {
  display: flex;
  justify-content: space-around; /* Align items horizontally with space */
  align-items: center; /* Align items vertically in the center */
  height: auto; /* Full viewport height */
  background-color: #f0f0f0;
  color: #212121;
}

.flex-text-item {
  width: 100%;
  height: 100%;
  padding: 50px;
  margin: 50px;
}

.ceophoto {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-card {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px; /* You can adjust the max-width as needed */
  width: 100%;
  transition: all 0.3s ease;
}

.profile-img {
  width: 100%;
  border-radius: 50%; /* Makes the image round */
  object-fit: cover; /* Ensures the image covers the circle */
  margin-bottom: 15px;
}

.profile-info {
  padding: 10px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.designation {
  font-size: 14px;
  color: #777;
  margin: 5px 0 0;
}

/* -------------------------FOOTER------------------------- */
footer {
  background-color: lightgrey;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
}

.footer-container h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-left {
  flex: 1;
  padding: 40px;
}

.footer-left .footer-left-subscribe {
}

.footer-left .footer-left-subscribe p {
  margin-bottom: 20px;
}

.footer-left .footer-left-subscribe form {
  width: 100%;
  display: flex;
  border: 1px solid #000;
}

.footer-left .footer-left-subscribe form input {
  flex: 1;
  padding: 8px;
  font-size: 18px;
  border: none;
  outline: none;
}

.footer-left .footer-left-subscribe form button {
  background-color: #000;
  border: none;
  outline: none;
  color: #fff;
  width: max-content;
  padding: 0 12px;
}

.footer-left-social {
  display: flex;
  margin-top: 30px;
}

.footer-left-social .footer-social-icon {
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 20px;
  transition: 0.3s ease;
}

.footer-left-social .footer-social-icon:hover {
  background-color: rgb(126, 0, 0);
  cursor: pointer;
}

.footer-mid {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 400px;
}

.footer-mid .quick-links-container {
  display: flex;
  flex-direction: column;
}

.footer-mid .quick-links-container a {
  margin-top: 15px;
}

.footer-mid .quick-links-container a:hover {
  color: rgb(126, 0, 0);
}

.footer-right {
  flex: 1;
  padding: 40px;
  min-width: 400px;
  color: #212121;
}

.footer-right h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.footer-right h5 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.footer-right p {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: lightgrey;
}

.footer-bottom .footer-bottom-links {
  padding: 4px;
}

.footer-bottom .footer-bottom-links a:hover {
  color: #212121;
}
.copyright {
  background-color: #212121;
  color: #ffffff;
  padding: 10px;
}
.copyright p {
  text-align: center;
  font-size: 12px;
}

/* ========================= SHOP PAGE ========================== */

.shop-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.shop-page h5 {
  font-size: 22px;
  margin-top: 20px;
}

.shop-page h6 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.shop-page button {
  margin: 20px 0;
}

.shop-page h1 {
  padding: 50px 0;
  background-color: #000;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 50px;
}

/* ========================= PRIVACY POLICY PAGE ========================== */

.privacy-policy {
  padding: 0 50px;
  text-align: justify;
}

.privacy-policy p {
  padding: 10px 150px;
  font-size: 12px;
}

/*****************FAQ CSS*******************/
.faq-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-header {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1.2em;
  background-color: #f1f1f1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background-color: #ddd;
}

.faq-body {
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #ddd;
  display: none; /* Hidden by default */
}

/* sm-sceen navbar */

.sm-screen-links {
  position: absolute;
  width: 300px;
  height: 100vh;
  background-color: #000;
  right: -100%;
  top: 0;
  transition: 0.5s ease;
}
.active {
  right: 0;
}
.sm-screen-links nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.sm-screen-links nav ul li {
  list-style: none;
  width: max-content;
  cursor: pointer;
}
.sm-screen-links nav ul li {
  list-style: none;
  width: max-content;
  cursor: pointer;
  color: #fff;
}
.sm-screen-links nav ul .nav-cross-icon {
  position: absolute;
  right: 20px;
  color: #fff;
}

.sm-screen-links nav ul li .sm-sublinks {
  display: none;
}
.sm-screen-links nav ul li .sm-sublinks-2 {
  display: none;
}
.sm-screen-links nav ul li .active-sublinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
