/* Andale Mono */
@font-face {
  font-family: "AndaleMono";
  src: url("../fonts/Andale Mono.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* MyriadPro-Regular */
@font-face {
  font-family: "MyriadPro";
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* DIN Bl@ck Alternate */
@font-face {
  font-family: "DINBlackAlt";
  src: url("../fonts/DIN-BlackAlternate.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* DIN Light */
@font-face {
  font-family: "DINLight";
  src: url("../fonts/DINLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* DIN Medium */
@font-face {
  font-family: "DINMedium";
  src: url("../fonts/DINMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* DIN Pro */
@font-face {
  font-family: "DINPro";
  src: url("../fonts/FontsFree-Net-DINPro-1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* DIN Bold */
@font-face {
  font-family: "DINBold";
  src: url("../fonts/ufonts.com_din-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --yellow: #fef200;
  --green: #8fc73e;
  --orange: #f6821f;
  --blue: #00adef;
  --gray: #d4d4d6;
  --white: #ffffff;
  --black: #000000;
  --purple: #a35ba4;
  --teal: #28b990;
  --sky: #269abf;
  --gold: #fcc32c;
  --red: #f16935;
  --font-andalemono: "AndaleMono", Arial, sans-serif;
  --font-myriadpro: "MyriadPro", Arial, sans-serif;
  --font-dinblackalt: "DINBlackAlt", Arial, sans-serif;
  --font-dinlight: "DINLight", Arial, sans-serif;
  --font-dinmedium: "DINMedium", Arial, sans-serif;
  --font-dinpro: "DINPro", Arial, sans-serif;
  --font-dinbold: "DINBold", Arial, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--gray);
  overflow-x: hidden;
}

.fancybox__dialog {
  background: #000000 !important;
}

.fancybox__slide {
  background: #000000 !important;
}

.fancybox__thumbs {
  display: none !important;
}

/* Text Colors */
.text-yellow {
  color: var(--yellow) !important;
}

.text-green {
  color: var(--green) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.text-teal {
  color: var(--teal) !important;
}

.text-sky {
  color: var(--sky) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-red {
  color: var(--red) !important;
}

/* Background Colors */
.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.bg-teal {
  background-color: var(--teal) !important;
}

.bg-sky {
  background-color: var(--sky) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

/* Border Colors */
.border-yellow {
  border-color: var(--yellow) !important;
}

.border-green {
  border-color: var(--green) !important;
}

.border-orange {
  border-color: var(--orange) !important;
}

.border-blue {
  border-color: var(--blue) !important;
}

.border-gray {
  border-color: var(--gray) !important;
}

.border-white {
  border-color: var(--white) !important;
}

.border-black {
  border-color: var(--black) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.border-teal {
  border-color: var(--teal) !important;
}

.border-sky {
  border-color: var(--sky) !important;
}

.border-gold {
  border-color: var(--gold) !important;
}

.border-red {
  border-color: var(--red) !important;
}

/* Inputs & Forms */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-select,
.form-control {
  border-color: var(--gray);
  border-radius: 0;
  min-height: 50px;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: inherit;
}

/* Lists */
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Text */
.text-justify {
  text-align: justify !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--green);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* Selection */
::selection {
  color: var(--white);
  background: var(--green);
}

/* Placeholder */
::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  color: inherit;
}

/* Custom */
.rotate-170deg {
  transform: rotate(-170deg) !important;
}

.rotate-14deg {
  transform: rotate(14deg) !important;
}

/* FancyBox */
.f-button.is-arrow {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;

  width: 40px !important;
  height: 40px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;
}

.f-button.is-arrow svg {
  width: 32px !important;
  height: 32px !important;
  stroke-width: 2.5;
}

.f-button.is-arrow.is-prev {
  left: 5px !important;
}

.f-button.is-arrow.is-next {
  right: 5px !important;
}

@media (max-width: 768px) {
  .f-button.is-arrow {
    width: 50px !important;
    height: 50px !important;
  }

  .f-button.is-arrow svg {
    width: 26px !important;
    height: 26px !important;
  }

  .f-button.is-arrow.is-prev {
    left: -10px !important;
  }

  .f-button.is-arrow.is-next {
    right: -10px !important;
  }
}

/* .f-button.is-arrow {
    height: inherit !important;
    width: inherit !important;
    background: inherit !important;
}

.f-button.is-arrow.is-prev {
    left: 5px !important;
}

.f-button.is-arrow.is-next {
    right: 5px !important;
} */

/* Header */
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
  text-transform: uppercase;
  color: var(--black);
  padding-left: 20px;
  padding-right: 20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(0, 0, 0, 0.5);
}

.navbar.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 20px 40px 20px 40px;
}

.navbar.navbar-sticky.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-sticky .nav-link.active {
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 700;
}

/* Home Page Section */
.home-page-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--blue);
  display: flex;
  align-items: center;
}

.home-page-section .home-left-video {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, filter;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-page-section .home-left-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.home-page-section .home-left-video .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-page-section .home-left-video:hover .video-btn {
  display: flex;
}

.home-page-section .home-left-video:hover .video-btn .video-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Circle Container with Decorative Elements */
.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page-right-content p.title {
  font-size: 70px;
  line-height: 70px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
  display: inline-block;
  color: var(--white);
}

/* Masking Animation - Animated gradient visible only inside text */
.home-page-right-content p.title .title-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.9) 25%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.9) 75%,
      rgba(255, 255, 255, 0.6) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: maskGradient 4s ease-in-out infinite;
  /* Fallback color - ensures text is visible */
  color: rgba(255, 255, 255, 0.8);
}

@keyframes maskGradient {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Ensure text words are positioned correctly */
.home-page-right-content p.title .title-word {
  position: relative;
  display: inline-block;
}

.home-page-right-content p.title .title-word {
  will-change: opacity;
}

.home-page-right-content p.description {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--font-dinpro);
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-page-right-content p.description .desc-line {
  will-change: opacity;
}

/* Text Wave Effect */
.title-word {
  display: inline-block;
  position: relative;
}

/* About Page Section */
.about-page-section-1 {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--green);
  display: flex;
  align-items: center;
}

.about-page-section-1 .about-page-section-1-left-content p.title {
  color: var(--white);
  font-size: 26px;
  line-height: 2;
  font-family: var(--font-dinbold);
}

.about-page-section-1 .about-page-section-1-left-content p.description {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--font-dinpro);
  margin-top: 30px;
}

.about-page-section-1 .about-page-section-1-right-point-circle {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-dinbold);
  position: relative;
  z-index: 2;
}

.about-page-section-1-right-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-page-section-1-right-content p {
  font-family: var(--font-dinpro);
  font-size: 22px;
  /* font-weight: 600; */
  line-height: 1.2;
  text-align: center !important;
  width: 100%;
}

.about-page-section-3 {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--blue);
  display: flex;
  align-items: center;
}

/* About Page Bubble Container - Section 3 (Large circle) */
.about-bubble-container-3 {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page-section-3 .about-left-content {
  position: relative;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--yellow);
  background: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.about-page-section-3 .about-left-content p {
  color: var(--orange);
  font-size: 50px;
  line-height: 50px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
}

.about-page-section-3 .about-right-content ul li {
  margin-bottom: 25px;
}

.about-page-section-3 .about-right-content ul li strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--font-dinbold);
  margin-bottom: 6px;
}

.about-page-section-3 .about-right-content ul li span {
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--font-dinmedium);
}

.about-brand-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  display: flex;
  align-items: center;
  background: var(--white);
}

.about-brand-section .about-brand-title {
  color: var(--orange);
  font-size: 70px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
}

/* Works Page Section */
.works-page-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--yellow);
  display: flex;
  align-items: center;
}

.works-page-section .works-card {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  position: relative;
}

.works-page-section .works-card small.shapoorji-pallonji-text {
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 23%;
  transform: translateX(-50%);
  font-weight: 700;
}

.works-page-section .works-card img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Services */
.services-page-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--orange);
  display: flex;
  align-items: center;
}

/* Services Bubble Container */
.services-bubble-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-page-section .services-left-content {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green);
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.services-page-section .services-left-content p {
  color: var(--white);
  font-size: 65px;
  line-height: 65px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
}

.services-page-section .services-right-content p {
  font-size: 25px;
  line-height: 1.3;
  font-family: var(--font-dinpro);
}

.core-services-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  display: flex;
  align-items: center;
  background: var(--white);
}

.core-title {
  color: var(--gold);
  font-size: 70px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
}

.service-box {
  background: transparent;
  border: 1px solid var(--gray);
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
}

.service-header .number {
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
}

.service-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-dinbold);
  color: #333;
}

.bullet-list,
.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li,
.service-points li {
  position: relative;
  margin-bottom: 10px;
  font-size: 13px;
  color: #222;
  font-weight: 600;
}

.service-points li strong {
  font-size: 13px;
  font-family: var(--font-dinbold);
}

.service-points li p {
  font-size: 13px;
}

.bullet-list li::before {
  content: "●";
  color: #0094cc;
  font-weight: bold;
  display: inline-block;
  width: 20px;
}

.service-points strong {
  display: block;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--purple);
}

.service-points p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.service-header .number.purple {
  color: var(--purple);
}

.service-header .number.green {
  color: var(--green);
}

.service-header .number.sky {
  color: var(--sky);
}

.service-header .number.orange {
  color: var(--orange);
}

.service-header .number.gold {
  color: var(--gold);
}

.service-header .number.teal {
  color: var(--teal);
}

.bullet-list li.purple::before {
  color: var(--purple);
}

.bullet-list li.green::before {
  color: var(--green);
}

.bullet-list li.sky::before {
  color: var(--sky);
}

.bullet-list li.orange::before {
  color: var(--orange);
}

.bullet-list li.gold::before {
  color: var(--gold);
}

.bullet-list li.teal::before {
  color: var(--teal);
}

/* People Page */
.people-page-section-1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5em 0px;
  background: var(--orange);
}

/* People Bubble Container */
.people-bubble-container {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.people-page-section-1 .people-container {
  position: relative;
}

.people-page-section-1 .people-container .image {
  position: relative;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.people-page-section-1 .people-container .title {
  color: var(--white);
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-dinbold);
  margin-bottom: 8px;
  margin-top: 25px;
}

.people-page-section-1 .people-container .designation {
  color: var(--white);
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--font-dinmedium);
}

.people-page-section-3 {
  background: var(--white);
  padding: 5em 0 5em 0;
}

.people-page-section-3 .people-page-section-3-partners {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.people-page-section-3 .collaborating-patners-text {
  position: relative;
  background: url(../images/peoples/collaboration-partners.jpg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 450px;
  /* min-height: 620px; */
}

.people-page-section-3 .collaborating-patners-text p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  color: var(--white);
  font-size: 65px;
  /* font-size: 85px; */
  font-weight: 900;
  font-family: var(--font-dinblackalt);
}

.partner-container {
  position: relative;
  text-align: center;
}

.partner-circle {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.people-page-section-3 img[src*="first-economy"] {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.people-page-section-3 img[src*="swati-ravi"] {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.people-page-section-3 img[src*="rising-star"] {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.people-page-section-3 img[src*="zip-zaap-zoom"] {
  width: 80%;
  height: auto;
  object-fit: contain;
}

/* Modal */
#dataModal {
  background: var(--black);
}

#dataModal .modal-content {
  background: #1a1a1a;
}

#dataModal .modal-body {
  padding: 32px;
}

#dataModal #modalName {
  color: var(--orange);
  text-align: left;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-dinbold);
  margin-bottom: 8px;
}

#dataModal #modalRole {
  color: var(--white);
  text-align: left;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--font-dinmedium);
}

#dataModal #modalDescription {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--font-dinpro);
  margin-top: 30px;
  white-space: pre-line;
  color: var(--white);
}

#dataModal .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f6821f' viewBox='0 0 16 16'><path d='M2 2l12 12M14 2L2 14' stroke='%23f6821f' stroke-width='2' stroke-linecap='round'/></svg>");
}

/* Contact */
.contact-page-section {
  min-height: 100vh;
  padding: 5em 0 5em 0;
  background: var(--yellow);
  display: flex;
  align-items: center;
}

/* Contact Bubble Container */
.contact-bubble-container {
  position: relative;
  width: 490px;
  height: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page-section .contact-left-content {
  position: relative;
  height: 490px;
  width: 490px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--blue);
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.contact-page-section .contact-left-content p {
  color: var(--white);
  font-size: 45px;
  line-height: 45px;
  font-weight: 800;
  font-family: var(--font-dinblackalt);
}

.contact-page-section .contact-left-content .contact-left-content-quote-left-img {
  position: relative;
  display: inline-block;
  left: -10%;
}

.contact-page-section .contact-left-content .contact-left-content-quote-right-img {
  position: relative;
  display: inline-block;
  left: 70%;
}

.contact-page-section .contact-right-content p {
  font-size: 25px;
  line-height: 1.3;
  font-family: var(--font-dinpro);
}

.contact-form {
  margin: 60px 0 0 0;
  background: transparent;
  padding: 30px;
  border-radius: 8px;
}

.contact-submit-btn {
  position: relative;
  display: inline-flex;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-submit-btn .spinner {
  animation: rotate 1s linear infinite;
}

.contact-submit-btn .path {
  stroke: var(--white);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.contact-submit-btn:hover {
  background-color: #0056b3;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

label {
  font-size: 22px;
  /* font-size: 18px; */
  font-family: var(--font-dinpro);
}

input,
textarea {
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: 0px;
  font-size: 18px;
  outline: none;
  transition: border-color 0.3s ease;
  background: transparent;
  width: fill-available;
  width: -webkit-fill-available;
}

input:focus,
textarea:focus {
  border-color: var(--white);
}

.submit-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Contact Forms Submission */
.form-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  pointer-events: none;
}

.form-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-submit-container .responseMessage {
  display: none;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}

.form-submit-container .responseMessage.success {
  color: #28a745;
  background-color: #e6ffed;
}

.form-submit-container .responseMessage.error {
  color: #dc3545;
  background-color: #ffebee;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}