/* spf css file some common css  */


body,
header {
  background: #fff;
  font-family: Poppins, sans-serif;
  color: var(--text-color);
  height: 100%;
}

video {
  max-height: 500px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1440px) {
  video {
    min-height: 500px;
    width: 100%;
    height: auto;
  }
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  /* pure white */
  text-transform: uppercase;
  /* text-shadow: 2px 2px 8px rgba(0,0,0,0.6); subtle glow */
}

.separator,
.subtitle {
  font-weight: 700;
  color: var(--primary-accent);
}

.drawer a:hover,
.separator,
.subtitle,
.text-block .highlight {
  color: var(--primary-accent);
}

.banner_section,
.form_container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.center,
.cert-item p,
.form-title,
.welcome_content {
  text-align: center;
}

:root {
  --primary-dark: #060147;
  --primary-dark_bg: #151a83;
  --primary-dark_bg1: #1f1694;
  --primary-text: #2e3192;
  --primary-accent: #ac9778;
  --text-color: #525051;
  --footer-bg: #151a83;
  --muted-foreground: rgba(255, 255, 255, 0.6);
  --primary-foreground: #ffffff;
  --gradient-primary: linear-gradient(135deg, #4f46e5, #3b82f6);
  --gradient-glass: linear-gradient(135deg,
      rgba(6, 1, 71, 0.1),
      rgba(255, 255, 255, 0.05));
  --foreground: #fff;
  --muted-foreground: #b0b0b0;
  --primary: var(--primary-text);
  --primary-foreground: #fff;
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(46, 49, 146, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.text-block,
main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

/* header section */
header {
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.header-left,
.top-actions {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 12px;
}

.logo-img {
  width: 190px;
  height: auto;
  transition: transform 0.3s;
}

/* menu section */
.top-actions {
  gap: 20px;
  font-size: 1rem;
}

.top-actions span {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.3s;
}

.desktop-nav a {
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 4px;
}

.drawer a,
.footer-col ul li a {
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 1.5px;
}

.top-actions span:hover {
  color: #151a83;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  padding: 8px 16px;
}

.nav-bar {
  background-color: #fff;
  width: 100%;
  margin-top: 20px;
}

/* common container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  letter-spacing: 3px;
  padding: 15px 0;
  flex-wrap: wrap;
}

.desktop-nav a {
  position: relative;
  color: var(--primary-text);
  font-weight: 500;
  white-space: nowrap;
  padding-bottom: 5px;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark_bg);
  transition: transform 0.3s ease-in-out;
}

.desktop-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.separator {
  margin: 0 12px;
}

/* mobile drawer */
.drawer {
  position: fixed;
  top: 0;
  left: -360px;
  width: 340px;
  height: 100vh;
  background-color: #f2f2f2;
  color: #333;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transition: left 0.3s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drawer a {
  color: #333;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.drawer .close-btn {
  font-size: 24px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}
/* media query */
@media screen and (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
/* media query */
@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-left {
    flex: 1;
  }

  .logo-img {
    width: 190px;
    padding: 15px;
  }

  .top-actions {
    flex: 1;
    justify-content: flex-end;
  }

  /* .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  } */

  .banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 173px;
  }
}

/* banner section */
.swiper-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.banner_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* banner vedio mask code section */
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1440px) {
  .banner-video,
  .banner-img {
    min-height: 625px;
    border-bottom-left-radius: 453px !important;
  }
}


@media screen and (max-width: 1440px) {
  .banner-video{
    border-bottom-left-radius:326px ;
  }
}
/* @media screen and (max-width: 768px) {
  .banner-video{
    border-bottom-left-radius:300px !important;
  }
} */

.banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
}



@media screen and (max-width: 780px) {
  .banner-video,
  .banner-img {
    border-bottom-left-radius: 180px;
    min-height: 280px !important;
    height: 280px !important;
  }
}

@media screen and (max-width: 480px) {
  .banner-video,
  .banner-img {
    border-bottom-left-radius: 100px !important;
    min-height: 280px !important;
    height: 280px !important;
  }
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 5;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20px;
  pointer-events: none;
}

.banner-content .container {
  max-width: 1140px;
  margin: 0 auto;
  pointer-events: all;
}

.banner-content h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin: 0 25px;
  border-radius: 10px;
  text-shadow: 2px 2px 8px rgb(0 0 0);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  backdrop-filter: brightness(0.5);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.swiper-button-next {
  right: 50px !important;
}

.swiper-button-prev {
  left: 50px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* banner media queries */
@media screen and (max-width: 768px) {
  .banner-content .container h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    white-space: normal;
    word-break: break-word;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* welcome section  */
.section-title,
.text-block h3 {
  font-size: 2.5rem;
  color: var(--primary-text);
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-weight: 500;
}
.section-title-made{
    font-size: 1.5rem;
  color: var(--primary-text);
  font-weight: 600;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
}
.sub_title{
    font-size: 1.5rem;
  color: var(--primary-text);
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-weight: 600;
}
.title-h1 {
  font-size: .9rem;
  color: var(--primary-text);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#toast-container {
  position: fixed;
  top: 20px;  
  left: 50%;   
  transform: translateX(-50%);
  z-index: 9999;
}
.toast {
  min-width: 100px;
  min-height: 50px;
  margin-top: 10px; 
  padding: 15px 20px;
  color: #4caf50;         
  background-color: #4caf4f38;   
  /* border: 1px solid #4caf50;  */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-50px);
  animation: slideInTop 0.5s forwards, fadeOut  30s forwards;
  font-family: sans-serif;
  font-weight: 500;
  text-align: center;
font-size: 20px !important;
}
.toast.error {
  color: #f44336;
    background-color: #f443363b; 
  border: 1px solid #f44336;
}

/* Animation */
@keyframes slideInTop {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* @keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
} */



.title-h2 {
  /* font-family: 'Poppins', sans-serif; */
  font-size: 2.5rem;
  color: var(--primary-text);
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.title-h2-alt {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-text);
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.welcome_content {
  padding: 50px 0;
}

.section-underline {
  width: 100px;
  height: 2px;
  background-color: var(--primary-accent);
  margin: 0 auto 20px;
}

.section-desc {
  max-width: 821px;
  margin: 0 auto 40px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}


/* subsection description */
/* 
.grid-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 60px;
}

.grid-2.reverse {
  flex-direction: row-reverse;
}

.text-block .highlight {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.text-block h4 {
  max-width: 516px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1;
  line-height: 1.5;
} */
 .grid-2 {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 60px;
}

.grid-2.reverse {
  flex-direction: row-reverse;
}

.text-block .highlight {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.text-block h4 {
  max-width: 516px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem; /* Fixed unit */
  line-height: 1.5;
}
.text-block ul {
  padding-left: 20px;
  margin-top: 5px;
}

.text-block li {
  margin-bottom: 8px;
  line-height: 1.5;
}




.img-rounded {
  flex: 1;
  height: 435px;
  width: 100%;
  object-fit: cover;
}

/* footer section  */
.footer {
  background-color: var(--footer-bg);
  color: #fff;
  padding: 100px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col ul li a {
  position: relative;
  color: #fff;
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 4px;
  display: inline-block;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}

.footer-col ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* newsletter section */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background-color: #0000002b;
  color: #fff;
  font-size: 14px;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: #fff;
}

.newsletter-form button {
  padding: 10px 20px;
  color: var(--primary-dark);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
}

.newsletter-form button:hover {
  background-color: #e0e0e0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 60px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  gap: 156px;
  font-weight: 500;
}

.footer-selects {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.custom-select-wrapper {
  position: relative;
  width: max-content;
}

.custom-select-wrapper select {
  padding: 6px 36px 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m12 13.171l4.95-4.95l1.414 1.415L12 16L5.636 9.636L7.05 8.222z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.custom-select-wrapper select:focus {
  outline: 0;
  border-color: var(--primary-accent, #aaa);
}

.custom-select-wrapper select option {
  color: #000;
  background-color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  gap: 90px;
  margin-top: 10px;
}

.footer-heading {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

.footer-col {
  min-width: 120px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* contact page  */
.section {
  max-width: 1240px;
  display: flex;
  justify-content: end;
  margin: auto;
}

.form_container {
  background-image: url("./imgs/perfume-manufacturing-contact.jpg");
  padding: 60px 20px;
}

.contact-form-container {
  width: 600px;
  padding: 2rem;
  position: relative;
  border-radius: 24px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.form-input,
.submit-btn {
  width: 100%;
  transition: 0.3s;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 160%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(4, 26, 97, 0.651) 0,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(5, 19, 145, 0.582) 100%);
  opacity: 0;
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 0;
}

.contact-form-container:hover::before {
  animation: 2s ease-in-out forwards whiteShimmer;
  opacity: 1;
}

@keyframes whiteShimmer {
  0% {
    left: -60%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.form-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-input {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(27, 30, 202, 0.07);
  color: var(--foreground);
  backdrop-filter: blur(12px);
  font-size: 1rem;
  resize: none;
}

.form-input::placeholder {
  color: #fff;
}

.form-input:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(14, 56, 172, 0.342);
}

.submit-btn {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-top: 1.25rem;
  padding: 1rem 2rem;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(46, 49, 146, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 49, 146, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.fade-in {
  animation: 0.8s ease-out fadeIn;
}

@media (max-width: 768px) {
  .grid-2 {
    flex-direction: column;
    text-align: center;
  }

  .grid-2.reverse {
    flex-direction: column;
  }

  .img-rounded {
    order: -1;
    height: auto;
    /* max-height: 100; */
  }

  .text-block {
    padding: 0 16px;
  }

  .text-block p {
    margin: 0 auto;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .text-block h3 {
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .text-block .highlight {
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .title-h1 {
    font-size: .6rem !important;
    color: var(--primary-text);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .title-h2 {
    font-size: .5rem !important;
    color: var(--primary-accent);
    font-weight: 500;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .section-underline {
    width: 80px;
    margin: 0 auto 16px;
  }

  .section-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 12px;
  }

  .welcome_content {
    padding-top: 20px;
  }

  .footer {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* margin-top: 10px; */
  }

  .social-icons {
    margin-top: 30px;
  }

  .footer-link-group {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
    max-width: none;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom {
    justify-content: space-between;
    gap: 0;
    flex-direction: column;
    gap: 10px;
  }

  .footer-selects {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-selects select {
    width: auto;
  }

  .newsletter-form button,
  .newsletter-form input {
    width: 100%;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
  }

  .form-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form-container {
    padding: 1.5rem;
    width: 300px;
  }
}

#success-message {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  animation: 0.5s ease-in-out fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    width: 300px;
  }

  .section {
    padding: 2rem 1rem;
  }

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

  .recaptcha-wrapper {
    transform: scale(0.8);
    height: 62px;
  }
}

@media (max-width: 360px) {
  .recaptcha-wrapper {
    transform: scale(0.75);
    height: 58px;
  }
}

html {
  scroll-behavior: smooth;
}

/* CERTIFICATION section */
.cert-grid {
  display: flex;
  justify-content: space-around;
  gap: 80px;
  margin-top: 0;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-item img {
  max-width: 140px;
  height: auto;
}

.cert-item p {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-text);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cert-grid {
    gap: 40px;
  }

  .cert-item img {
    max-width: 120px;
  }

  .cert-item p {
    font-size: 0.9rem;
  }
}

.contact_h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #002d5b;
}

.contact_p {
  margin: 3px 0;
  font-size: 18px;
  color: #060147c7;
  line-height: 1.6;
}

.contact_btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid #002d5b;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  color: #002d5b;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact_btn:hover {
  background: #002d5b;
  color: #fff;
}

.contact_form {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
}

.form_row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form_group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form_group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #060147c7;
}

.form_group input,
.form_group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
}

.form_group input:focus,
.form_group textarea:focus {
  border-color: #002d5b;
}

.checkbox_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: left;
}

input.error,
textarea.error {
  border-color: red !important;
}

.error_msg {
  font-size: 12px;
  color: red;
  margin-top: 4px;
  display: none;
}

.submit_btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #002d5b;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit_btn:hover {
  background: #004080;
}

@media (max-width: 600px) {
  .form_row {
    flex-direction: column;
  }
}

.made_in_india_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.made_in_india_img {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.curved-video-left{
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom-left-radius: 122px;
    overflow: hidden;
}

@media screen and (min-width: 1268px) {
  .curved-video-left{
        width: 56%;
    border-bottom-left-radius: 230px;
  }
}
@media screen and (max-width: 768px) {
  .curved-video-left {
        width: 100%;
    border-bottom-left-radius: 180px;
  }
}

@media screen and (max-width: 480px) {
  .curved-video-left {
        width: 100%;
    border-bottom-left-radius: 100px;
  }


}

.curved-video {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom-right-radius: 180px;
    overflow: hidden;
}

@media screen and (min-width: 1268px) {
  .curved-video {
        width: 56%;
    border-bottom-right-radius: 230px;
  }
}
@media screen and (max-width: 768px) {
  .curved-video {
        width: 100%;
    border-bottom-right-radius: 180px;
  }
}

@media screen and (max-width: 480px) {
  .curved-video {
        width: 100%;
    border-bottom-right-radius: 100px;
  }
}

/* ----------------------- */
/* .search-wrapper {
  position: relative;
}

.search-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-box input {
  padding: 6px 10px;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
} */