* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0056b3;
  --text: #444;
  --heading: #0056b3;
  --bg: #ffffff;
  --light: #f8f8f8;
  --border-radius: 26px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  padding: 18px 0;
  position: relative;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  font-size: 13px;
  font-weight: 700;
  color: #4d4055;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li > a:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 190px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  color: #555;
  transition: 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f3eff8;
  color: var(--primary);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #f3eff8;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Hero */
.hero-section {
  padding: 10px 0 42px;
}

.hero-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 35px 0 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-images {
  position: relative;
  min-height: 520px;
}

.dot-pattern {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#7f7f7f 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.7;
  z-index: 0;
}

.main-image-card {
  position: absolute;
  top: 35px;
  left: 70px;
  width: 430px;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
  background: #fff;
}

.main-image-card img {
  width: 100%;
  height: 345px;
  object-fit: cover;
}

.small-image-card {
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 230px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 3;
  background: white;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.small-image-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 36px;
  color: var(--heading);
  margin-bottom: 22px;
  font-weight: 700;
}

.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
}

/* Mobile dropdown support */
.nav-links .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-links {
    gap: 24px;
  }

  .about-grid {
    gap: 45px;
  }

  .main-image-card {
    width: 390px;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    max-height: 700px;
    padding: 15px 20px 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 10px;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    visibility: visible;
    max-height: 300px;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: hidden;
    transform: none;
  }

  .social-icons {
    display: none;
  }

  .hero-image-card img {
    height: 420px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 500px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 14px 0;
  }

  .logo img {
    width: 78px;
  }

  .hero-section {
    padding: 8px 0 30px;
  }

  .hero-image-card img {
    height: 300px;
  }

  .about-section {
    padding: 20px 0 50px;
  }

  .about-images {
    min-height: 420px;
  }

  .dot-pattern {
    width: 110px;
    height: 110px;
    background-size: 16px 16px;
  }

  .main-image-card {
    position: relative;
    left: 0;
    top: 20px;
    width: 100%;
  }

  .main-image-card img {
    height: 280px;
  }

  .small-image-card {
    width: 180px;
    left: 10px;
    bottom: 0;
  }

  .small-image-card img {
    height: 110px;
  }

  .about-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(94%, var(--container));
  }

  .hero-image-card {
    border-radius: 16px;
  }

  .hero-image-card img {
    height: 240px;
  }

  .about-images {
    min-height: 360px;
  }

  .main-image-card {
    border-radius: 18px;
  }

  .main-image-card img {
    height: 220px;
  }

  .small-image-card {
    width: 145px;
    border-radius: 14px;
  }

  .small-image-card img {
    height: 90px;
  }

  .about-content h2 {
    font-size: 22px;
  }
}/* =========================
   Portfolio Section
========================= */
.section-heading.center {
  text-align: center;
}

.section-heading.center h3 {
  font-size: 28px;
  color: #0056b3;
  margin-bottom: 32px;
  font-weight: 700;
}

.section-heading.center span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.section-heading.center h2 {
  font-size: 34px;
  color: #0056b3;
  font-weight: 800;
  margin-bottom: 0;
}

.portfolio-section {
  padding: 70px 0 75px;
  background: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: stretch;
}

.portfolio-box {
  background: #f7f9ff;
  border-radius: 20px;
  padding: 30px 22px;
  min-height: 145px;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.portfolio-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(58, 28, 78, 0.09);
}

.portfolio-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0056b3;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.portfolio-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #4a4a4a;
}

/* =========================
   Projects Section
========================= */
.projects-section {
  background: #f7f8ff;
  padding: 80px 0 90px;
  overflow: hidden;
}

.projects-slider-wrapper {
  position: relative;
  margin-top: 42px;
}

.projects-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
}

.projects-slider::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  scroll-snap-align: start;
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

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

.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0056b3;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.project-content {
  padding: 22px 22px 20px;
}

.project-content h3 {
  font-size: 19px;
  color: #444;
  margin-bottom: 18px;
  font-weight: 700;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 14px;
}

.feature-item i {
  color: #b3b3b3;
  font-size: 16px;
  min-width: 16px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.price-label {
  font-size: 15px;
  color: #444;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-footer h4 {
  font-size: 28px;
  color: #111;
  font-weight: 800;
  line-height: 1.2;
}

.project-btn {
  background: #0056b3;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #0056b3;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #0056b3;
}

.prev-btn {
  left: -18px;
}

.next-btn {
  right: -18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: #d7d7df;
  border-radius: 50%;
  transition: 0.3s ease;
}

.slider-dots .dot.active {
  background: #0056b3;
  transform: scale(1.15);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .project-footer h4 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .portfolio-section {
    padding: 55px 0 60px;
  }

  .projects-section {
    padding: 65px 0 70px;
  }

  .section-heading.center h3 {
    font-size: 24px;
  }

  .section-heading.center h2 {
    font-size: 28px;
  }

  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .portfolio-box {
    min-width: 220px;
    flex: 0 0 220px;
  }

  .project-card {
    flex: 0 0 78%;
    min-width: 78%;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .portfolio-box {
    min-width: 190px;
    flex: 0 0 190px;
    min-height: 130px;
    padding: 24px 18px;
  }

  .portfolio-box h4 {
    font-size: 22px;
  }

  .portfolio-icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
    margin-bottom: 14px;
  }

  .project-card {
    flex: 0 0 88%;
    min-width: 88%;
  }

  .project-image {
    height: 220px;
  }

  .project-content {
    padding: 18px;
  }

  .project-content h3 {
    font-size: 17px;
  }

  .project-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
  }

  .feature-item {
    font-size: 13px;
  }

  .project-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-btn {
    width: 100%;
  }

  .project-footer h4 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section-heading.center h3 {
    font-size: 21px;
  }

  .section-heading.center h2 {
    font-size: 24px;
  }

  .portfolio-box {
    min-width: 170px;
    flex: 0 0 170px;
  }

  .portfolio-box h4 {
    font-size: 19px;
  }

  .project-card {
    flex: 0 0 94%;
    min-width: 94%;
  }

  .project-image {
    height: 200px;
  }

  .project-features {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    margin-top: 12px;
  }
}/* =========================
   CTA SECTION
========================= */
.cta-section {
  padding: 40px 0 70px;
  background: #fff;
}

.cta-box {
  background: #f7f8ff;
  border-radius: 26px;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.cta-left h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #3d214f;
  font-weight: 800;
  max-width: 620px;
}

.cta-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-phone {
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid #0056b3;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0056b3;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(75, 34, 102, 0.12);
}

.cta-contact-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  background: #0056b3;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.cta-contact-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* =========================
   WHY CHOOSE SECTION
========================= */
.why-choose-section {
  padding: 40px 0 90px;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.why-choose-content {
  max-width: 680px;
}

.why-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #3b3b3b;
  margin-bottom: 18px;
}

.why-choose-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0056b3;
  font-weight: 800;
  margin-bottom: 22px;
}

.why-choose-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 26px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.why-list li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.5;
  color: #474747;
  font-weight: 700;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e5cad8;
  font-size: 18px;
  font-weight: 900;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  background: #0056b3;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.why-choose-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  min-height: 500px;
}

.image-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left छोटा image */
.small-card {
  width: 250px;
  height: 285px;
  margin-bottom: 20px;
}

/* Right बड़ा image */
.large-card {
  width: 300px;
  height: 430px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .cta-left h2 {
    font-size: 40px;
  }

  .why-choose-content h2 {
    font-size: 36px;
  }

  .why-list li {
    font-size: 18px;
  }

  .small-card {
    width: 220px;
    height: 260px;
  }

  .large-card {
    width: 270px;
    height: 390px;
  }
}

@media (max-width: 992px) {
  .cta-section {
    padding: 30px 0 55px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px;
  }

  .cta-left h2 {
    font-size: 34px;
    max-width: 100%;
  }

  .cta-right {
    width: 100%;
    justify-content: flex-start;
  }

  .why-choose-section {
    padding: 25px 0 70px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-content {
    max-width: 100%;
  }

  .why-choose-content h2 {
    font-size: 32px;
  }

  .why-choose-images {
    min-height: auto;
    justify-content: flex-start;
  }

  .small-card {
    width: 230px;
    height: 270px;
    margin-bottom: 0;
  }

  .large-card {
    width: 280px;
    height: 390px;
  }
}

@media (max-width: 768px) {
  .cta-box {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .cta-left h2 {
    font-size: 28px;
  }

  .cta-right {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-phone,
  .cta-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .why-tag {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .why-choose-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .why-choose-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .why-list {
    gap: 12px;
  }

  .why-list li {
    font-size: 16px;
    padding-left: 24px;
  }

  .why-list li::before {
    font-size: 16px;
  }

  .why-choose-images {
    gap: 14px;
  }

  .small-card {
    width: 42%;
    height: 240px;
  }

  .large-card {
    width: 52%;
    height: 340px;
  }

  .read-more-btn {
    min-height: 50px;
    padding: 0 22px;
  }
}

@media (max-width: 480px) {
  .cta-left h2 {
    font-size: 24px;
  }

  .cta-phone,
  .cta-contact-btn {
    min-height: 50px;
    font-size: 14px;
    padding: 0 16px;
  }

  .why-choose-content h2 {
    font-size: 24px;
  }

  .why-choose-content p {
    font-size: 14px;
  }

  .why-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .why-choose-images {
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
  }

  .small-card {
    width: 44%;
    height: 190px;
  }

  .large-card {
    width: 52%;
    height: 280px;
  }
}/* =========================
   FOOTER CTA
========================= */
.footer-cta-section {
  position: relative;
  z-index: 3;
  margin-bottom: -48px;
}

.footer-cta-box {
  background: #f7f8ff;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 28px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.footer-cta-box h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #0056b3;
  font-weight: 800;
}

.footer-cta-btn {
  min-height: 52px;
  padding: 0 28px;
  background: #0056b3;
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s ease;
}

.footer-cta-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* =========================
   MAIN FOOTER
========================= */
.main-footer {
  position: relative;
  background: url("assets/footer-bg.jpg") center center / cover no-repeat;
  color: #fff;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  margin-top: 40px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr 1fr;
  gap: 42px;
  padding: 120px 0 44px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #fff;
}

/* About */
.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #0056b3;
  color: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Contact */
.footer-contact ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact li i {
  margin-top: 4px;
  color: #fff;
  min-width: 16px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

/* Links */
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: 0.3s ease;
  position: relative;
  padding-left: 14px;
}

.footer-links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 18px;
}

/* Appointment */
.footer-appointment p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  background: #0056b3;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.appointment-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* =========================
   BOTTOM FOOTER
========================= */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0056b3;
}

.footer-bottom-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-links a,
.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-cta-box h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .footer-cta-section {
    margin-bottom: -36px;
  }

  .footer-cta-box {
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-box h2 {
    font-size: 22px;
  }

  .main-footer {
    border-radius: 20px 20px 0 0;
  }

  .footer-inner {
    padding: 90px 0 38px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 85px 0 34px;
  }

  .footer-cta-box {
    border-radius: 18px;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .footer-cta-box h2 {
    font-size: 20px;
  }

  .footer-col h3 {
    margin-bottom: 16px;
  }

  .footer-about p,
  .footer-contact li,
  .footer-links ul li a,
  .footer-appointment p {
    font-size: 14px;
  }

  .appointment-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-cta-section {
    margin-bottom: -26px;
  }

  .footer-cta-box {
    padding: 18px 16px;
  }

  .footer-cta-box h2 {
    font-size: 18px;
  }

  .footer-inner {
    padding: 72px 0 28px;
  }

  .footer-logo img {
    width: 95px;
  }

  .footer-bottom-links {
    gap: 8px;
  }

  .footer-bottom-links a,
  .footer-bottom-links span,
  .footer-bottom-inner p {
    font-size: 12px;
  }
}

/* News Page */
.news-hero {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.news-hero-inner {
  text-align: center;
  max-width: 820px;
}

.news-kicker,
.news-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.news-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: #1e2a39;
  margin-bottom: 18px;
}

.news-hero p,
.news-content-card p,
.highlight-box p,
.news-image-note {
  font-size: 16px;
  line-height: 1.8;
  color: #5d6775;
}

.news-section {
  padding: 35px 0 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.news-image-card,
.news-content-card,
.highlight-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.news-image-card {
  overflow: hidden;
}

.news-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.news-image-note {
  padding: 18px 22px 22px;
  background: #f8fbff;
}

.news-content-card {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #1f2d3d;
  margin-bottom: 16px;
}

.news-points {
  margin: 24px 0 30px;
  display: grid;
  gap: 16px;
}

.news-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7faff;
  color: #223246;
  font-weight: 600;
}

.news-point i {
  color: var(--primary);
  font-size: 18px;
}

.news-btn {
  align-self: flex-start;
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.news-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.news-highlight-strip {
  padding: 0 0 90px;
}

.highlight-box {
  padding: 28px 32px;
}

.highlight-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #1f2d3d;
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-image-card img {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .news-hero {
    padding-top: 40px;
  }

  .news-content-card,
  .highlight-box {
    padding: 24px;
  }

  .news-point {
    align-items: flex-start;
  }
}
.footer-credit-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-credit-box a {
  color: #ffd166;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
  transition: 0.3s ease;
}

.footer-credit-box a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 209, 102, 0.65);
}