/* author: https://codepen.io/jalinb/pen/ExOgOBZ
Jalin Burton */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap");
* {
  box-sizing: border-box;
  cursor: none;
}

html,
body {
  background: #efefef;
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  height: 100%;
}

::selection {
  background: #efefef;
  color: #212121;
  mix-blend-mode: difference;
}

::-moz-selection {
  background: #efefef;
  color: #212121;
}

h1, h2, h3, h4, h5 {
  font-weight: 900;
}

h1 {
  font-size: 3em;
}

.hero-title {
  font-size: 8vw;
  line-height: 1em;
  font-weight: 900;
}

.nav-title {
  font-size: 4em;
}

a {
  transition: all 0.25s ease-in-out;
}

.white, a.white {
  color: #efefef;
}

.black {
  color: #212121;
}

.pearl, a.pearl {
  color: #fff;
}

.green, a.green {
  color: #00BCD4;
}

.pink {
  color: #b73b3b;
}

.blend {
  mix-blend-mode: difference !important;
  color: #efefef;
  position: relative;
  z-index: 2;
}

.bg-black {
  background-color: #212121;
}

.bg-green {
  background-color: #00BCD4;
}

.bg-topographic {
  background-image: url(https://assets.codepen.io/319606/bg-topographic.svg);
  background-size: 5000px;
  opacity: 0.1;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #00BCD4;
  transition: transform 350ms ease;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 1000;
}

.custom-cursor--link {
  transform: translate(-50%, -50%) scale(1.25);
}

.swoosh {
  background-image: url("../assets/img/prithviroots-swoosh.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  top: 20px;
  left: 18px;
  width: 230px;
  height: 45px;
  z-index: 1000;
  background-position: left;
  display: none !important;
}

.sticky-nav {
  top: 20px;
  left: 20px;
  position: fixed;
  width: calc(100% - 40px);
  z-index: 999;
}
.sticky-nav.difference {
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: difference;
}
.sticky-nav.difference #nav-btn {
  filter: invert(0);
}
.sticky-nav .logo {
  width: 220px;
  height: 45px;
  background-image: url("../assets/img/prithviroots-white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 998;
}
.sticky-nav #nav-btn {
  width: 60px;
  z-index: 999;
  filter: invert(1);
}
.sticky-nav #nav-btn .icon {
  position: relative;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
}

#takeover-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  left: 0;
  top: -200%;
  transition: all 0.5s ease-in-out;
  z-index: 996;
}
#takeover-nav.shown {
  top: 0;
}
#takeover-nav .nav-col {
  min-height: 100vh;
}
#takeover-nav .nav-col a {
  color: #efefef;
}
#takeover-nav .nav-col a:hover {
  color: #212121;
}
#takeover-nav .nav-contact .content {
  max-width: 700px;
}
#takeover-nav .nav-items {
  font-size: 2.5em;
  font-weight: 700;
}
#takeover-nav .contact-items {
  font-size: 1.25em;
  font-weight: 700;
}
#takeover-nav .contact-items a:hover {
  color: #00BCD4;
}
#takeover-nav .social {
  font-size: 0.75em;
}
#takeover-nav .social a {
  color: #00BCD4;
}
#takeover-nav .social a:hover {
  color: #efefef;
}

.gradient-overlay {
  bottom: 0;
  height: 50%;
  background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, #212121 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00212121", endColorstr="#212121",GradientType=0 );
  z-index: 1;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

.video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

#video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  background-position: center center;
  background-size: cover;
  object-fit: cover;
  transform: rotate(180deg);
}

section {
  min-height: 800px;
  width: 100%;
}
section.hero {
  background-color: #212121;
  border-bottom-right-radius: 15vw;
  position: relative;
}
section.hero:before {
  content: "";
  background-color: #212121;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
}
section.hero:after {
  content: "";
  background-color: #efefef;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
  border-top-left-radius: 15vw;
}
section.two {
  background-color: #efefef;
}
section.three {
  background-color: #e8d1f6;
}
section.four {
  background-color: #00BCD4;
}
section.five {
  background-color: #29639c;
}

/* About Section 3D Styles */
.about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #00BCD4 0%, #29639c 100%);
}

.about-3d-container {
  perspective: 1000px;
  height: 100vh;
  position: relative;
}

.about-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  filter: blur(10px);
}

.bg-layer-1 {
  z-index: 1;
  transform: translateZ(0) scale(1.1);
}

.bg-layer-2 {
  z-index: 2;
  transform: translateZ(50px) scale(1.05);
  opacity: 0.8;
}

.about-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.about-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.about-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  transform: translateY(50px) rotateX(20deg);
  opacity: 0;
  transition: all 0.8s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

.animate-on-scroll {
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

/* 3D Parallax Animation */
@keyframes parallax-move {
  0% { transform: translateZ(0) scale(1.1); }
  50% { transform: translateZ(-20px) scale(1.05); }
  100% { transform: translateZ(0) scale(1.1); }
}

.bg-layer-1 {
  animation: parallax-move 20s ease-in-out infinite;
}

.bg-layer-2 {
  animation: parallax-move 15s ease-in-out infinite reverse;
}

/* Farming Tech Section Styles */
.farming-tech-section {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.farming-tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(0, 150, 136, 0.05) 100%);
  pointer-events: none;
}

.section-heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #00BFFF, #FF1493, #9370DB);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: horizontal-shimmer 3s ease-in-out infinite;
}

@keyframes horizontal-shimmer {
  0% {
    background-position: -100% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}

.section-subheading {
  font-size: 1.25rem;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #424242;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(10px);
  color: #00BCD4;
}

.feature-list li i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #4CAF50;
}

.tech-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 188, 212, 0.1);
  padding: 2rem;
  transition: all 0.4s ease;
  transform: perspective(1000px) rotateY(0deg);
}

.tech-card:hover {
  transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 188, 212, 0.2), 0 0 20px rgba(0, 188, 212, 0.1);
}

.tech-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tech-card:hover img {
  transform: scale(1.02);
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3), 0 0 0 1px rgba(0, 188, 212, 0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.floating-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-1 {
  top: -25px;
  left: -25px;
  animation-delay: 0s;
}

.icon-2 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.icon-3 {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Innovation Section Styles */
.innovation-section {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(0, 150, 136, 0.05) 100%);
  pointer-events: none;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 188, 212, 0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.02) 0%, rgba(0, 150, 136, 0.02) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 188, 212, 0.2), 0 0 20px rgba(0, 188, 212, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3), 0 0 0 1px rgba(0, 188, 212, 0.1);
}

.card-icon i {
  font-size: 2rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.card-description {
  font-size: 1rem;
  color: #757575;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Product Showcase Section Styles */
.product-showcase-section {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 188, 212, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 188, 212, 0.2), 0 0 20px rgba(0, 188, 212, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.card-icon-top {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.75rem;
}

.card-description {
  font-size: 1rem;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  background-color: #f5f5f5;
  color: #00BCD4;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 188, 212, 0.2);
}

.btn-cta {
  width: 100%;
  background: linear-gradient(135deg, #E0F7FA, #B2EBF2);
  color: #00BCD4;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #B2EBF2, #80DEEA);
  color: #0097A7;
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3), 0 0 20px rgba(0, 188, 212, 0.2);
  transform: translateY(-2px);
}

/* Why Exporters Choose Us Section Styles */
.why-exporters-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.why-exporters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F7F9FA;
  pointer-events: none;
  z-index: -1;
}

.why-exporters-heading {
  font-size: 3rem;
  font-weight: 900;
  color: #001F3F;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-exporters-subtitle {
  font-size: 1.25rem;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.why-exporters-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  padding-top: 80px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-exporters-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-exporters-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.why-exporters-icon i {
  font-size: 1.5rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-exporters-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-exporters-description {
  font-size: 1rem;
  color: #9E9E9E;
  line-height: 1.6;
  margin: 0;
}

/* Export Enquiry Section Styles */
.export-enquiry {
  background-color: #F4F7F8;
  padding: 100px 0;
  position: relative;
}

.export-heading {
  font-size: 3rem;
  font-weight: 900;
  color: #001F3F;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.export-subtitle {
  font-size: 1.25rem;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.enquiry-form-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 188, 212, 0.1);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.enquiry-form .input-group-text {
  background: linear-gradient(135deg, #00BCD4, #009688);
  color: #ffffff;
  border: none;
  border-radius: 12px 0 0 12px;
  width: 50px;
  justify-content: center;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  background-color: #F7F9FA;
  border: 1px solid #E0E0E0;
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #424242;
  transition: all 0.3s ease;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  background-color: #F7F9FA;
  border-color: #00BCD4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
  outline: none;
}

.enquiry-form .form-control::placeholder {
  color: #9E9E9E;
  font-style: italic;
}

.enquiry-form .form-control {
  border-radius: 0 12px 12px 0;
}

.enquiry-form .form-select {
  border-radius: 0 12px 12px 0;
}

.enquiry-form textarea.form-control {
  border-radius: 12px;
  border-left: 1px solid #E0E0E0;
  resize: vertical;
}

.btn-enquiry-submit {
  background: linear-gradient(135deg, #00BCD4, #009688);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.btn-enquiry-submit:hover {
  background: linear-gradient(135deg, #0097A7, #00796B);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px);
}

.illustration-container {
  margin-bottom: 2rem;
}

.trust-points {
  text-align: left;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.trust-icon i {
  font-size: 1.2rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.trust-description {
  font-size: 0.95rem;
  color: #757575;
  line-height: 1.5;
  margin: 0;
}

/* Illustration Animations */
@keyframes pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.floating {
  animation: floating 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { opacity: 0.08; }
  50% { opacity: 0.12; }
  100% { opacity: 0.08; }
}

.shimmer {
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 0.06; }
}

.fade-in {
  animation: fade-in 5s ease-in-out infinite alternate;
}

/* Footer Section Styles */
.footer-section {
  background-color: #FFFFFF;
  padding: 80px 0 40px;
  border-top: 1px solid #E5E7EB;
  font-family: "Montserrat", sans-serif;
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #001F3F;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00BCD4, #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #0097A7, #00796B);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001F3F;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6B7280;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00BCD4;
  transform: translateX(5px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
}

.contact-list i {
  margin-right: 0.75rem;
  color: #00BCD4;
  font-size: 1.1rem;
}

.btn-footer-cta {
  background: linear-gradient(135deg, #00BCD4, #009688);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-footer-cta:hover {
  background: linear-gradient(135deg, #0097A7, #00796B);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cert-badge {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.cert-badge:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #E5E7EB;
  margin-bottom: 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 400;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .feature {
    flex: 1 1 100%;
  }

  .about-features {
    gap: 1rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .tech-card {
    padding: 1rem;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .product-card {
    margin-bottom: 2rem;
  }

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }

  .btn-cta {
    font-size: 0.9rem;
    padding: 0.625rem 0.875rem;
  }

  .why-exporters-heading {
    font-size: 2rem;
  }

  .why-exporters-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .why-exporters-card {
    padding: 1.5rem;
  }

  .why-exporters-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .why-exporters-icon i {
    font-size: 1.2rem;
  }

  .why-exporters-title {
    font-size: 1.1rem;
  }

  .why-exporters-description {
    font-size: 0.9rem;
  }

  .export-heading {
    font-size: 2rem;
  }

  .export-subtitle {
    font-size: 1rem;
  }

  .enquiry-form-card {
    padding: 1.5rem;
  }

  .trust-point {
    margin-bottom: 1rem;
  }

  .trust-icon {
    width: 35px;
    height: 35px;
    margin-right: 0.75rem;
  }

  .trust-icon i {
    font-size: 1rem;
  }

  .trust-title {
    font-size: 1rem;
  }

  .trust-description {
    font-size: 0.9rem;
  }

  /* Footer Responsive */
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-brand .footer-logo {
    font-size: 1.25rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .contact-list li {
    font-size: 0.9rem;
  }

  .btn-footer-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .cert-badge {
    width: 50px;
    height: 50px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* APPEND TO styles.css */
.contact-hero {
  --contact-hero-accent: #22d3ee;
  --contact-hero-accent-2: #0ea5a4;
  --contact-hero-text: #1f2937;
  --contact-hero-muted: #6b7280;
  --contact-hero-border: #e5e7eb;
  --contact-hero-shadow: rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 1rem;
}

.contact-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--contact-hero-text);
  margin: 0;
  line-height: 1.1;
}

.contact-hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: var(--contact-hero-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-hero__quick-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--contact-hero-text);
}

.contact-hero__quick-item i {
  color: var(--contact-hero-accent);
  font-size: 1rem;
}

.contact-hero__quick-label {
  font-weight: 600;
}

.contact-hero__quick-value {
  color: var(--contact-hero-muted);
}

.contact-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-hero__cta {
  background: linear-gradient(135deg, var(--contact-hero-accent), var(--contact-hero-accent-2));
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px var(--contact-hero-shadow);
}

.contact-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-hero__cta:focus {
  outline: 2px solid var(--contact-hero-accent);
  outline-offset: 2px;
}

.contact-hero__cta--ghost {
  color: var(--contact-hero-accent);
  background: transparent;
  border: 2px solid var(--contact-hero-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-hero__cta--ghost:hover {
  background-color: var(--contact-hero-accent);
  color: #ffffff;
}

.contact-hero__cta--ghost:focus {
  outline: 2px solid var(--contact-hero-accent);
  outline-offset: 2px;
}

.contact-hero__visual {
  display: flex;
  justify-content: center;
}

.contact-hero__visual-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px var(--contact-hero-shadow);
  padding: 1rem;
  transition: all 0.3s ease;
  max-width: 300px;
}

.contact-hero__visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-hero__visual-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-hero__globe {
  width: 100%;
  height: auto;
  animation: rotate-globe 20s linear infinite;
}

@keyframes rotate-globe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero__quick {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-hero__ctas {
    flex-direction: column;
  }

  .contact-hero__cta,
  .contact-hero__cta--ghost {
    width: 100%;
    text-align: center;
  }
}



@media screen and (min-width: 1200px) {
  .hero {
    height: 75vh;
  }
  .hero #video-bg {
    object-position: 0 5vw;
  }
}
@media screen and (max-width: 1199px) {
  .hero #video-bg {
    object-position: 0 15vw;
  }
}
@media screen and (max-width: 767px) {
  #takeover-nav .nav-menu {
    min-height: 500px;
  }
  #takeover-nav .nav-menu a {
    color: #212121;
  }
  #takeover-nav .nav-menu a:hover {
    color: #efefef;
  }
  #takeover-nav .nav-contact {
    min-height: 600px;
  }
  #takeover-nav .nav-contact .nav-title {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 575px) {
  header .swoosh {
    width: 165px;
    height: 35px;
    top: 10px;
  }
  header .sticky-nav {
    top: 10px;
  }
  header .sticky-nav .logo {
    width: 150px;
    height: 35px;
  }
  header .sticky-nav #nav-btn {
    width: 40px;
  }
  header #takeover-nav .contact-items {
    font-size: 1em;
  }

  .hero {
    min-height: 600px;
    height: 600px;
  }
  .hero .hero-title {
    font-size: 12vw;
  }
  .hero #video-bg {
    object-position: 0 30vw;
  }
}

/* APPEND TO styles.css */
:root {
  --about-hero-accent: #00BCD4;
  --about-hero-bg: #ffffff;
}

.about-hero {
  background-color: var(--about-hero-bg);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.about-hero__card {
  background-color: var(--about-hero-bg);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  position: relative;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.about-hero__decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.about-hero__decoration--top-left {
  top: -30px;
  left: -30px;
}

.about-hero__decoration--bottom-right {
  bottom: -30px;
  right: -30px;
}

.about-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #212121;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #757575;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__cta {
  display: inline-block;
  background-color: transparent;
  color: var(--about-hero-accent);
  border: 2px solid var(--about-hero-accent);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.about-hero__cta:hover,
.about-hero__cta:focus {
  background-color: var(--about-hero-accent);
  color: var(--about-hero-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.about-hero__cta:focus {
  outline: 2px solid var(--about-hero-accent);
  outline-offset: 2px;
}

/* Tablet */
@media (max-width: 992px) {
  .about-hero__card {
    max-width: 66.67%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero__card {
    max-width: 100%;
    padding: 40px 20px;
  }

  .about-hero__title {
    margin-bottom: 1rem;
  }

  .about-hero__subtitle {
    margin-bottom: 1.5rem;
  }

  .about-hero__decoration {
    width: 80px;
    height: 80px;
  }

  .about-hero__decoration--top-left {
    top: -20px;
    left: -20px;
  }

  .about-hero__decoration--bottom-right {
    bottom: -20px;
    right: -20px;
  }
}

/* APPEND TO styles.css */
.about-who {
  --about-who-accent: #00bcd4;
  --about-who-bg: #ffffff;
  --about-who-card: #f0f4f5;
  background-color: var(--about-who-bg);
  padding: 4rem 2rem;
}

.about-who__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 40%;
  gap: 4rem;
  align-items: center;
}

.about-who__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-who__text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.about-who__image-wrap {
  background-color: var(--about-who-card);
  border: 1px solid var(--about-who-card);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-who__image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-who__image-wrap:focus-visible {
  outline: 2px solid var(--about-who-accent);
  outline-offset: 4px;
}

.about-who__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .about-who__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-who {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-who {
    padding: 2rem 1rem;
  }
  .about-who__title {
    margin-bottom: 1rem;
  }
}

/* APPEND TO styles.css */
:root {
  --about-cert-accent: #00BCD4;
  --about-cert-bg: #ffffff;
  --about-cert-shadow: rgba(0, 188, 212, 0.1);
}

.about-cert {
  background-color: var(--about-cert-bg);
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
}

.about-cert__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-cert__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #001F3F;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-cert__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cert__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.about-cert__card {
  background-color: var(--about-cert-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--about-cert-shadow);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}

.about-cert__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
}

.about-cert__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--about-cert-accent), #009688);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.about-cert__icon i {
  font-size: 1.5rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about-cert__title {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #001F3F;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-cert__description {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #757575;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-cert__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-cert {
    padding: 60px 20px;
  }

  .about-cert__heading {
    margin-bottom: 0.75rem;
  }

  .about-cert__subtitle {
    margin-bottom: 2rem;
  }

  .about-cert__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-cert__card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .about-cert__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .about-cert__icon i {
    font-size: 1.25rem;
  }
}

