/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  /* ===== COLORS ===== */
  /* Basic Colors */
  --primary: #fff;
  --accent: #0098a1;
  --disabled: #d9d9d9;
  --success: #10b981;
  --hover: #52298b;
  --error: red;

  /* Primary Colors */
  --primary-100: #C5DCDE;
  --primary-200: #94CCCF;
  --primary-300: #62BAC0;
  --primary-400: #31AAB1;
  --primary-500: #0098A1;
  --primary-600: #038890;
  --primary-700: #01747A;
  --primary-800: #015f64;
  --primary-900: #003639;

  /* Natural Colors*/
  --natural-0: #fff;
  --natural-200: #ded7d7;
  --natural-300: #c5bebe;
  --natural-400: #ada7a7;
  --natural-500: #948f8f;
  --natural-600: #625f5f;
  --natural-700: #4a4848;
  --natural-800: #313030;
  --natural-900: #191818;
  --natural-1000: #000;

  /* ===== SPACING ===== */
  --spacing-4: 0.25rem;
  --spacing-8: 0.5rem;
  --spacing-16: 1rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-40: 2.5rem;
  --spacing-48: 3rem;
  --spacing-64: 4rem;
  --spacing-72: 4.5rem;
  --spacing-80: 5rem;
  --spacing-96: 6rem;
  --spacing-144: 9rem;

}

body {
  background: var(--natural-0);
  color: var(--natural-700);
  /*line-height: 1.6; */
  overflow-x: hidden;
}

/* ===== CONTAINER QUERIES ===== */
/* Add these container definitions near the top of your CSS */
.container,
.card,
.logo-slider,
.founder,
.grid-four-point,
.testimonial,
.problem-solution,
.limited-offer-inner,
.product,
.query,
.contact-left-inner,
.about,
.certifications,
.visit-us {
  container-type: inline-size;
  container-name: var(--container-name, component);
}

.container {
  width: 90%;
  max-width: 1230px;
  margin: 0 auto;
  padding: clamp(1rem, 3cqi, 2rem) clamp(0.5rem, 2cqi, 1rem);
}

section {
  padding: clamp(1.5rem, 4cqi, 4rem) 0;
}

/*p {
  margin-bottom: 0.5rem;
  color: var(--gray);
}*/

html {
  font-size: 16px;
}

p {
  font-size: 1em;
  padding-bottom: 0.25rem;
  color: var(--natural-700);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  padding-bottom: 0.75rem;
}

/* Update your typography */
h1,
.text-size-h1 {
  font-size: clamp(2.5rem, 5cqi, 3.75rem);
}

h2,
.text-size-h2 {
  font-size: clamp(1.75rem, 4cqi, 2.25rem);
}

h3,
.text-size-h3 {
  font-size: clamp(1.25rem, 3cqi, 1.73rem);
}

h4,
.text-size-h4 {
  font-size: clamp(1.1rem, 2.5cqi, 1.44rem);
}

p {
  font-size: clamp(1rem, 2cqi, 1.1rem);
}

h5,
.text-size-h5 {
  font-size: 1.2rem;
}

.text-caption {
  font-size: 0.83rem;
}

small,
.text-small {
  font-size: 0.69rem;
}

h1>span,
h2>span,
h3>span,
h4>span,
h5>span,
h6>span {
  color: var(--accent);
}

/* Captions */
.caption-large,
.caption-mid,
.caption-small {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.caption-large {
  font-size: 1.25rem;
}

.caption-mid {
  font-size: 1rem;
}

.caption-small {
  font-size: 0.875rem;
}

/* List style */
ul li {
  list-style: none;
  color: var(--natural-0);
  /*padding-bottom: 0.35rem; */
  display: flex;
  gap: 0.25rem;
}

li a span {
  text-decoration: none;
  /* Removes default underline */
  position: relative;
}

li a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 0.15rem;
  background: var(--natural-0);
  transition: width 0.3s ease;
  /* Smooth animation */
  border-radius: 1rem;
}

li a span:hover::after {
  width: 100%;
  /* Expands underline on hover */
}

/* a (links) */
a {
  text-decoration: none;
  color: var(--dark);
}

a span {
  color: var(--dark);
  font-weight: 500;
}

.single-cta>a svg {
  fill: var(--dark);
  stroke: none;
}

/* Input style */
input {
  padding: 0.5rem 0.25rem;
  border: 0.1rem solid var(--primary);
  border-radius: 1.5rem;
}

input:hover {
  box-shadow: lightpink;
}

/* Buttons */
.btn,
.btn-2,
.nav-btn {
  display: inline-flex;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: var(--spacing-4);
  align-items: center;
}

.btn {
  background: var(--primary-500);
  border: none;
  color: var(--natural-0);
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  min-width: 6rem;
}

.btn:hover {
  background: var(--primary-700);
  box-shadow: 1px 1px 3px 0 var(--primary-900);
}

.btn-2 {
  color: var(--primary-500);
  background-color: var(--natural-0);
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  min-width: 6rem;
  height: 3rem;
  border: 2px solid var(--primary-500);
}

.nav-btn {
  color: var(--primary-500);
  background-color: var(--natural-0);
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  min-width: 6rem;
  height: 3rem;
  border: 2px solid var(--primary-500);
}

.btn-2:hover {
  /* drop_shadow */
  box-shadow: 2px 2px 6px 0 var(--primary-500);
}

.cta-set {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Download Modal */
.download {
  position: absolute;
  top: 10%;
  right: 10%;
  flex-direction: column;
  color: var(--natural-0);
  width: fit-content;
  transition: all 0.3s ease;
  list-style: none;
  padding: 1rem 0;
  z-index: 999;
  border-radius: 1rem;
  border: var(--spacing-4, 4px) solid var(--primary-300, #62BAC0);
  background: var(--primary-500);
  box-shadow: 0 4px 4px 0 rgba(0, 54, 57, 0.59);
  gap: 1.5rem;
  padding: var(--spacing-16);
  row-gap: var(--spacing-16);
}

.download-span {
  text-decoration: underline;
  text-underline-offset: 44%;
  /* 8.8px */

}

.download-top {
  gap: 1rem;
}

.download-top ul {
  padding-top: var(--spacing-8);
}

.download-bottom {
  justify-content: flex-end;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.content-center {
  align-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* ===== HERO SLIDER ===== */
.hero {
  padding-block: 6rem;
  background: linear-gradient(rgb(54 75 13 / 45%), rgb(5 70 62 / 40%)), url(assets/img/hero-bg.jpg) no-repeat center center / cover;
  background-position: center;
  background-size: cover;
}

.hero-cta {
  white-space: 20px;
  gap: 1rem;
}

.hero-inner {
  display: flex;
  max-width: 58.25rem;
  padding: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  align-self: stretch;
  border-radius: 1rem;
  border: 4px solid rgba(37, 127, 132, 0.67);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--spacing-48));
}

.hero-inner h1 {
  color: var(--natural-0);
}

.hero-inner span,
.hero-inner p {
  color: var(--natural-0) !important;
}

.hero-left {
  padding-block: 8rem;
}

.hero-card-body-text,
.hero-left span {
  margin-bottom: 6px;
}


.hero-left {
  align-items: center;
}

.hero-right {
  background-image: url(assets/svg/hero-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding: 1rem 0 0 0;
}

.hero-right-inner {
  margin-top: 6rem;
}

.hero-card {
  background-color: #fff;
  border-radius: 1rem;
  max-height: 19.5rem;
}

.hero-card-head {
  margin-top: -2.5rem;
  background-color: #47D7CE;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
}

.hero-card-body {
  display: grid;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  gap: 0.75rem;
}

.hero-card-body-text {
  padding: 0.65rem;
  gap: 0.25rem;
  border-radius: 1.5rem;
  background-color: #f7f8f9;
}

/* ===== LOGO SLIDER SECTION ===== */
.logo-slider {
  padding: var(--spacing-24) 0 !important;
  gap: var(--spacing-48);
  overflow: hidden;
}

.logo-slider img {
  height: var(--spacing-64);
}

.client-logo {
  height: var(--spacing-72);
  width: var(--spacing-144);
  border-radius: var(--spacing-16);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.client-logo:nth-child(1) {
  background-image: url(assets/img/client_logo.png);
}

.client-logo:nth-child(2) {
  background-image: url(assets/img/client2_logo.png);
}

.client-logo:nth-child(3) {
  background-image: url(assets/img/l&t_logo.jpg);
}

.client-logo:nth-child(4) {
  background-image: url(assets/img/abb-logo.png);
}

.logo-slider img:last-child {
  padding-block: var(--spacing-4);
}

/* ===== FOUNDER SECTION ===== */

.founder-left {
  max-width: 31.8125rem;
  /*min-width: 26.5rem;*/
  padding: var(--spacing-16, 1rem) 0 var(--spacing-16, 1rem) var(--spacing-16, 1rem);
  border-radius: var(--spacing-16, 1rem) 0 0 var(--spacing-16, 1rem);
  border-top: var(--spacing-4) solid var(--primary-400, #31AAB1);
  border-left: var(--spacing-4) solid var(--primary-400, #31AAB1);
  border-bottom: var(--spacing-4) solid var(--primary-400, #31AAB1);
}

.founder-left p,
.product-card-right p {
  padding-bottom: var(--spacing-16);
  padding-right: var(--spacing-24);
}

.founder-right {
  height: auto !important;
  background-image: url(assets/img/info_card_image.png);
  border-radius: 0 var(--spacing-16) var(--spacing-16) 0;
}

.founder-right img {
  height: 18.125rem;
  align-self: stretch;
}

/* ===== PRODUCT TABS SECTION ==== */
.product,
.card,
.vision-mission {
  max-width: 60rem;
}

.product h2 {
  text-align: center;
  padding-bottom: var(--spacing-24);
}

.product-top {
  gap: var(--spacing-16);
}

/*Active Product Card border style */
#tab_a {
  border-radius: 0 var(--spacing-16, 1rem) var(--spacing-16, 1rem) var(--spacing-16, 1rem);
}

#tab_d {
  border-radius: var(--spacing-16, 1rem) 0 var(--spacing-16, 1rem) var(--spacing-16, 1rem);
}

.product-tab {
  padding: var(--spacing-8) var(--spacing-16);
  border-radius: var(--spacing-16, 1rem) var(--spacing-16, 1rem) 0 0;
  background: var(--natural-0);
}

.product-tab span {
  color: var(--natural-700);
}

.product-tab.active {
  background: var(--primary-500, #0098A1);
}

.product-tab.active span {
  color: var(--natural-0) !important;
}

.product-tab:hover {
  color: var(--primary-500) !important;
  cursor: pointer;
}

/* Tab Display */
[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: flex;
}

.product-card {
  border-radius: var(--spacing-16, 1rem);
  background: var(--primary-500, #0098A1);
  padding: var(--spacing-8);
  gap: var(--spacing-16);
}

.product-card-left {
  padding: var(--spacing-4);
  height: 18rem;
  border-radius: var(--spacing-16);
}

#tab_a>div:first-child {
  background-image: url(assets/img/product.png);
}

#tab_b>div:first-child {
  background-image: url(assets/img/CT-PT-Metering-Sets.jpg);
}

#tab_c>div:first-child {
  background-image: url(assets/img/simotics-gp.jpg);
}

#tab_d>div:first-child {
  background-image: url(assets/img/lt\ panel\ photo.avif);
}

.product-card-left img {
  border-radius: var(--spacing-16);
  max-width: 22rem;
}

.product-card-right,
.product-card-right p {
  color: var(--natural-0) !important;
}

.product-mob {
  display: none;
}

/* ===== SERVICE SECTION ===== */
.service {
  background: var(--light);
  border-radius: 1.5rem;
}

.service-top,
.testimonials-top {
  justify-content: space-between;
  padding: 0 1rem 0rem 1rem !important;
}

.service-grid {
  justify-content: center;
  padding: var(--spacing-16, 1rem);
  gap: 2rem;
  align-self: stretch;
  border-radius: var(--spacing-16, 1rem);
}

.services-cards {
  gap: 2.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

.service-card {
  border-radius: 1rem;
  border: var(--spacing-4, 4px) solid var(--primary-400, #31AAB1);
  background: var(--natural-0, #FFF);
  box-shadow: 0 4px 4px 0 rgba(0, 152, 161, 0.40);
  width: 33.33%;
  height: auto;
}

.service-card span {
  color: var(--primary-500);
  font-weight: bold;
}

.service-card-img {
  border-radius: 0.8rem 0.8rem 0 0;
}

.service-card-img,
.product-card-left,
.founder-right {
  height: 18rem;
  width: 100%;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(70%);
  /*filter: saturate(180%);*/
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43, .41, .22, .91);
  ;

}

.service-card-img-oil-filteration {
  background-image: url(assets/img/hero-bg.jpg);
}

.service-card-img-earth-pit {
  background-image: url(assets/img/cable\ trey\ photo.webp);
}

.service-card-img-power-cable {
  background-image: url(assets/img/electric-power-cable-laying-work-500x500.webp);
}

.service-card-content {
  padding: 1rem;
  height: 54%;
}

.service-card-content h5 {
  padding-bottom: 1.5rem;
}


.service-card-content p,
.cta p {
  padding-block: var(--spacing-8);
}

/* Slider container styles */
.slider-container {
  position: relative;
  /* Needed for absolute positioning of children */
  width: 100%;
  /* Ensure full width */
}

/* Navigation buttons - absolute positioning */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 1.9s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
  /* Prevents clicks when disabled */
  display: none;
}

.left-btn {
  left: 0.5rem;
  /* Half outside container */
}

.right-btn {
  right: 0.5rem;
  /* Half outside container */
}

.slider-btn:hover {
  background: var(--hover);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Card container styles */
.services-cards {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
}

.services-cards::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Card styles */
/*.service-card {
  /*user-select: none;
  scroll-snap-align: start;
  flex: 0 0 auto;*/
/*}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-left h5 {
  padding-bottom: 2rem;
}

.why-choose-us-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-choose-us-point {
  gap: 0.75rem;
  border: var(--primary) 0.18rem solid;
  border-radius: 1.25rem;
  padding: 0.5rem 0.5rem 0 0.5rem;
}



.why-choose-us-right,
.local-heading-right {
  padding-left: 3.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 0 2.5rem 0 2.5rem;
}

.testimonials-cards {
  gap: 2.5rem;
}

.testimonials-cards>div:nth-child(even) {
  margin-top: 5rem;
  /* Adjust padding as needed */
}

.testimonial-card {
  background-image: url(assets/img/local-seo.webp);
  background-size: calc(20.25rem);
  padding: 4rem 0 0 0;
}

/* ===== FLIP CARD ===== */
.flip-card {
  perspective: 1000px;
  width: 20.25rem;
  height: 20.25rem;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Shared Card Face Styles */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Front Side - Image with Cover Fit */
.flip-card-front {
  background: #fff;
}

.card-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers container */
  object-position: center;
  /* Focus on image center */
  display: block;
  filter: grayscale(1);
}

.image-overlay {
  color: #fff !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 70%,
      transparent 100%);
}


/* Back Side Content */
.flip-card-back {
  background: #fff;
  transform: rotateY(180deg);
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.flip-card-back .content {
  color: #333;
  line-height: 1.6;
}

/* ===== LOCAL HEADING ===== */
.local-heading-right {
  align-content: center;
}

.local-heading-left img {
  width: 94%;
  border-radius: 1.25rem;
  filter: grayscale(1);
  transition-duration: 1s;
}

.local-heading-left img:hover {
  filter: grayscale(0);
}

.local-heading-right h4,
.contact-left h4 {
  color: var(--primary);
  padding-bottom: 1rem;
}

.local-heading-right ul,
.contact-left ul {
  padding-bottom: 1rem;
}

.local-heading-right ul li {
  font-size: 1.25rem;
}

/* ===== CALL CTA ===== */
.call-cta-outer {
  padding: 2rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(5.25rem);
}

.call-cta-inner {
  text-align: center;
  padding: 2rem;
  border: var(--primary) 0.12rem solid;
  position: relative;
}

.call-cta-inner h4 {
  color: var(--primary);
  padding-bottom: 1rem;
}

.call-cta-inner p {
  padding-bottom: 0.25rem;
}

.call-ctas {
  gap: 1rem;
  justify-content: center
}

.call-cta-shapes {
  gap: 48rem;
}

.call-cta-shapes img {
  z-index: -1;
  position: absolute;
  top: 172.9rem;
}

.call-cta-shapes>img:nth-child(2) {
  right: 13rem;
}

/* ===== FAQ SECTION ===== */
.ul-faq li {
  color: var(--natural-700);
  align-items: start;
  padding-block: var(--spacing-4);
  text-align: left;
}

.faq h2 {
  padding-bottom: 1.5rem;
  text-align: center;
}

/* Accordion container */
.accordion {
  max-width: 90%;
  margin: 0 auto;
}

/* Accordion item */
.accordion-item {
  border: 0.1rem solid var(--primary-500);
  background: transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Accordion header (button) */
.accordion-header {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-500);
  backdrop-filter: blur(1rem);
}

.accordion-header:hover {
  background: var(--primary-100);
}

/* Chevron icon */
.accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  background: #ffffff;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  /* Adjust based on content */
  padding: 0 1.5rem 1.5rem;
}

/* Content styling */
.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ===== CONTACT FORM SECTION ===== */
.contact {
  width: 70%;
  gap: 2rem;
}

.contact-container {
  width: 50%;
  display: flex;
  background: var(--natural-0);
  border-radius: var(--spacing-16);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.form-container {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin: var(--spacing-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.form-group label {
  font-weight: 500;
  color: var(--natural-700);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: #777;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 0.1rem solid var(--primary-500);
  border-radius: 1.5rem;
  font-size: 1rem;
  transition: var(--transition);
}

.input-wrapper textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 15px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 var(--spacing-4) rgba(36, 240, 243, 0.316);
}

.error-message {
  color: var(--error);
  font-size: 0.85rem;
  height: 1rem;
}

.info-container {
  flex: 0 0 350px;
  background-color: var(--primary-color);
  color: white;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.info-container h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.2rem;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* QR Coode */
.location-left {
  position: relative;
}

.location-qr-jaipur,
.location-qr-neemrana {
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding: 4rem;
  backdrop-filter: blur(var(--spacing-16));
  margin: 1rem;
}

.location-qr-jaipur {
  background-image: url(assets/svg/location-qr-Jaipur.svg);
}

.location-qr-neemrana {
  background-image: url(assets/svg/location-qr-neemrana.svg);
}

/* Modal */
.modal {
  backdrop-filter: blur(0.1rem);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--primary-300);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  color: var(--primary);
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
}

.modal-btn {
  background-color: var(--primary-color);
  color: navy;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn:hover {
  background-color: var(--secondary-color);
}

/* ===== CTA SECTION ===== */
.cta {
  color: white;
  max-width: 60%;
  text-align: center;
  border-radius: var(--spacing-16, 1rem);
  border: var(--spacing-4, 4px) solid;
  background: linear-gradient(90deg, #257F84 0%, #191C73 100%), #FFF;
  margin-block: var(--spacing-32);
}

.cta p {
  color: var(--natural-0) !important;
}

.cta .btn {
  background: white;
  color: var(--primary);
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer-top {
  padding: 2rem 0;
  gap: 2.5rem;
  color: var(--primary-500);
}

footer ul {
  padding-top: 1rem;
}

footer li {
  color: var(--primary-500) !important;
  padding-bottom: 0.75rem;
}

footer a {
  color: var(--primary-500);
  text-decoration: none;
  font-weight: 500;
  transition: 0.1s ease-in-out;
}

footer a:hover {
  font-size: 600;
}

.footer-about,
.footer-menu,
.footer-links,
.footer-social {
  width: 25%;
}

.footer-about img {
  height: 2.25rem;
}

.footer-about p {
  padding-right: 1rem;
  text-align: justify;
}

.footer-bottom {
  background-color: var(--primary-500);
  padding-block: var(--spacing-8);
}

.footer-bottom>div {
  padding: 0.5rem 0 !important;
  justify-content: space-between;
  color: var(--natural-0);

}

.credit {
  margin-right: var(--spacing-64);
}

.credit a {
  color: var(--primary) !important;
}

/* ===== NAVIGATION MENU ===== */
.header {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(1.25rem) saturate(160%) contrast(110%);
  -webkit-backdrop-filter: blur(1.25rem) saturate(160%) contrast(110%);
  position: sticky;
  top: 0;
  z-index: 1000;
  /*padding: 1rem 9rem;*/
  padding: clamp(0.5rem, 2cqi, 1rem) clamp(0.25rem, 3cqi, 9rem);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background-color: var(--primary-500);
  /*border-radius: var(--spacing-24);*/
  border-radius: clamp(0.5rem, 2cqi, 1.5rem);
}

.logo {
  padding-left: 1rem;
}

.logo img {
  width: 7.25rem;
  height: 2.625rem;
  aspect-ratio: 58/21;
  margin: auto;
}


/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--natural-0);
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link span::after {
  background: var(--primary-500);
}


/*.nav-link:hover,
.dropdown-link:hover {
  background: linear-gradient(135deg, #512DA8 0%, #653BA2 50%, #7B1FA2 100%);
  color: var(--light);
}*/

/* Dropdown Menu (Optional) */
.dropdown-menu,
.mega-dropdown {
  position: absolute;
  top: 150%;
  left: -4rem;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  padding: 1rem 0;
  z-index: 999;
  border-radius: 1rem;
  border: var(--spacing-4, 4px) solid var(--primary-300, #62BAC0);
  background: var(--primary-500);
  box-shadow: 0 4px 4px 0 rgba(0, 54, 57, 0.59);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
}

.dropdown-link {
  color: var(--natural-0);
  text-decoration: none;
  transition: color 0.3s ease;
  width: max-content;
}

/* Mega Dropdown */
.mega-dropdown {
  display: flex;
}

.mega-dropdown-item {
  padding: 0.25rem;
}

.row {
  max-width: 14rem;
}

/* Mobile Menu (Hamburger) */
.hamburger {
  display: none;
  cursor: pointer;
  padding-right: 1rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: var(--natural-0);
  transition: all 0.3s ease;
}

/* Mobile btn */
.nav-btn-mob {
  display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }

  .nav-btn-mob {
    display: flex;
  }

  .navbar {
    width: 100% !important;
  }

  .dropdown-menu {
    display: none;
  }

  .nav-item a {
    gap: 2rem;
  }

  .accordion-icon {
    padding: 0 var(--spacing-8);
    width: auto;
    color: var(--primary-500);
    background-color: var(--natural-0);
    border-radius: var(--spacing-4);
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--primary-500);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
    text-align: center;
  }

  /* Dropdown for Mobile */
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item:hover .dropdown-menu {
    max-height: 200px;
  }

  .dropdown-item {
    padding: 0.5rem 0;
  }

  /* Dropdown Sub Menu */
  .accordion-icon.active {
    rotate: 180deg;
  }

  /* Common */
  .cta-set,
  .logo-slider,
  .founder,
  .product-card,
  .vision-mission>div,
  .counter,
  .download-top,
  .service-hero,
  .service-grid {
    flex-direction: column;
  }

  .grid-four {
    grid-template-columns: none !important;
  }

  .service-card {
    width: 100%;
  }

  .download {
    width: 80%;
  }

  img {
    width: fit-content;
    align-self: center;
  }

  .div-img,
  iframe {
    width: 100% !important;
  }

  /* Founder Card */
  .founder-left {
    padding: var(--spacing-16, 1rem) 0 var(--spacing-16, 1rem) var(--spacing-16, 1rem);
    border: none;
  }

  .founder-right {
    border-radius: var(--spacing-16);
    width: auto;
    height: 18rem !important;
  }

  /* Product Tab */
  .product {
    display: none;
  }

  .product-mob {
    display: block;
  }

  .product-cards {
    display: grid;
    gap: var(--spacing-32);
  }

  .product-card {
    border-radius: var(--spacing-16);
  }

  /* Service Grid */
  .service-grid,
  .counter {
    flex-wrap: wrap !important;
  }

  /* == About Us Page == */
  .counter {
    align-content: center;
    gap: var(--spacing-16);
  }
}

/* ==== ABOUT US PAGE STYLE ===== */
.about-hero {
  width: 55%;
  gap: var(--spacing-16);
}

.counter {
  justify-content: space-between;
}

.count {
  text-align: center;
  background-color: var(--primary-400);
  color: var(--natural-0);
  padding: var(--spacing-24) var(--spacing-80);
  border-radius: var(--spacing-16);
}

/* Card Style */
.card {
  border-radius: var(--spacing-16, 1rem);
  padding: var(--spacing-8);
  gap: var(--spacing-16);
}

.card-left {
  padding: var(--spacing-4);
}

.card-left img {
  border-radius: var(--spacing-16);
  max-width: 26rem;
}

.card-right h3 {
  color: var(--primary-500);
}

.card-right p {
  color: var(--natural-700) !important;
}

.mission {
  flex-direction: row-reverse;
}


/* ===== Products & Services Pages Styling ===== */
.page-hero {
  color: var(--natural-0);
  background: linear-gradient(90deg, #257F84 0%, #191C73 100%), #FFF;
}

.second-heading {
  color: var(--natural-0) !important;
}

/* ===== CONTACT US PAGE STYLE ===== */
.contact-hero {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%), url(assets/img/contact-bg.png) lightgray 50% / cover no-repeat;
  padding: var(--spacing-64) 0 var(--spacing-144) 0;
  color: var(--natural-0);
}

.contact-hero-inner p {
  color: var(--natural-0) !important;
}

.contact {
  margin-top: -9rem;
  border-radius: var(--spacing-16, 1rem);
  border: 4px solid var(--primary-400, #31AAB1);
  background: var(--natural-0, #FFF);
  padding: var(--spacing-24);
  /* drop_shadow */
  box-shadow: 2px 2px 6px 0 #0098A1;
}

.contact-right {
  gap: var(--spacing-24);
}

.contact-right>div h4 {
  text-decoration: underline var(--primary-500);
  text-underline-offset: 54%;
}

.company-contact,
.company-address {
  display: flex;
  max-width: 26rem;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: var(--spacing-16, 1rem);
  border: 2px solid var(--primary-400, #31AAB1);
}

.hours span {
  color: var(--primary-500);
  font-weight: 500;
}

.site-contact {
  padding-bottom: var(--spacing-8);
  color: var(--natural-700);
  gap: var(--spacing-4);
}

iframe,
.about-hero img {
  border-radius: var(--spacing-16);
}

/* Form Loader */
/* Form Loader Styles */
.form-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Error message styling */
.error-message {
  color: #ff3860;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* ===== FOUNDER PAGE STYLE ===== */
/* Bento Grid */

@media (min-width:576px) {
  .container {
    max-width: 540px;
  }

  .grid-main {
    grid-template-areas:
      "one"
      "two"
      "three"
      "four"
      "five";
  }
}

@media (min-width:768px) {
  .container {
    max-width: 720px;
  }

  .grid-main {
    grid-template-areas:
      "one one"
      "two five"
      "three five"
      "four four";
  }
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }

  .grid-main {
    grid-template-areas:
      "one one"
      "two five"
      "three five"
      "four four";
  }
}

@media (min-width:1200px) {

  /* .grid-col-span-2 {
        grid-column: span 2;
    }

    .grid-main {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid:last-child {
        grid-column-start: 4;
        grid-row: 1/3;
    } */

  .grid-main {
    grid-template-areas:
      "one one two five"
      "three four four five";
  }
}

.grid-main h1 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.grid-main p {
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

/* grid */
.grid-main {
  padding-block: 100px;
  display: grid;
  grid-auto-columns: 1fr;
  gap: 1rem;
}

.grid-main img {
  width: 100%;
}

.grid:nth-child(1) {
  grid-area: one;
}

.grid:nth-child(2) {
  grid-area: two;
}

.grid:nth-child(3) {
  grid-area: three;
}

.grid:nth-child(4) {
  grid-area: four;
}

.grid:nth-child(5) {
  grid-area: five;
}

.a,
.b,
.c,
.d,
.e {
  padding: var(--spacing-144);
  border-radius: var(--spacing-16);
}

.a {
  background: url(assets/img/hero-bg.jpg) no-repeat center center / cover;
}

.b {
  background: url(assets/img/owner.jpg) no-repeat center center / cover;
}

.c {
  background: url(assets/img/team.png) no-repeat center center / cover;
}

.d {
  background: url(assets/img/hero-bg.jpg) no-repeat center center / cover;
}

.e {
  background: url(assets/img/team.png) no-repeat center center / cover;
}

/* ===== SERVICE PAGE STYLE ===== */
.service-hero {
  gap: var(--spacing-16);
  max-width: 72rem !important;
}

.service-hero-left>div {
  padding-top: var(--spacing-16) !important;
}

.service-hero-left h1 {
  font-size: clamp(2rem, 4cqi, 2.25rem);
}

.service-hero-left p {
  width: 85%;
}

.service-hero-right img:first-child {
  width: 100%;
  border-radius: var(--spacing-16);
}

/* Video CSS */
.video-container {
  position: relative;
  width: 500px;
  height: 300px;
  /* Set a default width */
  max-width: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--spacing-16);
}

/* Style for the thumbnail image */
.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

/* Style and position the custom play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s;
  z-index: 10;
  background-color: transparent;
  width: var(--spacing-72);
}

.play-button:hover {
  opacity: 1;
}

/* Hide the actual video element initially */
#videoElement {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ===== BENEFITS ===== */
.benefits, .service {
  margin: auto;
  max-width: 70vw;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.grid-four-point {
  padding: var(--spacing-16) var(--spacing-8);
  background-color: aliceblue;
  border-radius: 0.75rem;
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

/* ===== PRODUCT PAGE STYLE ===== */
.product-hero {
  gap: 1rem;
}

.product-overview>* {
  padding-bottom: var(--spacing-16);
}

table {
  width: 100%;
  border-collapse: collapse;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  background: linear-gradient(to bottom, rgba(0, 230, 220, .1215686275) 0, rgba(0, 230, 220, .1215686275) var(--table-first-row-height), rgba(0, 230, 220, 0) 0) no-repeat;
  background-size: 0;
  animation-duration: 1s;
}

th,
td {
  padding: var(--spacing-24);
}

thead {
  background-color: var(--primary-500);
  color: var(--natural-0);
}

tr {
  border-radius: 1rem;
}

tr:nth-child(even) {
  clip-path: polygon(0px 0px, 100% 0px, 100% 1px, 100% 1px, 100% 100%, 0px 100%);
  border-block: 0.1rem solid var(--primary-500);
  background: aliceblue;
}

/* ===== PROJECT PAGE STYLE ===== */
.outcome {
  padding: var(--spacing-16) var(--spacing-40) !important;
}

.project-timeline {
  gap: var(--spacing-32);
}

.project-timeline ul li {
  color: var(--natural-700);
  list-style-type: circle;
  align-items: center;
  padding-block: var(--spacing-4);
}

.project-timeline ul li img {
  width: var(--spacing-24);
  height: var(--spacing-24);
  margin-right: var(--spacing-4);
}

.project-timeline-left {
  width: 45%;
}

.project-timeline-left img {
  width: 100%;
  border-radius: var(--spacing-16);
}

.solution-steps {
  gap: var(--spacing-40);
}

.solution-steps>div:nth-child(odd) {
  flex-direction: row-reverse;
}

.custom-card {
  background: #eee;

  & .card-title {
    color: blue;
  }
}