:root {
  --border-radius: 30px;
  --border-width: 3px;
  --bg-color: #05314f;
  --text-color: #fff;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

/* Custom Cursor Animation */
.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* =========================
   HEADER & NAVBAR STYLES
========================= */
/* Poppins font for all navbar elements */
.navbar-nav,
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle,
.navbar-nav .dropdown-item,
.header_btn_opt,
.consultant-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500 !important;
}

/* Navbar collapse */
.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    background: none;
  }
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1em;
  height: 1em;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.navbar-toggler-icon::before {
  top: 0;
}
.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon div {
  opacity: 0;
}

/* Consultant button */
.consultant-btn {
  position: relative;
  padding: 12px 30px;
  font-weight: 900 !important;
  color: var(--text-color);
  background: var(--bg-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.consultant-btn::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  right: calc(-1 * var(--border-width));
  bottom: calc(-1 * var(--border-width));
  background: linear-gradient(
    270deg,
    #ff0055,
    #ff9900,
    #ffee00,
    #33ff00,
    #00ffee,
    #3300ff,
    #ff00ff,
    #ff0055
  );
  background-size: 800% 800%;
  border-radius: calc(var(--border-radius) + var(--border-width));
  z-index: -1;
  animation: rainbowBorder 5s linear infinite;
}
@keyframes rainbowBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navbar items spacing */
@media (min-width: 992px) and (max-width: 1200px) {
  ul > li > a {
    padding: 5px !important;
  }
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .navbar-nav li > a {
    padding: 10px;
  }
  .nav-item.d-lg-none .consultant-btn {
    padding: 8px 20px;
    font-size: 13px;
    width: 50% !important;
    margin: 10px auto;
  }
}

/* =========================
   DROPDOWN STYLES
========================= */
.material-dropdown {
  position: relative;
}

.material-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  display: none;
  padding: 5px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  list-style: none;
}

.material-dropdown:hover > .dropdown-menu,
.material-dropdown:focus-within > .dropdown-menu {
  display: block;
}

.material-dropdown .dropdown-item {
  position: relative;
  padding: 10px 22px;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.material-dropdown .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.material-dropdown .dropdown-submenu {
  position: relative;
}

.material-dropdown .dropdown-submenu > a .arrow {
  float: right;
  transition: transform 0.3s ease;
}

.material-dropdown .dropdown-submenu .dropdown {
  top: 0;
  left: 100%;
  position: absolute;
  display: none;
  min-width: 180px;
  padding: 5px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  list-style: none;
}

.material-dropdown .dropdown-submenu:hover > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}

.material-dropdown .dropdown-submenu:hover > a .arrow {
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .material-dropdown .dropdown-menu {
    position: relative;
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .material-dropdown.active > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .material-dropdown .dropdown-submenu .dropdown {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .material-dropdown .dropdown-submenu.active > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding-left: 1rem;
  }

  .material-dropdown .dropdown-submenu.active > a .arrow {
    transform: rotate(90deg);
  }
}

/* =========================
   SLIDER SECTION
========================= */
.lead {
  font-size: 40px;
}

.slider_head_text {
  color: #031246;
  font-size: 40px;
}

.slider-one {
  position: relative;
  overflow: visible;
}

.slider-container {
  position: relative;
  width: 100%;
  min-height: 450px;
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  border-radius: 0 0 80px 80px;
  z-index: -1;
}

.slider-content {
  position: relative;
  padding: 50px 100px;
  color: #fff;
}

.slider-offer {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #3a4294;
  border-radius: 20px;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

/* Base button style */
.btn-rainbow {
  font-size: 1rem;
  padding: 0.85em 1.345em;
  font-weight: bold;
  border-radius: 0.5em;
  cursor: pointer;
  letter-spacing: 2px;
  max-width: 10rem;
  border: none;
  outline: none;
}

/* White text */
.clr-white {
  color: white;
}

/* Rainbow Button */
.rainbow {
  border: 3px solid;
  background: white;
  border-image-slice: 10%;
  border-image-width: 0.275em;
  border-image-repeat: stretch;
  border-image-source: linear-gradient(
    to left,
    violet,
    indigo,
    blue,
    green,
    yellow,
    orange,
    red
  );
  color: black;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: all 0.3s ease-in-out;
}

.rainbow:hover {
  animation: rainbow 0.55s infinite ease-in-out;
  transform: translateY(-3px);
}

/* Rainbow border animation */
@keyframes rainbow {
  0% {
    border-image-source: linear-gradient(
      to left,
      violet,
      indigo,
      blue,
      green,
      yellow,
      orange,
      red
    );
  }
  14% {
    border-image-source: linear-gradient(
      to left,
      red,
      violet,
      indigo,
      blue,
      green,
      yellow,
      orange
    );
  }
  28% {
    border-image-source: linear-gradient(
      to left,
      orange,
      red,
      violet,
      indigo,
      blue,
      green,
      yellow
    );
  }
  42% {
    border-image-source: linear-gradient(
      to left,
      yellow,
      orange,
      red,
      violet,
      indigo,
      blue,
      green
    );
  }
  57% {
    border-image-source: linear-gradient(
      to left,
      green,
      yellow,
      orange,
      red,
      violet,
      indigo,
      blue
    );
  }
  71% {
    border-image-source: linear-gradient(
      to left,
      blue,
      green,
      yellow,
      orange,
      red,
      violet,
      indigo
    );
  }
  85% {
    border-image-source: linear-gradient(
      to left,
      indigo,
      blue,
      green,
      yellow,
      orange,
      red,
      violet
    );
  }
  100% {
    border-image-source: linear-gradient(
      to left,
      violet,
      indigo,
      blue,
      green,
      yellow,
      orange,
      red
    );
  }
}

@media (max-width: 992px) {
  .slider-offer {
    bottom: -130px;
    width: 95%;
    padding: 20px 35px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    min-height: 350px;
  }

  .slider-content {
    padding: 30px 20px;
  }

  .slider-offer {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: 95%;
  }

  .lead {
    font-size: 25px;
  }

  .slider_head_text {
    font-size: 25px;
  }
}

/* =========================
   Banner Effect
========================= */

.poster {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.poster-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Optional overlay */
  z-index: 1;
}

.layer {
  position: relative;
  z-index: 2;
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   DESIGN SECTION
========================= */
.gap-section {
  margin-top: 50px;
}

.design-section {
  background-color: #fff;
  /* padding-top: 3rem; */
}

.image-box {
  height: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-primary {
  color: #3a4268;
}

@media screen and (min-width: 998px) and (max-width: 2000px) {
  .design-section {
    padding-top: 3rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 997px) {
  .design-section {
    padding-top: 7rem;
  }
  .design-section {
    font-size: 1rem;
  }
  .read_more {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .image-box {
    height: 300px;
  }

  .design-section {
    font-size: 1rem;
  }
  .read_more {
    font-size: 16px;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  background-color: #f3f4f8;
}

.card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 10px;
}

.card-img-top {
  height: 240px;
  object-fit: cover;
}

.card-text ul {
  list-style-type: none;
  padding-left: 0;
}

.card-text li {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

/* =========================
   ROBOT ANIMATION
========================= */
#robot {
  position: relative;
  height: 78vh;
  width: 20vh;
  animation: robot 0.7s infinite ease-in-out;
  z-index: 2;
}

#robot div {
  position: absolute;
  transform-origin: 50% 0;
}

#robot .r div {
  background: #29516d;
}

#robot .l div {
  background: #326384;
}

#robot .leg.r,
#robot .arm.l {
  animation: trans 0.7s 0.35s infinite linear;
}

#robot .leg.l,
#robot .arm.r {
  animation: trans 0.7s infinite linear;
}

#robot .head {
  top: 10vh;
  left: 5vh;
  width: 9vh;
  height: 10vh;
  margin: 0 auto;
  transform-origin: 20% 80%;
  animation: head 0.7s infinite linear;
  background: #326384;
}

#robot .arm {
  left: 5vh;
  top: 20.5vh;
  width: 8vh;
  height: 5.5vh;
}

#robot .arm div {
  top: 100%;
  left: 0;
  width: 100%;
  height: 10vh;
  box-sizing: border-box;
  transform: rotate(5deg);
  animation: arms1 0.7s infinite linear;
}

#robot .arm div div {
  animation: arms2 0.7s infinite linear;
}

#robot .arm.l div {
  animation-delay: -0.35s;
}

#robot .leg {
  top: 45vh;
  left: 5vh;
  width: 8vh;
  height: 4vh;
}

#robot .leg div {
  width: 100%;
  height: 15vh;
  top: 100%;
  animation: legs1 0.7s infinite linear;
}

#robot .leg div div {
  animation: legs2 0.7s infinite linear;
}

#robot .leg.r div {
  animation-delay: -0.35s;
}

@keyframes robot {
  0%,
  50%,
  100% {
    transform: translateY(0vh) rotate(7deg);
  }
  15%,
  65% {
    transform: translateY(-4vh) rotate(5deg);
  }
}

@keyframes head {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  25%,
  75% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

@keyframes trans {
  0%,
  100% {
    transform: translateX(0vh);
  }
  50% {
    transform: translateX(3vh);
  }
}

@keyframes arms1 {
  0%,
  100% {
    transform: rotate(50deg);
  }
  50% {
    transform: rotate(-70deg);
  }
}

@keyframes arms2 {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(-100deg);
  }
}

@keyframes legs1 {
  0%,
  100% {
    transform: rotate(60deg);
  }
  40% {
    transform: rotate(-90deg);
  }
}

@keyframes legs2 {
  0%,
  100% {
    transform: rotate(2deg);
  }
  33% {
    transform: rotate(150deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.robot-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 766px) {
  .robot-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* =========================
   PROCESS STEPS
========================= */
.section_title {
  font-size: 40px;
  font-weight: 500;
  color: #05314f;
}

.step_label {
  color: #326384;
  font-weight: 500;
}

.step-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .section_title {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .step-icon {
    height: 70px;
    width: 70px;
  }

  .section_title {
    font-size: 35px;
  }
}

/* =========================
   SPECIALITY & REVIEW SECTIONS
========================= */
.speciality_section_head_text {
  font-weight: 600;
  color: #031246;
  font-size: 40px;
}

.review_section_head {
  font-weight: 600;
  color: #031246;
  font-size: 40px;
}

@media screen and (max-width: 992px) {
  .speciality_section_head_text {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .review_section_head {
    font-weight: 500;
    font-size: 20px;
  }
}

/* =========================
   CLIENT SCROLLER
========================= */

.client-scroller-section {
  /* background: #f8f9fa; */
  padding: 60px 0;
}

.scroller-container {
  --slide-width: clamp(140px, 12vw, 220px);
  --slide-gap: 2rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroller-wrapper {
  display: flex;
  align-items: center;
  gap: var(--slide-gap);
  animation: scrollLeft 25s linear infinite;
  width: max-content;
}

.scroller-slide {
  flex: none;
  width: var(--slide-width);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.4s ease;
}

.scroller-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.scroller-slide:hover {
  /* filter: grayscale(0%); */
  opacity: 1;
  transform: scale(1.08);
}

.scroller-container::before,
.scroller-container::after {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.scroller-container::before {
  left: 0;
  /* background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%); */
  background: linear-gradient(90deg, #ffff 0%, transparent 100%);
}

.scroller-container::after {
  right: 0;
  /* background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%); */
  background: linear-gradient(270deg, #ffff 0%, transparent 100%);
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.scroller-container:hover .scroller-wrapper {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .scroller-slide {
    height: 80px;
  }
}

/* =========================
   REVIEW CAROUSEL
========================= */
.scroll-container {
  display: flex;
  align-items: center;
  position: relative;
}

.iner_container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.iner_container::-webkit-scrollbar {
  display: none;
}

.card_review {
  flex: 0 0 auto;
  /* width: 300px;
  height: 200px; */
  width: 571px;
  height: 175px;
  margin-right: 20px;
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  background-color: #ffff;
}

.card_review:hover {
  transform: scale(1.05);
}

/* =========================
   CONTACT FORM SECTION
========================= */
.work-together-section {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 80px 20px; */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.section-subtitle {
  color: #031246;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.work-together-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.contact-form-container-one {
  flex: 1;
  /* min-width: 300px; */
  /* max-width: 500px; */
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a1a2e;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #495057;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e5ee;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #6c63ff;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.submit-btn {
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 15px rgba(108, 99, 255, 0.3);
}

.info-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p {
  color: #6c757d;
  margin-bottom: 15px;
}

.info-card ul {
  list-style-type: none;
}

.info-card li {
  margin-bottom: 8px;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
  max-width: 900px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #031246;
  margin-bottom: 5px;
}

.stat-label {
  color: #6c757d;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .work-together-content {
    flex-direction: column;
  }

  .contact-form-container-one,
  .info-container {
    max-width: 100%;
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp_float {
  position: fixed;
  width: 30px;
  height: 30px;
  margin: 0;
  bottom: 50px;
  left: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.whatsapp_float:hover {
  transform: scale(1.3);
}

.whatsapp_float img {
  width: 35px;
  height: 35px;
}

.tawk-min-container {
  z-index: 99 !important;
}

iframe[id^="tawk_"] {
  z-index: 99 !important;
}

/* .santa-container {
  overflow: hidden !important;
} */

/* =========================
   branding-section
========================= */

.corporate-branding {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef3fc 100%);
  padding: 30px 0;
}

.section-heading {
  color: #031246;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subheading {
  max-width: 700px;
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.branding-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(3, 18, 70, 0.08);
  padding: 2.5rem;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.branding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(3, 18, 70, 0.12);
}

.section-title {
  color: #031246;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.75rem;
}

.section-title i {
  color: #326ac5;
  margin-right: 12px;
  font-size: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  background: white;
  border-left: 4px solid #326ac5;
  box-shadow: 0 5px 15px rgba(50, 106, 197, 0.1);
}

.feature-icon {
  color: #326ac5;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 106, 197, 0.1);
  border-radius: 10px;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-weight: 700;
  color: #031246;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.feature-desc {
  color: #5a6c8d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.highlight-badge {
  background: linear-gradient(135deg, #326ac5, #4a86e8);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.contact-form-container-two {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  height: 100%;
}

.form-label {
  font-weight: 600;
  color: #031246;
  margin-bottom: 5px;
}

.form-control {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #326ac5;
  box-shadow: 0 0 0 0.2rem rgba(50, 106, 197, 0.25);
}

.btn-submit {
  background: #326ac5;
  color: #fff;
  font-weight: 600;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.3s;
  font-size: 1rem;
}

.btn-submit:hover {
  background: #274f94;
}

/* Ensure both columns are perfectly aligned */
.row.align-items-center {
  align-items: stretch !important;
}

.col-12.col-md-6 {
  display: flex;
}

/* .col-12.col-md-6 > div {
  width: 100%;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .branding-card,
  .contact-form-container-two {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .section-heading {
    font-size: 24px;
  }

  .section-subheading {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.25rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .section-heading {
    font-size: 22px;
  }

  .section-subheading {
    font-size: 18px;
  }

  .corporate-branding {
    padding: 40px 0;
  }
}

/* =========================
   FOOTER
========================= */

/* Footer-section */

.site-footer {
  background-color: #031246;
  color: #fff;
  padding: 40px 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #4dabf7;
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #4dabf7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item svg {
  color: #4dabf7;
  width: 16px;
  height: 16px;
}

.hiring-text {
  margin-bottom: 15px;
  color: #ccc;
}

.hiring-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.role-btn,
.apply-all-btn {
  background-color: transparent;
  border: 1px solid #4dabf7;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.role-btn:hover,
.apply-all-btn:hover {
  background-color: #4dabf7;
}

.apply-all-btn {
  background-color: #4dabf7;
  padding: 8px 16px;
  font-size: 14px;
}

.apply-all-btn:hover {
  background-color: #3a8fd4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links > a {
  text-decoration: none;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }
}

.text-head-one {
  font-weight: 600;
  color: #031246;
  font-size: 18px;
}

.text-head-two {
  color: #031246;
  font-size: 40px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .text-head-one {
    font-weight: 500;
    font-size: 14px;
  }
  .text-head-two {
    font-size: 25px;
    font-weight: 500;
  }
}

/* =========================
   SNOW EFFECT
========================= */
#snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: white;
  text-shadow: 0 0 10px white;
  opacity: 0.8;
  animation-name: fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  user-select: none;
}

@keyframes fall {
  0% {
    transform: translateX(0) translateY(0);
    opacity: inherit;
  }
  50% {
    transform: translateX(25px) translateY(50vh);
  }
  100% {
    transform: translateX(-25px) translateY(110vh);
    opacity: 0;
  }
}

/* =========================
   SANTA ANIMATION STYLES 
========================= */

.santa-container {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(
    211,
    47,
    47,
    0.85
  ); /* Increased opacity for better contrast */
  border-radius: 1rem;
  /* overflow: visible;  */
  /* overflow: hidden; */
  position: relative;
}

.santa-animation {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  position: relative;
  transform: scale(1); /* Full scale */
}

.santa-animation li {
  display: inline-block;
}

/* HOHOHO text containers */
.santa-animation .hohoho {
  width: 180px; /* Increased width for better text visibility */
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  animation: txtHohoho 1.6s ease-in-out infinite alternate;
}

/* Santa container */
.santa-animation .santaclaus {
  display: block;
  margin: 0 auto;
  width: 400px;
  position: relative;
  z-index: 5;
}

/* HO HO HO text styling - made more visible */
.santa-animation .hohoho h2 {
  position: relative;
  margin: 5px 0;
  width: 100%;
  text-align: center;
}

.santa-animation .hohoho h2::before {
  text-shadow: 0px 10px 20px rgba(1, 1, 1, 0.6);
  color: #fff;
  content: "HO";
  font-size: 52px; /* Increased font size */
  line-height: 1.4em;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  display: block;
}

/* Left side HO HO HO */
.santa-animation .hohoho:first-of-type {
  text-align: right;
  padding-right: 20px;
}

.santa-animation .hohoho:first-of-type h2:nth-child(1) {
  margin-right: 40px;
  animation: txtHohohoLeft 1.6s ease-in-out infinite alternate;
}

.santa-animation .hohoho:first-of-type h2:nth-child(2) {
  margin-right: 0;
  animation: txtHohohoMiddle 1.6s ease-in-out infinite alternate;
}

.santa-animation .hohoho:first-of-type h2:nth-child(3) {
  margin-left: 40px;
  animation: txtHohohoLeft 1.6s ease-in-out infinite alternate;
}

/* Right side HO HO HO */
.santa-animation .hohoho:last-of-type {
  text-align: left;
  padding-left: 20px;
}

.santa-animation .hohoho:last-of-type h2:nth-child(1) {
  margin-left: 40px;
  animation: txtHohohoRight 1.6s ease-in-out infinite alternate;
}

.santa-animation .hohoho:last-of-type h2:nth-child(2) {
  margin-left: 0;
  animation: txtHohohoMiddle 1.6s ease-in-out infinite alternate;
}

.santa-animation .hohoho:last-of-type h2:nth-child(3) {
  margin-right: 40px;
  animation: txtHohohoRight 1.6s ease-in-out infinite alternate;
}

/* Santa Claus Styles */
.santa-animation .santaclaus > div {
  margin: 0 auto;
}

.santa-animation .santaclaus .chapeu {
  display: block;
  position: relative;
  width: 310px;
  z-index: 99;
}

.santa-animation .santaclaus .chapeu .cone-1 {
  border-left: 50px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 70px solid #d32f2f;
}

.santa-animation .santaclaus .chapeu .cone-2 {
  background-color: #d32f2f;
  border-top: 0px solid transparent;
  border-right: 340px solid #d32f2f;
  border-bottom: 100px solid transparent;
  border-color: transparent;
  box-shadow: -25px 15px 30px -5px rgba(1, 1, 1, 0.3);
  position: relative;
  left: -56px;
  top: 49px;
  transform: rotate(-15deg);
  border-radius: 30% 100% 0 100%;
}

.santa-animation .santaclaus .chapeu::after,
.santa-animation .santaclaus .chapeu::before {
  background-color: #fff;
  content: " ";
  display: block;
}

.santa-animation .santaclaus .chapeu::after {
  box-shadow: 0px -15px 40px -5px rgba(1, 1, 1, 0.4);
  height: 80px;
  margin-left: -15px;
  position: relative;
  width: 340px;
  border-radius: 0.8em;
}

.santa-animation .santaclaus .chapeu::before {
  box-shadow: 20px 20px 40px -5px rgba(1, 1, 1, 0.3);
  height: 80px;
  left: -120px;
  position: absolute;
  top: 80px;
  width: 80px;
  z-index: 111;
  border-radius: 50%;
}

.santa-animation .santaclaus .face {
  background-color: #ffccbc;
  box-shadow: 0px 0px 30px 5px rgba(1, 1, 1, 0.3);
  content: " ";
  display: block;
  height: 130px;
  position: relative;
  top: -10px;
  width: 300px;
}

.santa-animation .santaclaus > .orelhas {
  background-color: #eea2ad;
  box-shadow: 0px 0px 30px 5px rgba(1, 1, 1, 0.3);
  display: block;
  height: 60px;
  margin: 0 auto;
  position: relative;
  top: -125px;
  width: 330px;
  z-index: -1;
  border-radius: 1em 1em 2em 2em;
}

.santa-animation .santaclaus .face > .eyes {
  display: inline-block;
  height: 0px;
  margin: 20px auto 0;
  /* max-width: 160px; */
  max-width: 220px;
  padding-left: 70px;
  width: 100%;
}

.santa-animation .santaclaus .face > .eyes::before,
.santa-animation .santaclaus .face > .eyes::after {
  background-color: #111;
  content: " ";
  display: inline-block;
  /* float: left; */
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.santa-animation .santaclaus .face > .eyes::after {
  float: right;
}

.santa-animation .santaclaus .face > .nariz {
  background-color: #eea2ad;
  height: 50px;
  margin: 0 auto;
  position: relative;
  width: 70px;
  z-index: 111;
  border-radius: 50%;
}

.santa-animation .santaclaus .face > .barba {
  background-color: #ecf0f1;
  box-shadow: -10px 10px 10px -5px rgba(1, 1, 1, 0.3);
  height: 240px;
  margin: 0 auto;
  position: relative;
  top: -30px;
  width: 340px;
  left: -20px;
  transform: rotate(-20deg);
  border-radius: 0% 100% 70% 100%;
  animation: animaBarba 1.6s ease-in-out infinite alternate;
}

.santa-animation .santaclaus .face > .barba > .boca {
  height: 50px;
  left: 30px;
  margin: 0 auto;
  position: relative;
  top: 20px;
  width: 60px;
  border-radius: 50%;
  animation: hoho 1.6s ease-in-out infinite alternate;
}

/* =========================
   SANTA ANIMATIONS
========================= */

/*FadeIn and fadeOut for Hohoho texts*/
@keyframes txtHohoho {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

/*Middle Ho text on both sides*/
@keyframes txtHohohoMiddle {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

/*Hohoho on left side*/
@keyframes txtHohohoLeft {
  to {
    transform: translateX(-10px) scale(1.1);
  }
}

/*Hohoho on right side*/
@keyframes txtHohohoRight {
  to {
    transform: translateX(10px) scale(1.1);
  }
}

/*Move beard*/
@keyframes animaBarba {
  to {
    transform: rotate(-15deg);
  }
}

/*Hoho in mouth movement*/
@keyframes hoho {
  0% {
    background-color: #ecf0f1;
    box-shadow: 0px 20px 0 0 #111;
    height: 40px;
    width: 60px;
  }
  60% {
    background-color: #ecf0f1;
    box-shadow: 0px 60px 0 0 #111;
    height: 60px;
    width: 30px;
  }
  80% {
    background-color: #ecf0f1;
    box-shadow: 0px 60px 0 0 #111;
    height: 50px;
    width: 40px;
  }
  100% {
    background-color: #ecf0f1;
    box-shadow: 0px 60px 0 0 #111;
    height: 60px;
    width: 30px;
  }
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */

@media (max-width: 1200px) {
  .santa-animation {
    max-width: 800px;
    transform: scale(0.9);
  }

  .santa-animation .hohoho h2::before {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .santa-animation {
    max-width: 700px;
    transform: scale(0.8);
  }

  .santa-animation .hohoho {
    width: 150px;
  }

  .santa-animation .hohoho h2::before {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .santa-animation {
    max-width: 600px;
    transform: scale(0.7);
    flex-direction: column;
  }

  .santa-animation .hohoho {
    width: 100%;
    height: 60px;
    padding: 0;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
  }

  .santa-animation .hohoho h2 {
    display: inline-block;
    margin: 0 10px !important;
  }

  .santa-animation .hohoho h2::before {
    font-size: 36px;
  }

  .santa-animation .santaclaus {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .santa-animation {
    max-width: 500px;
    transform: scale(0.6);
  }

  .santa-animation .hohoho h2::before {
    font-size: 28px;
  }
}

