* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* ============= HERO SECTION ====================  */
.hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top left,
      #1e3a5f 0%,
      #0b1d33 45%,
      #020b18 100%);
  display: flex;
  align-items: center;
  padding: 50px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.hero-badge {
  display: inline-block;
  background: rgba(30, 94, 255, 0.15);
  color: #6aa8ff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid #6a88ff;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 56px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 500;
}

.hero-content h1 span {
  color: #4fa3ff;
}

.hero-desc {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  color: #b8c7dc;
  max-width: 650px;
}

.hero-point {
  margin: 25px 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #dbe7ff;
  display: flex;
  line-height: 1.3;
  gap: 10px;
  align-items: center;
}

.hero-point i {
  color: #4fa3ff;
  font-size: 19px;
  font-weight: 700;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.btn-primary {
  background: linear-gradient(90deg, #1e5eff, #3b82f6);
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e5edff;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Right Image */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  background: #ffffff;
  max-width: 900px;
  height: 350px;
  object-fit: cover;
  border-radius: 18px;
  /* box-shadow: 0 15px 30px rgb(38, 36, 36); */
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

/* ============== AMIMATION =================== */
/* ================= LEFT CONTENT ANIMATION ================= */

.hero-content>* {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content>*.hc-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= IMAGE SCALE ON PAGE LOAD ================= */

.hero-image img {
  transform: scale(0.88);
  opacity: 0;
  transition: transform 1.4s ease, opacity 1.4s ease;
}

.hero-image img.img-loaded {
  transform: scale(1);
  opacity: 1;
}

/* ================= BUTTON HOVER EFFECTS ================= */

/* Primary button */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #1a4fff, #2563eb);
}

.btn-primary::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(6px);
}

/* Secondary button */
.btn-secondary {
  transition: background 0.35s ease, border 0.35s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ========ABOUT ==================== */
.about {
  background: #ffffff;
  padding: 60px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header span {
  color: #3b82f6;
  /* Bootstrap primary */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

}

.about-header h2 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  /* Bootstrap dark */
}

/* Row */
.about-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.about-desc {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-box {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon-box.blue {
  background: #e0edff;
  color: #2563eb;
  font-size: 28px;
}

.icon-box.purple {
  background: #ece9ff;
  color: #6366f1;
  font-size: 28px;
}

.about-item h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 6px;
}

.about-item p {
  font-size: 15px;
  color: #64748b;
}

.about-link {
  display: inline-block;
  margin-top: 15px;
  color: #2563eb;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

/* Image */
.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.35),
    0 4px 8px rgba(0, 0, 0, 0.18);
}

/* Cards */
.about-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eef2f7;
}

.card-icon {
  width: 54px;
  height: 54px;
  background: #e0edff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
}

.about-card h5 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

/* ================= ABOUT IMAGE ANIMATION ================= */

.about-image img {
  transform: scale(0.88);
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.about-image img.about-img-show {
  transform: scale(1);
  opacity: 1;
}

/* ================= ABOUT CONTENT FADE ================= */

.about-content>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content>*.about-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= BOTTOM CARDS ANIMATION ================= */

.about-card {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-card.card-show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= BOTTOM CARD HOVER SHADOW ================= */

.about-card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.35s ease;
}

/* ================= LEARN MORE LINK HOVER ================= */

.about-link {
  position: relative;
}

.about-link::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.about-link:hover::after {
  transform: translateX(6px);
}


/* Next Section */
.services-section {
  padding: 60px 20px;
  text-align: center;
  background: #f7fafc;
}

.section-tag {
  color: #2171f1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.section-desc {
  margin: 16px auto 60px;
  max-width: 620px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
}

/* cards layout */
.cards-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

/* icon */
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.icon-box.blue {
  background: #2563eb;
  color: #fff
}

.icon-box.purple {
  background: #7c3aed;
  color: #fff
}

.icon-box.cyan {
  background: #06b6d4;
  color: #fff
}

.icon-box.pink {
  background: #a855f7;
  color: #fff
}

.icon-box.green {
  background: #10b981;
  color: #fff
}

.service-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 15px;
}

.service-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* button */
.view-btn {
  margin-top: 50px;
}

.view-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}

/* ================= SCROLL ANIMATION ================= */

.service-card {
  opacity: 0;
  transform: translateY(-50px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.35s ease;
  position: relative;
}

.service-card.card-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= HOVER EFFECT ================= */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

/* icon zoom */
.service-card .icon-box {
  transition: transform 0.35s ease;
}

.service-card:hover .icon-box {
  transform: scale(1.15);
}

/* ================= LEARN MORE LINK ================= */

.service-link {
  position: absolute;
  bottom: 22px;
  left: 35px;
  opacity: 0;
  transform: translateY(8px);
  font-size: 14.5px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* show only on hover */
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* arrow move */
.service-link:hover {
  color: #1d4ed8;
}

.service-link:hover::after {
  transform: translateX(6px);
}

.service-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

/* responsive */
@media(max-width:900px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Next section */
.industry-section {
  padding: 60px 20px;
  text-align: center;
}

.industry-tag {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.industry-title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

.industry-desc {
  max-width: 620px;
  margin: 16px auto 60px;
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
}

/* cards */
.industry-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.industry-card {
  background: #fff;
  padding: 38px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

/* icon */
.industry-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blue-bg {
  background: #e0ecff;
  color: #2563eb;
}

.green-bg {
  background: #dcfce7;
  color: #16a34a;
}

.red-bg {
  background: #fee2e2;
  color: #dc2626;
}

.purple-bg {
  background: #f3e8ff;
  color: #9333ea;
}

.blue-back {
  background: #edf3ff;
  border: 1px solid rgba(37, 99, 235, 0.25)
}

.green-back {
  background: #ecfdf2;
  border: 1px solid rgba(22, 163, 74, 0.25)
}

.red-back {
  background: #ffeded;
  border: 1px solid rgba(220, 38, 38, 0.25)
}

.purple-back {
  background: #f8f1ff;
  border: 1px solid rgba(147, 51, 234, 0.25)
}

.industry-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 15px;
}

.industry-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* link */
.explore-link {
  margin-top: 50px;
}

.explore-link a {
  color: #2563eb;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ================= SCROLL ANIMATION ================= */

.industry-card {
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  position: relative;
}

/* left cards */
.industry-card.from-left {
  transform: translateX(-70px);
}

/* right cards */
.industry-card.from-right {
  transform: translateX(70px);
}

.industry-card.card-show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= HOVER EFFECT ================= */

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.16);
}

/* icon zoom */
.industry-icon {
  transition: transform 0.35s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.12);
}

/* ================= LEARN MORE LINK ================= */

.industry-link {
  position: absolute;
  bottom: 24px;
  left: 32px;
  opacity: 0;
  transform: translateY(8px);
  font-size: 14.5px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.industry-card:hover .industry-link {
  opacity: 1;
  transform: translateY(0);
}

.industry-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.industry-link:hover::after {
  transform: translateX(6px);
}

/* ================= EXPLORE LINK ================= */

.explore-link a i {
  transition: transform 0.3s ease;
}

.explore-link a:hover i {
  transform: translateX(6px);
}

/* responsive */
@media(max-width:1000px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* Next section */
/* SECTION */
.results-section {
  padding: 60px 20px;
  background:
    linear-gradient(135deg, #0b1f3a 0%, #0a2540 50%, #081a2f 100%);
  color: #fff;
  overflow-x: hidden;
  text-align: center;
}

/* HEADINGS */
.results-tag {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.results-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.results-desc {
  max-width: 620px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* GRID */
.results-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.result-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 38px 35px;
  text-align: left;
  backdrop-filter: blur(6px);
}

/* CARD TEXT */
.card-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #93c5fd;
  margin-bottom: 15px;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* LIST */
.result-list {
  list-style: none;
}

.result-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ICON COLORS */
.green {
  color: #22c55e;
}

.result-blue {
  color: #3b82f6;
}

.result-green {
  color: #22c55e;
}

/* BUTTON */
.case-btn {
  margin-top: 60px;
}

.case-btn a {
  background: #2563eb;
  padding: 18px 32px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============== ANIMATION =================== */
.result-card {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.8s ease,
    opacity 0.8s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.result-card.left {
  transform: translateX(-100px);
}

.result-card.right {
  transform: translateX(100px);
}

.result-card.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.result-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-top: 22px;
}

.result-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  color: #60a5fa;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s ease;
}

.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 20px;
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover {
  box-shadow: 0 16px 22px rgba(0, 0, 0, 0.25);
}

.result-card:hover .result-link {
  opacity: 1;
  transform: translateY(0);
}

.case-btn a {
  transition: background 0.3s ease;
}

.case-btn a i {
  transition: transform 0.3s ease;
}

.case-btn a:hover {
  background: #1e40af;
}

.case-btn a:hover i {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media(max-width:900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Next section */
/* SECTION */
.resources-section {
  padding: 60px 20px;
  background: #f9fbfd;
  text-align: center;
}

/* HEADINGS */
.resources-tag {
  color: #3b82f6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.resources-title {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.resources-desc {
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.resources-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.resource-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 26px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* ICON */
.resource-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

/* ICON COLORS */
.blue {
  background: #2563eb;
}

.purple {
  background: #6366f1;
}

.pink {
  background: #a855f7;
}

.teal {
  background: #14b8a6;
}

/* CARD TEXT */
.resource-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 15px;
}

.resource-text {
  font-size: 15px;
  color: #64748b;
}

/* LINK */
.resources-link {
  margin-top: 60px;
}

.resources-link a {
  color: #2563eb;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== INITIAL STATE ===== */
.resource-card {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.3s ease;
}

/* ===== SHOW STATE ===== */
.resource-card.rc-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STAGGER DELAY ===== */
.resource-card:nth-child(1) {
  transition-delay: 0.1s;
}

.resource-card:nth-child(2) {
  transition-delay: 0.25s;
}

.resource-card:nth-child(3) {
  transition-delay: 0.4s;
}

.resource-card:nth-child(4) {
  transition-delay: 0.55s;
}

/* ===== HOVER EFFECTS ===== */
.resource-card:hover {
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.12),
    0 8px 14px rgba(37, 99, 235, 0.12);
}

.resource-card:hover .resource-icon {
  transform: scale(1.15);
}

/* ===== CARD HOVER LINK ===== */
.resource-card::after {
  content: "Explore →";
  position: absolute;
  left: 26px;
  bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
}

.resource-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BOTTOM LINK ARROW ===== */
.resources-link a i {
  transition: transform 0.3s ease;
}

.resources-link a:hover i {
  transform: translateX(6px);
}

/* Next section */

.contact-section {
  padding: 60px 20px;
  background: #ffffff;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

.contact-header .tagline {
  color: #3b82f6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-header h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin: 15px 0;
}

.contact-header p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

/* Left Form */
.contact-form-card {
  flex: 1;
  background: #f7fafc;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* Right Side */
.contact-info-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Get in Touch Card */
.get-in-touch-card {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  border-radius: 16px;
  padding: 30px;
}

.get-in-touch-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-item span {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

.info-item p {
  font-size: 15px;
  font-weight: 500;
}

/* Schedule Card */
.schedule-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 26px;
}

.schedule-icon {
  width: 70px;
  height: 50px;
  border-radius: 10px;
  background: #e0edff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.schedule-card h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #0f172a;
}

.schedule-card p {
  font-size: 15px;
  line-height: 1.3;
  color: #64748b;
  margin: 6px 0 15px;
}

.schedule-card a {
  font-size: 15px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
