/*web devices*/
/* General Styles */

/* CSS Reset */
@media (min-width: 992px) {
  .col-lg-3 {
    /* -ms-flex: 0 0 25%; */
    flex: 0 0 0%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%; /* For older IE support */
    flex: 0 0 16.666667%; /* Correcting the width */
    max-width: 46.666667%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding and border are included in total width/height */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.spinner-wrapper {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease; /* Smooth transition for opacity */
}
/* 
.spinner-border {
    width: 60px;
    height: 60px;
} */

/* 
/* Default state without animation */
.slide-from-left-container,
.slide-from-right-container {
  transform: translateX(0);
  opacity: 1;
}

/* Animation classes */
.animate-slide-from-left {
  animation: slideInFromLeft 1s ease-out;
}

.animate-slide-from-right {
  animation: slideInFromRight 1s ease-out;
}

/* Keyframes for sliding animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Media query to disable sliding effects on tablets and mobile devices */
@media (max-width: 991px) {
  .slide-from-left-container,
  .slide-from-right-container {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Default styles for sliding animations */
/* Default state without animation */
.slide-in-left-container,
.slide-in-right-container {
  transform: translateX(0);
  opacity: 1;
}

/* Animation classes */
.animate-slide-in-left {
  animation: slideInLeft 1s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 1s ease-out;
}

/* Keyframes for sliding animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(500%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Media query to disable sliding effects on tablets and mobile devices */
@media (max-width: 991px) {
  .slide-in-left-container,
  .slide-in-right-container {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Default styles for the sliding animations */
/* Default state without animation */
.animate-once-left,
.animate-once {
  transform: translateX(0);
  opacity: 1;
}

/* Animation classes */
.animate-slide-left {
  animation: slideInFromLeft 1s ease-out;
}

.animate-slide {
  animation: slideInFromRight 1s ease-out;
}

/* Keyframes for sliding animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Media query to disable sliding effects on tablets and mobile devices */
@media (max-width: 991px) {
  .animate-once-left,
  .animate-once {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in-left-image,
.fade-in-right-text,
.slide-in-right-heading {
  opacity: 0;
  transform: translateX(0);
}

/* Animation classes */
.animate-slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

/* Keyframes for sliding and fading animations */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media query to disable animations on tablets and mobile devices */
@media (max-width: 991px) {
  .animate-slide-in-right,
  .animate-fade-in-left,
  .animate-fade-in-right {
    opacity: 1; /* Ensure elements are fully opaque */
    transform: translateX(0); /* Ensure elements are in default position */
  }
}

.slide-in-left-heading,
.slide-in-left,
.slide-in-right {
  opacity: 0;
  transform: translateY(20px); /* Start off 20px down */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Animation classes */
.animations-slide-in-left-heading {
  animation: slideInLeftHeading 1s ease-out forwards;
}

.animations-slide-in-left {
  animation: slideInUp 1s ease-out forwards;
}

.animations-slide-in-right {
  animation: slideInUp 1s ease-out forwards;
}

/* Keyframes for sliding animations */
@keyframes slideInLeftHeading {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media query to disable animations on smaller screens */
@media (max-width: 991px) {
  .slide-in-left-heading,
  .slide-in-left,
  .slide-in-right {
    opacity: 1; /* Ensure elements are fully opaque */
    transform: translateY(0); /* Ensure elements are in default position */
  }
}

/*@laptop devices */

/* Navbar styles */

@media (min-width: 1025px) {
  .navbar {
    background-color: #111222;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px;
  }

  .col-lg-7 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
  }

  .navbar a {
    color: #f2f2f2;
    text-align: center;
    padding: 8px 10px;
    text-decoration: none;
  }

  .navbar a:hover {
    color: aqua;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .nav-link {
    font-size: 1rem;
    color: #f2f2f2;
  }

  .navbar .brand {
    font-size: 1.5em;
    font-weight: bold;
    font-family: "Livvic", system-ui;
  }

  .navbar .links {
    display: flex;
  }

  .navbar .links a {
    margin-left: 10px;
  }
}

.navbar .menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .content {
    margin-top: 100px;
    margin-bottom: 20px;
  }
  .content,
  .section-page {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1025px) {
  .reserved-section {
    text-align: center;
    background-color: #111222;
    color: #f2f2f2;
  }

  .section-heading {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: underline;
    margin: 0 10px;
    text-align: right;
    margin-right: calc(100% - 87%);
  }
}

.content img {
  /* Adjust as needed */
  max-width: calc(100% - 80%);
  height: auto;
}

@media (min-width: 1025px) {
  .section-page p {
    margin: calc(0px + 1%) auto;
    font-size: 27px;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    text-align: justify;
    font-weight: 450;
    max-width: calc(100% - 18%);
  }

  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
}

/* 
.vertical-line {
    height: 100px;
    background-color: black;
} */
@media (min-width: 1025px) {
  .arrow-icon {
    margin-left: 10px;
    margin-top: 15px;
  }

  .recorection {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 1025px) {
  .vision-line {
    width: calc(100% - 30%); /* Adjust width dynamically */
    height: 0.5px;
    background-color: black;
    margin: 0 auto;
    margin-left: calc(13vw + 9rem); /* Use vw for dynamic margin */
    margin-top: 10px;
  }

  .product-line {
    width: calc(100% - 36%);
    height: 0.5px;
    background-color: black;
    margin: 10px auto;
    margin-left: calc(0vw + 9rem);
  }

  .section-line {
    width: calc(100% - 18%);
    height: 0.5px;
    background-color: black;
    margin: 0 auto;
  }
}
/* @media (min-width: 1024px) and (max-width: 1440px) {
    .section-line {
        width: 80%;
        height: 0.5px;  
        background-color: black;
        margin: 0 auto;
    }

    .product-line {
        width: 80%; 
        height: 0.5px; 
        background-color: black; 
        margin: 0 auto; 
    }

    .vision-line {
        width: 80%;
        height: 0.5px;
        background-color: black;
        margin: 0 auto; 
    }
} */

@media (min-width: 1025px) {
  .vision-section img {
    max-width: calc(100% - 5%);
    height: auto;
    display: block;
    margin-top: calc(20px + 2%);
    margin-right: calc(0%);
  }
}

@media (min-width: 1025px) {
  .vision-section p {
    font-size: 27px;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    font-weight: 450;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: justify;
    margin-left: calc(100% - 88%); /* Corrected syntax */
  }
}

@media (min-width: 1025px) {
  .founder-sections {
    font-size: 27px;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: justify;
    margin-left: calc(100% - 92%);
    margin-right: 0px;
    font-weight: 450;
    margin-right: 30px;
  }
  .founder-image {
    max-width: calc(100% - 10%);
    height: auto;
    border-radius: 20%;
    margin-bottom: calc(10px + 1rem);
    margin-right: 30px;
    margin-left: calc(-5%);
  }

  /* Styles for Founder Text */
  .founder-text {
    font-size: 1.2em;
    font-family: sans-serif;
    font-weight: bold;
    margin-left: calc(100% - 90%);
  }

  .founder-heading {
    text-align: right;
    font-weight: bold;
    text-decoration: underline;
    margin-right: calc(100% - 88%);
    font-family: sans-serif;
  }
}

.text-style {
  margin-top: 100px;
  font-size: 1.2em;
}

/* General Styles for Section Headings */

@media (min-width: 1025px) {
  .section-headings {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: underline;
    margin: 10px 0;
    text-align: left;
    margin-left: calc(100% - 91.1%);
  }

  /* PRODUCTS Section */
  .products-section img {
    max-width: calc(100% - 20%);
    height: auto;
    margin: 0 auto;
    margin-top: 0px;
    margin-left: calc(100% - 40%);
  }

  .products-section p {
    font-size: 27px;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
    font-weight: 450;
    margin-left: calc(100% - 92%);
    margin-right: 0;
    clear: both;
  }
}

@media (min-width: 1025px) {
  .privacy-us {
    display: flex;
    justify-content: space-around;
    background-color: #111222;
    color: #f2f2f2;
  }

  .privacy-us-text {
    flex: 1;
    margin: 20px;
  }

  .privacy-us-text h2 {
    font-weight: 500;
  }
}

/* .founnder-heading{

        font-family: sans-serif; 
        font-weight: bold;       
        text-decoration: underline; 
        margin-right: 70px;
        text-align: right!important;
        font-weight: bold;
        margin-top: 10px;
        
            
 
} */

/* Footer styling */

@media (min-width: 1025px) {
  footer {
    background-color: #111222;
    padding: 10px;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 55px;
    flex-wrap: wrap;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
  }

  .social-icon:hover {
    background-color: #777;
    transform: scale(1.1);
  }
}

/* laptop device end */

/* tablets for Responsive */
@media (max-width: 768px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Responsive Adjustments */
@media (min-width: 768px) and (max-width: 992px) {
  .section-heading {
    text-align: right;
    font-size: 1.5em;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: underline;
    margin-right: 70px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .navbar {
    background-color: #111222;
    width: 100%;
    margin: 0 auto;
    /* height: 40px; */
    overflow: hidden;
    position: fixed;
    z-index: 1000;
  }

  .navbar .links.active {
    display: flex;
    max-height: 300px;
  }

  .navbar .menu-toggle {
    display: block;
    height: 100%;
    cursor: pointer;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .section-headings {
    font-size: 1.5em;
    float: left;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: underline;
    margin-top: auto;
    margin-left: calc(100% - 97%);
    margin-right: 10px;
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .founder-heading {
    font-size: 1.5em;
    text-align: end;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: underline;
    /* margin-left: 10px;  */
    margin-right: calc(100% - 93%);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .vision-line {
    width: calc(100% - 26%);
    margin-left: auto;
    margin-right: 30px;
    margin-top: calc(10px + 1%);
    background-color: black;
    height: 0.5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .section-line {
    background-color: black;
    margin: 0 auto;
    width: calc(100% - 7%);
    height: 0.5px !important;
  }

  .product-line {
    width: calc(100% - 27%);
    margin-left: calc(100% - 97%);
    margin-right: auto;
    height: 0.5px;
    background-color: black;
  }
}
/* founder page responsive for tabltes*/
@media (min-width: 768px) and (max-width: 992px) {
  .reserved-section {
    font-size: 0.9rem;
    text-align: center;
    background-color: #111222;
    color: #f2f2f2;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
}

/* product page responsive for tabltes */
@media (min-width: 768px) and (max-width: 992px) {
  .products-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    position: relative;
  }

  .products-section img {
    max-width: calc(100% - 45%);
    margin-top: calc(10px + 1%);
    margin-left: calc(100% - 97%);
  }

  .products-section p {
    font-size: 1.2rem;
    text-align: justify !important;
    font-weight: 450;
    margin: 0;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    margin-left: calc(-20%);
    margin-right: calc(100% - 96%);
    margin-top: calc(15px + 1%);
    margin-bottom: 10px;
    text-align: justify;
  }
}

/* Vision section responsive for tablets */
@media (min-width: 768px) and (max-width: 992px) {
  .vision-section p {
    font-size: 1.2rem;
    text-align: justify;
    font-family: "Jost", sans-serif;
    font-weight: 450;
    margin: 0;
    margin-left: calc(100% - 98%);

    margin-bottom: calc(10px + 2%);
  }

  .vision-image {
    display: inline-block;
    margin-bottom: 10px;
  }

  .vision-section img {
    float: right;
    max-width: 145px;
    margin-right: calc(-40%);
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  footer {
    background-color: #111222;
    padding: 10px;
    text-align: center;
  }

  .privacy-us {
    display: flex;
    justify-content: space-around;
    background-color: #111222;
    color: #f2f2f2;
  }

  .privacy-us-text {
    flex: 1;
    margin: 20px;
  }

  .privacy-us-text p {
    font-size: 13px;
  }

  .privacy-us-text h2 {
    font-weight: 500;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .founder-section-head {
    display: grid; /* Use block layout */
    grid-template-columns: auto auto;
    gap: 10px;
    /* Space between sections */
  }

  /* .founder-heading{
        margin-right: 5rem !important;
    } */

  .founder-sections {
    font-size: 1.2rem !important;
    text-align: justify !important;
    max-width: calc(100% - 1%) !important;
    font-weight: 450;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    margin: 0;
    margin-left: calc(100% - 98%);
  }

  .founder-section {
    margin-bottom: 0; /* Ensure there's no extra margin at the bottom */
  }

  .founder-image {
    max-width: calc(80px + 10vw);
    display: inline-block;
    margin-bottom: calc(10px + 1%);
    border-radius: 20%;
  }

  .founder-text {
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: calc(100% - 85%); /* Adjusted space above the text */
    text-align: right; /* Align text to the right */
    display: block; /* Ensures text is block-level */
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .section-page p {
    font-size: 1.2rem !important;
    text-align: justify !important;
    max-width: calc(100% - 3%) !important;
    font-weight: 450;
    font-family: "Jost", sans-serif;
    margin-left: calc(100% - 98%);

    /* padding-left: 30px;              Code Changed by Poovarasan Ravi on 22-08-2024
        padding-right: 30px;  -*/
  }

  .content img {
    width: calc(100% - 70%);
    height: auto;
    margin-top: calc(50px + 2%);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 55px;
    flex-wrap: wrap;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .arrow-icon {
    font-size: 8px;
    margin-left: -3px;
    margin-top: calc(13px + 1%);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .recorection {
    display: flex;
    flex-wrap: wrap;
  }
}

/*tablet device end */

@media (max-width: 600px) {
  /* .section-heading {
        font-size: 1.6em;   
        margin-right: calc(100% - 90%);
        text-decoration: underline;
        font-weight:bold;
        
    } */
  .section-heading {
    /* margin-left:calc(100% - 70%); */
    text-align: center;
    font-size: 1.6em;
    text-decoration: underline;
    font-weight: bold;
  }
}

@media (max-width: 600px) {
  .founder-heading {
    font-size: 1.6em;
    margin-right: 5px;
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
  }
  .navbar {
    background-color: #111222;
    width: 100%;
    margin: 0 auto;
    /* height: 40px!important; */
    overflow: hidden;
    position: fixed;
    z-index: 1000;
  }
}

@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
}

/* Responsive Adjustments */

@media (max-width: 600px) {
  .section-headings {
    font-size: 1.6em;
    /* margin-left: 0px; */
    margin-right: auto;
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
  }
}
@media (max-width: 600px) {
  .arrow-icon {
    font-size: 8px;
    margin-left: calc(100% - 30%);
    margin-top: -67px;
  }
}

@media (max-width: 600px) {
  .section-headings {
    font-size: 1.6em !important;
    /* margin-left: 135px!important; */
  }
}

/*product responsive*/
@media (min-width: 320) and (max-width: 576) {
  .products-section img {
    margin-top: -5px;
  }
}

@media (max-width: 600px) {
  .reserved-section {
    font-size: 0.6rem;
    text-align: center;
    background-color: #111222;
    color: #f2f2f2;
  }
}

@media (max-width: 600px) {
  .products-section img {
    max-width: calc(100% - 50%);
    margin-left: calc(100% - 70%);
    margin-top: -5px;
    align-items: center !important;
  }
  .products-section p {
    font-size: 19.2px;
    text-align: justify !important;
    font-weight: 450;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    margin-top: calc(10px + 1%);
  }
}

@media (min-width: 375px) and (max-width: 600px) {
  .products-section img {
    margin-left: 90px;
    margin-top: -5px;
  }
}
@media (max-width: 600px) {
  .founder-section-head {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column-reverse; /* Reverse the order of elements */
  }

  .founder-sections {
    font-size: 19.2px;
    margin-left: -1px;
    margin-right: -1px;
    text-align: justify;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    font-weight: 450;
  }
  .founder-section {
    align-items: center;
  }

  .founder-image {
    border-radius: 40px;
    max-width: calc(100% - 50%);
    margin-left: calc(100% - 75%);
  }
  .founder-text {
    margin-left: 90px;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
}

@media (min-width: 375px) and (max-width: 600px) {
  .founder-text {
    margin-left: 110px !important;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (min-width: 425px) and (max-width: 600px) {
  .founder-text {
    margin-left: 130px !important;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .vision-section {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    box-sizing: border-box;
  }

  .vision-section img {
    max-width: calc(100% - 40%);
    margin: 0 auto;
    margin-left: calc(100% - 85%);
  }

  /* Full-width paragraph */
  .vision-section p {
    font-size: 19.2px;
    margin-left: -1px;
    margin-right: -1px;
    text-align: justify;
    margin-top: 25px;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
    font-weight: 450;
  }
}

@media (max-width: 600px) {
  .content img {
    max-width: calc(100% - 30%);
    width: 100%;
    height: auto;
    margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .section-page p {
    font-size: 19.2px;
    text-align: justify;
    font-weight: 450;
    word-spacing: 1px;
    font-family: "Jost", sans-serif;
  }
}

@media (max-width: 600px) {
  .vision-line {
    width: 100%;
    height: 0.5px;
    margin-left: 2px;
    margin-top: 20px;
    background-color: black;
  }
}
@media (max-width: 600px) {
  .product-line {
    width: 100%;
    margin-bottom: 10px !important;
    margin: 0 auto;
    height: 0.5px;
    background-color: black;
  }
}

@media (max-width: 600px) {
  .section-line {
    background-color: black;
    width: 100%;
    height: 0.5px;
  }
}

@media (max-width: 600px) {
  footer {
    background-color: #111222;
    padding: 10px;
    text-align: center;
  }
  .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  /* Adjust individual social icons for mobile */
  .social-icon {
    /* width: 25px; 
        height: 25px; 
        font-size: 14px;  */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 10px;
    background-color: #555;
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .footer {
    padding: 0px;
  }
  .privacy-us {
    display: flex;
    justify-content: space-around;
    background-color: #111222;
    color: #f2f2f2;
  }

  .privacy-us-text {
    flex: 1;
    margin: 20px;
  }
}

/* content manage system */
#vision-heading,
#vision-text {
  pointer-events: none;
}

@media (min-width: 992px) {
  #vision-heading,
  #vision-text {
    pointer-events: auto;
  }
}

#dynamic-text {
  pointer-events: none;
}

@media (min-width: 992px) {
  #dynamic-text {
    pointer-events: auto;
  }
}

#product,
#product-heading {
  pointer-events: none;
}

@media (min-width: 992px) {
  #product-heading {
    pointer-events: auto;
  }
}

#about,
#about-text {
  pointer-events: none;
}

@media (min-width: 992px) {
  #about,
  #about-text {
    pointer-events: auto;
  }
}

#contact,
#contact-text {
  pointer-events: none;
}

@media (min-width: 992px) {
  #contact,
  #contact-text {
    pointer-events: auto;
  }
}

.new-button {
  float: right;
  margin-top: -330px;
}

#contact-text {
  white-space: pre-line;
}

/* Media Queries for Tablets and Mobile */

@media (max-width: 576px) {
  .privacy-us-text {
    flex: 1 1 48%;
    text-align: center;
  }
  .privacy-us-text p {
    font-size: 12px;
  }
  .privacy-us-text h2 {
    font-weight: 500;
    font-size: 15px;
  }
}

/* end mobile device*/
