@charset "UTF-8";

@media screen and (min-width: 1400px) {
  .container {
    width: 1140px;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    width: 1400px;
  }
}

:root {
  --cyan: #60daaa;
  --red: #f45e61;
}

body {
  font-family: "Antonio", sans-serif;
  font-size: 1rem;
  color: #101010;
}

/* Navbar and Logo Styling */
.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  padding-top: 0;
  border-bottom: 2px solid #3f3d8c;
}

.logo-container {
  width: 170px;
  height: 90px;
  background-color: #3f3d8c;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-container img {
  max-width: 65%;
  position: absolute;
  top: 20px;
}

.record-button {
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.record-button .inner-button {
  width: 20px;
  height: 20px;
  background-color: #e52e2d;
  border-radius: 3px;
}

/* Navigation Menu Styling */
.nav-menu {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  margin: 1rem;
  color: #3f3d8c;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s;
  border-radius: 20px;
  font-size: 1.3rem;
}

/* Draw Border Effect */
.nav-menu a::before,
.nav-menu a::after {
  content: "";
  position: absolute;
  box-sizing: inherit;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  /* Rounded corners from the start */
}

/* Top and Right Borders */
.nav-menu a::before {
  top: 0;
  left: 0;
}

/* Bottom and Left Borders */
.nav-menu a::after {
  bottom: 0;
  right: 0;
}

.nav-menu a:hover {
  color: var(--red);
}

/* Hover Effect to "draw" the borders in a rounded shape */
.nav-menu a:hover::before,
.nav-menu a:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  /* Ensures the border remains rounded */
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.nav-menu a:hover::before {
  border-top-color: var(--red);
  border-right-color: var(--red);
}

.nav-menu a:hover::after {
  border-bottom-color: var(--red);
  border-left-color: var(--red);
}

.nav-menu .active-link {
  color: var(--red);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--red);
}


.carousel-inner {
  background: #383580;
}

.carousel .carousel-indicators button {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.carousel-indicators .active {
  background-color: #ffd402 !important;
}

.carousel-indicators [data-bs-target] {
  border: 3px solid #ffd402;
  background-color: transparent;
}

.purpose-section {
  padding: 80px 0;
  background-color: #f7f7fc;
}

.purpose-section-left {
  padding-right: 20px;
}

.title-section {
  display: flex;
  gap: 15px;
}

.vertical-line {
  width: 4px;
  background-color: #d9534f;
  /* Adjust color as needed */
  margin-right: 15px;
}

.purpose-title {
  font-size: 3rem;
  font-weight: 400;
  color: #2B2862;
  line-height: 1;
}

.purpose-subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  color: #343a40;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.purpose-text {
  line-height: 1.8;
  text-align: justify;
}

.image-container {
  display: flex;
  justify-content: center;
  padding-left: 20px;
}

.image-container img {
  width: 100%;
  object-fit: cover;
}

.mission-section {
  padding: 80px 0;
  text-align: center;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2B2862;

  /* Dark navy color */
  letter-spacing: 5px;
  margin-bottom: 0;
}

.mission-section .curved-underline {
  margin: 10px auto 20px;
  max-width: 230px;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.values-section {
  padding: 80px 0;
  text-align: center;
  background: #F9F9FF;
}

.values-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2B2862;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.values-subtitle {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.divider {
  height: 100%;
  width: 1px;
  background-color: #383580;
  margin: 0 15px;
}

.value-item {
  padding: 20px;
}

@media (max-width: 767px) {
  .divider {
    display: none;
  }
}

.facility-section {
  padding: 80px 0;
  text-align: center;
}

.facility-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2B2862;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.facility-section .curved-underline {
  margin: 10px auto 20px;
  width: 200px;
  height: auto;
}

.facility-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.team-section {
  padding: 80px 0;
  text-align: center;
  background: #F9F9FF;
}

.team-description {
  color: #383580;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.team-member {
  margin-bottom: 40px;
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #383580;
  overflow: hidden;
  margin: 0 auto 20px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 2rem;
  color: #383580;
  margin-bottom: 0;
}

.team-section .curved-underline {
  margin: 5px auto 15px;
  width: 40%;
  height: auto;
}

.member-description {
  color: #383580;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.contact-section {
  padding: 60px 0;
  text-align: center;
  background: #F9F9FF;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2B2862;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.contact-subtitle {
  color: #2B2862;
  margin-bottom: 30px;
}

.contact-button {
  border: 2px solid #2B2862;
  /* Dark navy color */
  color: #2B2862;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #1a1a3f;
  color: #fff;
}

.home-blank-space {
  margin: 170px;
}


.footer-top {
  background-color: #fff;
  padding: 40px 0px 0px 0px;
}

.footer-top-area {
  position: relative;
  z-index: 1;
}

.footer-top h5 {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a3f;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  display: inline-block;
}

h5.fw-bold {
  border-bottom: 2px solid #3f3d8c;
  /* Replace with your desired color */
  display: inline-block;
  /* Ensures the border is limited to the text width */
  padding-bottom: 5px;
  /* Adjust padding */
}


.footer-top a {
  color: #1a1a3f;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.footer-top a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #1a1a3f;
  color: #fff;
  padding: 60px 0;
  position: relative;
}

.footer-logo {
  position: absolute;
  top: -135px;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  margin-top: 51px;
}

.footer-newsletter {
  text-align: center;
  color: #fff;
}

.footer-newsletter h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.newsletter-input-group {
  max-width: 500px;
  /* Set max-width to 500px */
  width: 100%;
  /* Ensures full width within the max-width constraint */
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 5px;
}

.newsletter-input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #dcdcdc;
  width: 100%;
  padding: 10px;
}

.newsletter-input::placeholder {
  color: #dcdcdc;
}

.newsletter-button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-button:hover {
  color: #1a1a3f;
  background-color: #fff;
}

.social-links {
  text-align: right;
  color: #fff;
}

.social-links h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
  border: 0;
}

.svg-inline--fa {
  vertical-align: -0.2em;
}

.rounded-social-buttons {
  text-align: center;
  padding: 1rem 0rem;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.8rem;
  height: 2.8rem;
  padding: 7px;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  background: black;
}

.rounded-social-buttons .fa-twitter,
.fa-facebook-f,
.fa-linkedin,
.fa-youtube,
.fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus,
.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus,
.rounded-social-buttons .social-button.email:hover,
.rounded-social-buttons .social-button.email:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}


/* Brands css */

.slider-section-brand {
  position: relative;
  overflow: hidden;
}


.slider-section-brand .carousel-inner img {
  width: 100%;
  height: auto;
}

.slider-overlay {
  position: absolute;
  top: 215px;
  left: 0;
  width: 100%;
  height: 40%;
  background: #383580;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slider-overlay h2 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0px 200px;
}

.slider-section-brand .carousel-indicators [data-bs-target] {
  background-color: #ffd700;
  /* Gold indicators */
}

.brand-about-section {
  padding: 80px 20px;
}

/* Headline Design */
.brand-about-section .text-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Company Name */
.brand-about-section .text-content h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Paragraph Design */
.brand-about-section .text-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.brand-about-section .text-content p strong {
  font-weight: bold;
}

/* Image Styling */
.brand-about-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.about-company {
  font-size: 1.4rem;
}

/* Text Alignment for Desktop */
@media (min-width: 768px) {
  .brand-about-section .text-content {
    padding-right: 30px;
  }
}





.brands-section {
  position: relative;
  background-color: #f9f9ff;
  text-align: center;
  padding: 150px 20px 50px;
  overflow: hidden;
}

.brands-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135px;
  background: #fff;
  border-radius: 0 0 100% 100%;
  z-index: 0;
}

.brands-title {
  position: relative;
  font-family: "Antonio", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b2862;
  margin-bottom: 30px;
  z-index: 1;
  top: -100px;
}

.brands-text {
  font-family: "Antonio", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  position: relative;
  top: -30px;
}

@media (max-width: 768px) {
  .brands-title {
    font-size: 2rem;
    top: -80px;
  }

  .brands-text {
    font-size: 0.9rem;
    top: -40px;
  }
}


.products-section {
  background-color: #f9f9ff;
  padding: 50px 20px;
  margin-bottom: 30px;
}

.products-section-acme {
  margin-bottom: 50px;
}

/* Header Section */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #383580;

}

.header-left {
  flex: 1;
}

.header-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2862;
  margin-bottom: 5px;
}

.header-left p {
  font-size: 1rem;
  color: #2B2862;

}

.header-center {
  flex: 1;
  text-align: center;
}

.header-center img {
  max-width: 300px;
  object-fit: contain;
}

.header-right {
  flex: 1;
  text-align: right;

  color: #2B2862;

}

.sort-dropdown {
  font-size: 1rem;
  color: #2B2862;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Fixed 3 items per row */
  gap: 20px;
  margin-top: 20px;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Keeps the image centered */
}

.product-card {
  width: 100%;
}

.product-card img {
  width: 100%;
  object-fit: contain;
  border: 1px solid #000000;
  border-radius: 10px;
  aspect-ratio: 1;
}

.product-name {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #2b2862;
  text-align: left;
  /* Align text to the left */
  width: 100%;
  /* Ensures it spans full width of the container */
  padding-left: 10px;
  /* Adds spacing for the text alignment */
  display: flex;
  align-items: center;
}

.product-name::before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #2b2862;
  margin-right: 10px;
  border-radius: 2px;
}

.product-name a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 2px;
}

/* Adjustments for Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    /* 1 item per row */
  }

  .products-header {
    flex-direction: column;
    text-align: center;
  }

  .header-left,
  .header-center,
  .header-right {
    flex: unset;
    margin-bottom: 15px;
  }

  .header-right {
    text-align: center;
  }
}


/* Top Section Styling */
.product-details .top-section {
  margin: 0;
  padding: 0;
  position: relative;
}

.product-details .row.align-items-stretch {
  display: flex;
  flex-wrap: nowrap;
}

.product-details .image-container,
.product-details .description-container {
  height: 100%;
}

.product-details .image-container {
  background-color: #f7f7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-details .product-image {
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

.product-details .description-container {
  background-color: #2b2862;
  color: #fff;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-details .description-content {
  max-width: 500px;
}

.product-details .product-logo {
  display: block;
  margin: 0 auto;
  max-width: 120px;
}

.product-details .product-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-details .product-highlights {
  list-style: none;
  padding: 0;
}

.product-details .product-highlights li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.product-details .product-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #ffd700;
  border-radius: 50%;
}

.product-details .bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #2b2862 50%, #ffd700 50%);
}

/* Bottom Section Styling */
.product-details .bottom-section {
  padding: 50px 0;
  background-color: #fff;
}

.product-details .product-title,
.product-details .nutritional-title {
  position: relative;
  padding-left: 20px;
  color: #2B2862;
}

.product-details .nutritional-subtitle {
  color: #2B2862;
  padding-left: 20px;
}

.product-details .product-title::before,
.product-details .nutritional-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.product-details .product-title::before {
  background-color: #2b2862;
  /* Dark Navy for Product Title */
}

.product-details .nutritional-title::before {
  background-color: #ffd700;
  /* Gold for Nutritional Details */
}

.product-details .nutritional-info {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.product-details .nutritional-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-size: 1rem;
  color: #2B2862;
  background-color: #F2F2FF;
  margin-bottom: 15px;
}

/* .product-details .nutritional-info li:nth-child(odd) {
  background-color: #f9f9ff;
} */

/* .product-details .nutritional-info li:nth-child(even) {
  background-color: #ffffff;
} */

/* .product-details .nutritional-info li:last-child {
  border-bottom: none;
} */

/* .product-details .nutritional-info li span:first-child {
  font-weight: 600;
} */

.product-details .nutritional-info li span:last-child {
  font-weight: 400;
  color: #2B2862;
  text-align: right;
}

.product-details .product-info {
  color: #2B2862;
  margin-top: 80px;
}

.product-details .product-info li {
  list-style: none;
}


.footprints-section {
  margin-bottom: 60px;
  background-color: #f9f9ff;
}

.text-section {
  background-color: #f9f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.text-content {
  max-width: 500px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: #2b2862;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.underline {
  width: 100px;
  height: 4px;
  background-color: #2b2862;
  margin: 20px auto 0;
}

.image-section {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footprint-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Nationwide Section */
.nationwide-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.nationwide-text-section {
  text-align: left;
}

.nationwide-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2862;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.nationwide-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nationwide-underline svg {
  width: 100%;
  max-width: 200px;
  /* Scales SVG for responsiveness */
  height: auto;
}

.nationwide-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.nationwide-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nationwide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Global Section */

/* Default Desktop Layout */
.global-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Mobile-Only Layout */
@media (max-width: 768px) {
  .global-section .row {
    flex-direction: column-reverse;
    /* Reverse the stacking order */
  }

  .global-section .global-text-section {
    text-align: center;
    /* Center-align text for mobile */
    margin-bottom: 20px;
    /* Add spacing below the text */
  }

  .global-section .global-image-section {
    text-align: center;
    /* Center-align image for mobile */
    margin-top: 20px;
    /* Add spacing above the image */
  }
}

.global-section {
  background-color: #f9f9ff;
}

.global-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.global-text-section {
  padding: 70px;
  text-align: justify;
}

.global-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2862;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.global-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.global-underline svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.global-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

/* Export Section */
.export-section {
  padding-top: 60px;
  background-color: #ffffff;
}

.export-text-section {
  text-align: center;
  /* Centers the title and underline */
  padding-right: 20px;
}

.export-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2862;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.export-underline {
  display: flex;
  justify-content: center;
  /* Centers the SVG underline */
  margin-bottom: 20px;
}

.export-underline svg {
  width: 100%;
  max-width: 120px;
  /* Responsive scaling for the underline */
  height: auto;
}

.export-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  /* Keeps the description justified for clean layout */
  margin-top: 20px;
}

.export-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.export-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for a modern look */
}

/* Banner Section */
.contact-banner {
  background: url("../images/contact-banner.png") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.contact-banner h1 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-banner h1 .highlight {
  color: #383580;
  /* Dark Blue for "Us" */
}

.contact-banner p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
}

/* Contact Section */
.contact-page .contact-section {
  background-color: #f9f9ff;
  position: relative;
  z-index: 1;
}

.contact-left {
  text-align: left;
  padding: 0px 80px;
}

.contact-left h2 {
  font-size: 2rem;
  color: #2b2862;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-left .underline {
  margin: 0 0 20px 0;
  background: none;
}

.contact-left .underline svg {
  width: 190px;
  height: auto;
}

.contact-left p {
  font-size: 1rem;
  margin-top: 15px;
  line-height: 1.8;
}

.contact-left .info-item {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 1rem;
}

.contact-left .info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #2b2862;
}

.contact-right {
  padding: 0px 80px;
}

.contact-right h2 {
  font-size: 1.5rem;
  color: #2b2862;
  margin-bottom: 20px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  border: 2px solid #2b2862;
  border-radius: 30px;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #2b2862;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-right textarea {
  resize: none;
  /* Prevents resizing of the textarea */
  height: 150px;
}

.contact-right button {
  background-color: #2b2862;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-right button:hover {
  background-color: #4a4a4a;
}