/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f5f6f7;
}

/* === Date Picker === */
.datepicker-date-display {
  background-color: #0950c0 !important;
  color: #fff !important;
}

.datepicker-table td.is-selected {
  background-color: #dbe7fb !important;
}

.datepicker-table td:hover,
.datepicker-table td:active {
  background-color: #dbe7fb !important;
  border-radius: 50%;
}

.datepicker-table th {
  color: #0950c0 !important;
  font-weight: 600;
}

.datepicker-day-button {
  color: #333;
}

.month-prev:active,
.month-next:active {
  background-color: #dbe7fb !important;
}

.datepicker-table td.is-outside-current-month .datepicker-day-button,
.datepicker-table td.is-disabled .datepicker-day-button{
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* === Time Picker === */
.timepicker-digital-display {
  background-color: #0950c0 !important;
  color: #fff !important;
}

.timepicker-analog-display {
  background-color: #fff !important;
}

.timepicker-canvas line,
.timepicker-canvas-bg {
  stroke: #0950c0 !important;
  fill: #2d69ca;
}

.timepicker-canvas-bearing {
  background-color: #0950c0 !important;
  fill: #2d69ca;
}

.timepicker-tick.active,
.timepicker-tick:hover {
  background-color: #0950c0 !important;
  color: white !important;
  border-radius: 50%;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done,
.timepicker-close {
  color: #0950c0 !important;
}
.dropdown-content li > a,
.dropdown-content li > span {
  color: #0950c0 !important;
}

/* Logo */
.logo-img {
  height: 64px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .logo-img {
    height: 46px;
  }
}

/* Layout & Shared Components */
.content-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Toast */
.new-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 95%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background-color: #f5f5f5;
  padding: 16px 24px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 1;
  transition: top 1s ease, opacity 1s ease;
}

/* Hidden state */
.new-toast.hide-toast {
  top: -50%;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .new-toast {
    top: 75px;
  }
}
.new-toast .img-container {
  display: flex;
  align-items: center;
  font-size: 36px;
}

.new-toast .message-container {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #061c3d;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 104px;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(
    180deg,
    rgba(6, 28, 61, 0.95) 0%,
    rgba(6, 28, 61, 0.85) 100%
  );
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -1.5%;
  color: #ffffff;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 264px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  padding: 32px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item.active {
  font-weight: 800;
}

.nav-item.active::after {
  width: 100%;
}

/* Buttons */
.cta-button,
.demo-form .form-submit {
  background: #0b63e5;
  border: none;
  border-radius: 7px;
  padding: 0 32px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.demo-form .form-submit:hover {
  background: #0950c0;
}

/* Form Controls States */
.form-input::placeholder,
.form-select,
.form-textarea::placeholder {
  color: #838e9e;
  font-weight: 400;
}

/* Mobile Menu Button */
button.menu-btn:focus {
  background-color: transparent;
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

.menu-btn .menu-line {
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-btn.active .menu-line:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
}

.menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active .menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) translateX(-6px);
}

/* Navigation Responsive Styles */
@media screen and (max-width: 1024px) {
  .navbar {
    height: 100px;
  }

  .nav-content {
    gap: 80px;
  }

  .nav-links {
    gap: 24px;
  }

  .logo {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .nav-container {
    height: 100%;
    padding: 0 16px;
  }

  .nav-content {
    gap: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: -120vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 28, 61, 0.98);
    backdrop-filter: blur(10px);
    padding-top: 100px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links.active {
    top: 0;
  }

  .nav-item::after {
    bottom: 12px;
    height: 2px;
  }

  .nav-links .nav-item {
    font-size: 24px;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .nav-links.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active .nav-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-links.active .nav-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-links.active .nav-item:nth-child(3) {
    transition-delay: 0.5s;
  }

  .logo {
    font-size: 28px;
  }

  .cta-button {
    display: none;
  }

  .menu-btn {
    display: flex;
    margin-left: 16px;
  }
}

/* Desktop Sections */

/* Hero Section */
.hero-section {
  background-image: linear-gradient(
      180deg,
      rgba(6, 28, 61, 0.65) 0%,
      rgba(6, 28, 61, 0.85) 100%
    ),
    url("../images/background.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.hero-section .text-container {
  max-width: 665px;
}

.hero-section .text-container h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.22;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 0;
  text-transform: capitalize;
}

.hero-section .text-container p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.58;
  color: #ffffff;
  margin: 0;
}

/* Form Card */
.form-card {
  max-width: 536px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 24px 56px rgba(6, 28, 61, 0.12);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -1.2%;
  color: #061c3d;
  margin: 0;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group .modal {
  margin-top: 20px;
}

.date-time {
  display: flex;
  gap: 16px;
}

.input-error {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 4px;
  margin-left: 15px;
  display: none;
}

.full-span {
  grid-column: span 2;
}

.demo-form .form-input,
.demo-form .form-select,
.demo-form .form-textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #838e9e;
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 5px;
  padding: 12px 18px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}

.form-input,
.form-select {
  height: 48px;
}

.form-textarea {
  resize: none;
  height: 111px;
}

.demo-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%23838E9E' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option:not([disabled]) {
  color: #061c3d;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0b63e5;
  color: #061c3d;
}

/* Service Section */
.service-section {
  background-color: #f5f6f7;
  padding: 110px 20px;
  position: relative;
  z-index: 0;
}

.service-section .text-container {
  max-width: 536px;
  gap: 24px;
  margin: auto 0;
}

.service-section .text-container h2 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -1.5%;
  color: #061c3d;
  margin: 0;
  text-align: left;
}

.service-section .text-container p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44;
  color: #061c3d;
  margin: 0;
  text-align: justify;
}

/* Feature Cards */
.cards-container {
  width: 100%;
  max-width: 665px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  column-gap: 24px;
  row-gap: 25px;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.feature-card {
  max-width: 312px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.12);
}

.icon-container {
  background: #f0f5ff;
  border-radius: 8px;
  padding: 16px;
  padding-bottom: 12px;
  width: fit-content;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.card-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  color: #061c3d;
  margin: 0;
}

.card-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #42526b;
  margin: 0;
}

/* Values Section */
.values-section {
  background-color: #061c3d;
  padding: 100px 20px;
  position: relative;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
}

.values-section .content-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.values-section .text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Values Header */
.values-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 0;
  max-width: 1320px;
}

.values-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  max-width: 648px;
}

/* Values Cards */
.values-section .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

.feature-card-2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 32px;
  border: 1px solid rgba(230, 232, 236, 0.5);
  box-shadow: 0px 12px 56px 0px rgba(6, 28, 61, 0.12),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature-card-2 .icon-container {
  background: #f0f5ff;
  border-radius: 10px;
  padding: 20px;
  width: fit-content;
  height: fit-content;
  margin: 0;
}

.feature-card-2 .content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
}

.feature-card-2 h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  color: #061c3d;
  margin: 0;
  width: 460px;
}

.feature-card-2 p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
  width: 460px;
}

/* Background Shapes */
.values-section::before {
  content: "";
  position: absolute;
  width: 671.79px;
  height: 828.02px;
  top: -8%;
  left: -100px;
  background: url("../images/Shape01.svg") no-repeat center center;
  background-size: contain;
  border-radius: 40px;
  z-index: -1;
}

.values-section::after {
  content: "";
  position: absolute;
  width: 671.79px;
  height: 828.02px;
  bottom: 0;
  right: -100px;
  background: url("../images/Shape02.svg") no-repeat center center;
  background-size: contain;
  border-radius: 40px;
  z-index: -1;
}

/* Responsive Styles */

/* Desktop - Large (1440px) */
@media screen and (max-width: 1440px) {
  .values-section::before,
  .values-section::after {
    width: 46.65vw;
    height: 57.5vw;
  }
  .values-section::before {
    left: -7vw;
  }
  .values-section::after {
    right: -7vw;
  }
  .values-section .content-container {
    max-width: 90%;
    gap: 60px;
  }
  .values-section .cards-container {
    gap: 24px;
  }
  .feature-card-2 {
    padding: 32px;
    gap: 24px;
  }
  .feature-card-2 h3,
  .feature-card-2 p {
    width: 100%;
  }
  .feature-card-2 h3 {
    font-size: 20px;
  }
}

/* Desktop - Medium (1024px) */
@media screen and (max-width: 1024px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    padding: 120px 0 160px;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 60px;
  }

  .hero-section .text-container {
    text-align: center;
    max-width: 100%;
  }

  .hero-section .text-container h1 {
    font-size: 48px;
  }

  .hero-section .text-container p {
    font-size: 20px;
    text-align: center;
  }

  .form-card {
    max-width: 480px;
    padding: 24px;
  }

  .service-section {
    padding: 120px 20px;
  }

  .service-section .text-container {
    max-width: 450px;
  }

  .service-section .text-container h2 {
    font-size: 48px;
  }

  .service-section .text-container p {
    font-size: 16px;
  }

  .cards-container {
    max-width: 500px;
  }

  .feature-card {
    max-width: 280px;
    padding: 20px;
    gap: 16px;
  }
}

/* Tablet & Mobile (768px) */
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 0 140px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .hero-section .content-container {
    padding: 0;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 48px;
    padding: 0 16px;
  }

  .hero-section .text-container {
    text-align: center;
    max-width: 100%;
  }

  .hero-section .text-container h1 {
    font-size: 40px;
  }

  .hero-section .text-container p {
    font-size: 18px;
    text-align: center;
  }

  .form-card {
    width: 95%;
    padding: 20px;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  .demo-form .form-submit {
    height: 44px;
    font-size: 14px;
  }

  .service-section {
    padding: 60px 0 80px;
  }

  .service-section .content-container {
    max-width: 100%;
    flex-direction: column;
    gap: 48px;
  }

  .service-section .text-container {
    max-width: 100%;
    text-align: center;
  }

  .service-section .text-container h2 {
    font-size: 40px;
    text-align: center;
  }

  .service-section .text-container p {
    text-align: center;
  }

  .cards-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .card-container:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-card {
    max-width: 100%;
    text-align: center;
  }

  .icon-container {
    margin: auto;
  }

  .card-content p {
    width: 100%;
  }

  .values-section {
    padding: 60px 0 100px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .values-section .content-container {
    max-width: 100%;
    gap: 48px;
  }

  .values-section .cards-container {
    grid-template-columns: 1fr;
  }

  .feature-card-2 {
    padding: 24px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .feature-card-2 .content {
    text-align: center;
  }

  .feature-card-2 .icon-container {
    padding: 16px;
  }
}

/* Why Us Section */
.why-us-section {
  background-color: #f5f6f7;
  padding: 100px 20px;
  position: relative;
  z-index: 0;
}

.why-us-section .content-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 136px;
}

.why-us-section .left-content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.why-us-section .text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-section .text-content h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -2%;
  color: #061c3d;
  margin: 0;
  width: 536px;
}

.why-us-section .text-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
  width: 536px;
}

.stack-container {
  background: #f8fbff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0px 12px 56px 0px rgba(6, 28, 61, 0.12);
}

.feature {
  display: flex;
  gap: 20px;
}

.feature .icon-container {
  background: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #061c3d;
  margin: 0;
  width: 412px;
}

.feature p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
  width: 412px;
}

.divider {
  width: 472px;
  height: 1px;
  background: rgba(6, 28, 61, 0.12);
}

.right-content {
  width: 648px;
  height: 648px;
}

.why-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1440px) {
  .why-us-section {
    padding: 120px 20px;
  }

  .why-us-section .content-container {
    max-width: 90%;
    gap: 80px;
  }

  .why-us-section .text-content h2 {
    font-size: 48px;
    width: 100%;
  }

  .why-us-section .text-content p,
  .feature h3,
  .feature p {
    width: 100%;
  }

  .divider {
    width: 100%;
  }

  .right-content {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .why-us-section {
    padding: 40px 0 80px;
  }

  .why-us-section .content-container {
    max-width: 100%;
    flex-direction: column-reverse;
    gap: 48px;
  }

  .why-us-section .text-content {
    text-align: center;
  }

  .why-us-section .text-content h2 {
    font-size: 40px;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .right-content {
    display: none;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
  padding: 100px 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.pricing-section .content-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Pricing Text Content */
.pricing-section .text-container {
  flex: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-section .text-container h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -2%;
  color: #061c3d;
  margin: 0;
}

.pricing-section .text-container p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44;
  color: #061c3d;
  margin: 0;
}

.pricing-section .text-container .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  max-width: 50%;
}

/* Pricing Card */
.pricing-card {
  flex: 1;
  max-width: 424px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.12);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card .divider {
  width: 100%;
  height: 4px;
  background: #0b63e5;
  border-radius: 20px 20px 0 0;
  margin-bottom: -8px;
}

.pricing-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-card .icon-container {
  background: #f0f5ff;
  border-radius: 8px;
  padding: 20px;
  width: fit-content;
}

.pricing-card .icon-container img {
  width: 40px;
  height: 40px;
}

.pricing-card .price-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card .price {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
  letter-spacing: -2%;
  color: #0b63e5;
  margin: 0;
}

.pricing-card .period {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
}

.pricing-card .description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item .check-container {
  background: #f0f5ff;
  border-radius: 100px;
  padding: 5px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
  margin: 0;
}

/* Responsive Styles */

/* Desktop - Large (1440px) */
@media screen and (max-width: 1440px) {
  .pricing-section .content-container {
    max-width: 90%;
  }

  .pricing-section .text-container h2 {
    font-size: 48px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

/* Tablet & Mobile (768px) */
@media screen and (max-width: 768px) {
  .pricing-section {
    padding: 60px 0 80px;
  }

  .pricing-section .content-container {
    max-width: 100%;
    flex-direction: column;
    gap: 48px;
    padding: 0 16px;
    align-items: center;
  }

  .pricing-section .text-container {
    max-width: 100%;
    text-align: center;
  }

  .pricing-section .text-container h2 {
    font-size: 40px;
    text-align: center;
  }

  .pricing-section .text-container p {
    text-align: center;
  }

  .pricing-section .text-container .cta-button {
    margin: 8px auto 0;
    max-width: none;
  }

  .pricing-card {
    width: 85%;
    max-width: 424px;
  }

  .pricing-card .header {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .pricing-card .price-info {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

/* Schedule Section */
.schedule-section {
  background-color: #061c3d;
  padding: 120px 20px;
  position: relative;
  z-index: 0;
}

/* Layout */
.schedule-section .content-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* Main Content */
.schedule-section .main-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 560px;
}

.schedule-section .text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schedule-section .text-content h2 {
  font-family: "Inter", sans-serif;
  text-wrap: no-wrap;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 0;
}

.schedule-section .text-content p {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: #ffffff;
  margin: 0;
}

/* Calendar Content */
.schedule-section .calendar-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-section .calendar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA Button */
.schedule-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0b63e5;
  border: none;
  border-radius: 7px;
  padding: 0 32px;
  height: 48px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.schedule-section .cta-button:hover {
  background: #0950c0;
}

/* Responsive Styles */
@media screen and (max-width: 1440px) {
  .schedule-section .text-content h2 {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .schedule-section {
    padding: 60px 0 80px;
  }

  .schedule-section .content-container {
    flex-direction: column;
    gap: 48px;
    padding: 0 16px;
  }

  .schedule-section .main-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .schedule-section .text-content h2 {
    font-size: 40px;
    text-align: center;
  }

  .schedule-section .text-content p {
    text-align: center;
  }

  .schedule-section .calendar-content {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
  }
}
/* Footer Section */
.footer-section {
  background-color: #fff;
  padding: 80px 20px 40px;
  position: relative;
  z-index: 0;
}

/* Layout */
.footer-section .content-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-section .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section .third {
  width: 140px;
}

/* Logo */
.footer-section .footer-logo {
  font-family: Lexend;
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -1.5%;
}

/* Navigation */
.footer-section .footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}

.footer-section .footer-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  color: black;
}

.footer-section .footer-nav a:hover {
  color: #0b63e5;
}

/* Copyright */
.footer-section .footer-copy {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1e2833;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .footer-section {
    padding: 30px 0 50px;
  }

  .footer-section .top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-section .footer-nav {
    justify-content: space-between;
  }

  .footer-section .third {
    display: none;
  }

  .footer-section .footer-logo {
    font-size: 20px;
  }

  .footer-section .footer-copy {
    font-size: 13px;
  }
}
