:root {
  color-scheme: light;
  --bg: #f4f6fa;
  --white: #ffffff;
  --navy: #0c355b;
  --navy-strong: #082a4a;
  --accent: #ff4d3f;
  --text: #1f2d3c;
  --muted: #677486;
  --border: #dfe5ee;
  --shadow: 0 14px 30px rgba(16, 43, 77, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-bar {
  background: var(--navy-strong);
  color: #d7e6f7;
  font-size: 0.9rem;
}

.top-grid {
  min-height: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.75rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-weight: 600;
  color: #3a4b62;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero-section {
  background: #eef2f7;
  padding: 3rem 0 2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  border: 0;
  border-radius: 0.2rem;
  padding: 0.7rem 1rem;
  min-width: 9.5rem;
  font-weight: 700;
  text-align: center;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: var(--accent);
  color: var(--white);
}

.welcome-section {
  padding: 0 0 4rem;
}

.section-lite {
  padding: 3rem 0;
}

.compact-head {
  margin-bottom: 1.2rem;
}

.solutions-strip {
  background: #f8fbff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem;
  min-height: 100%;
}

.solution-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.solution-card p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.solution-card a {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.about-intro {
  background: #f2f5fa;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.intro-copy h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin-bottom: 0.8rem;
}

.intro-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.intro-image {
  min-height: 260px;
}

.welcome-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: -1.2rem;
}

.welcome-card {
  background: var(--navy);
  color: #dbe8f7;
  padding: 2rem;
}

.welcome-card h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.welcome-card p {
  margin-bottom: 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-head h2 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.section-head p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-card h3,
.service-card p,
.service-card a {
  padding: 0 1rem;
}

.service-card h3 {
  color: var(--navy);
  margin-top: 1rem;
}

.service-card p {
  color: var(--muted);
  margin: 0.5rem 0 0.8rem;
}

.service-card a {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 2.2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.stats-grid span {
  color: #b5c9df;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.projects-section {
  background: #eceff4;
}

.projects-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "large large rightTop"
    "leftBottom wide wide";
}

.project-lg {
  grid-area: large;
  min-height: 180px;
}

.project-sm:nth-of-type(2) {
  grid-area: rightTop;
}

.project-sm:nth-of-type(3) {
  grid-area: leftBottom;
}

.project-wide {
  grid-area: wide;
  min-height: 180px;
}

.testimonial-section {
  background: #f6f7fa;
}

.testimonial-card {
  max-width: 760px;
  margin: 1.25rem auto 0;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  padding: 1.5rem;
}

.testimonial-card p {
  color: var(--muted);
  margin: 1rem 0;
}

.testimonial-card h4 {
  color: var(--navy);
}

.testimonial-card span {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  background: var(--navy-strong);
  color: #d8e4f4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 2.5rem 0;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.7rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.42rem 0;
}

.newsletter {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.2rem;
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  border: 0;
  padding: 0.65rem;
  outline: none;
}

.newsletter button {
  border: 0;
  width: 2.8rem;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 0.9rem 0;
  color: #9eb3cc;
}

@media (max-width: 1024px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.85rem 0;
  }

  .hero-layout,
  .welcome-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1140px, calc(100% - 1.2rem));
  }

  .top-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.6rem 0;
  }

  .site-header {
    position: static;
  }

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

  .nav-links {
    justify-content: center;
  }

  .hero-section,
  .section {
    padding: 3rem 0;
  }

  .service-grid,
  .solutions-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "rightTop"
      "leftBottom"
      "wide";
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.top-line {
  background: var(--navy-strong);
  color: #d7e6f7;
  font-size: 0.9rem;
}

.top-line-inner {
  min-height: 2.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.top-line-left {
  font-weight: 600;
}

.header-top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-top-inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-info-list {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-info-item {
  border: 1px solid var(--border);
  background: #f8fbff;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
}

.contact-info-item h4 {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-info-item p {
  color: var(--navy);
  font-weight: 700;
}

.main-nav-wrap {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 20;
}

.main-nav-wrap .nav {
  min-height: 3.4rem;
  justify-content: flex-start;
}

.main-nav-wrap .nav > a {
  color: #d7e6f7;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.62rem 0.74rem;
  border-radius: 0.2rem;
}

.main-nav-wrap .nav > a.active,
.main-nav-wrap .nav > a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.feature-inner {
  margin: 0 auto;
  max-width: 850px;
  text-align: center;
}

.feature-inner h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-inner p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-card {
  border: 1px solid var(--border);
  background: #f9fbff;
  padding: 1rem;
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.section-head-contact {
  margin-top: 0.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  padding: 0.72rem;
  font: inherit;
}

.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .header-top-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .contact-info-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .top-line-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.6rem 0;
  }

  .main-nav-wrap {
    position: static;
  }

  .main-nav-wrap .nav {
    justify-content: center;
  }

  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.top-line-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 3rem;
}

.top-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-social li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-social a {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 760px) {
  .top-line-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.6rem 0;
  }
}

/* ===== Final screenshot-aligned overrides ===== */
.top-line {
  background: #1785d1;
  color: #dff0ff;
}

.top-line-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.8rem;
}

.top-line-left,
.top-line-right {
  font-size: 0.9rem;
  font-weight: 700;
}

.top-line-right strong {
  color: #fff;
}

.top-line-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
}

.header-top {
  background: #efefef;
  border-bottom: 1px solid #d8e0ea;
}

.header-top-inner {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 2rem;
  font-weight: 800;
  color: #0a2f52;
  line-height: 1.1;
}

.brand img {
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
}

.main-nav-wrap {
  background: #1785d1;
  position: sticky;
  top: 0;
  z-index: 20;
}

.main-nav-wrap .nav {
  min-height: 3.5rem;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-menu a {
  color: #e3f1ff;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.6rem 0.8rem;
  border-radius: 0.2rem;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.nav-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-social li {
  list-style: none;
}

.nav-social a {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #eaf5ff;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-section {
  background: linear-gradient(110deg, #0b4795 0%, #0951ab 62%, #f3a714 62%, #f3a714 100%);
  padding: 1.6rem 0 6rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 1.3rem;
}

.hero-content-card {
  background: rgba(8, 35, 65, 0.84);
  color: #f2f8ff;
  padding: 1.6rem;
  border-radius: 0.2rem;
  max-width: 460px;
}

.hero-content-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-content-card p {
  color: #d3e5f8;
}

.offers-section {
  margin-top: -4.6rem;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.services-floating {
  background: #fff;
  border: 1px solid #d6dce6;
  box-shadow: 0 10px 28px rgba(9, 40, 74, 0.1);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.6rem 1.25rem 1.2rem;
  border-right: 1px solid #e5e9ef;
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}

.service-card h3 {
  color: #0b63a6;
  font-size: 1.85rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.service-card p {
  color: #6f7a89;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.service-card a {
  color: #3ac135;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.15rem;
}

.about-intro {
  background: #f0f2f5;
  padding-top: 3.8rem;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.intro-copy h2 {
  color: #1785d1;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.intro-copy p {
  color: #697688;
  margin-bottom: 1.1rem;
  font-size: 1.35rem;
}

.intro-copy .button.secondary {
  background: #0a2f52;
  color: #fff;
}

.intro-image {
  min-height: 320px;
  border: 0;
}

.photo-frame,
.project-card {
  margin: 0;
  overflow: hidden;
}

.photo-frame {
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(12, 53, 91, 0.13);
}

.photo-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #d6dce6;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 43, 77, 0.08);
}

.project-card img {
  width: 52%;
  min-height: 230px;
  object-fit: cover;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
}

.project-content h3 {
  color: #0c355b;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.project-content p {
  color: #677486;
}

.project-sm {
  flex-direction: column;
}

.project-sm img {
  width: 100%;
  min-height: 170px;
}

.client-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.client-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  box-shadow: 0 12px 26px rgba(16, 43, 77, 0.08);
}

.client-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.client-card h3 {
  color: #0c355b;
  font-size: 1.2rem;
  padding: 1rem 1rem 0.25rem;
}

.client-card p {
  color: #677486;
  padding: 0 1rem 1rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.contact-card a {
  color: #1785d1;
  font-weight: 800;
}

.map-frame {
  height: 340px;
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid #d6dce6;
  background: #eef2f7;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
}

.footer-brand h3 {
  margin-bottom: 0;
}

@media (max-width: 1050px) {
  .hero-shell,
  .intro-layout {
    grid-template-columns: 1fr;
  }

  .services-floating {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card {
    flex-direction: column;
  }

  .project-card img {
    width: 100%;
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .top-line-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
  }

  .top-line-right {
    justify-content: center;
  }

  .brand {
    font-size: 1.45rem;
  }

  .brand img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .main-nav-wrap {
    position: static;
  }

  .main-nav-wrap .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .nav-menu {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-social {
    justify-content: center;
  }

  .services-floating,
  .intro-layout,
  .client-gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid #e5e9ef;
  }

  .service-card:last-child {
    border-bottom: 0;
  }
}

/* ===== SWIPER HERO CAROUSEL STYLES ===== */

.hero-section {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin: 0;
  padding: 0;
  background: #0a2f52;
}

.tt-mslide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-container.swiper-hero {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.tt-mslide {
  width: 100%;
  height: 100%;
  position: relative;
}

.tt-mslide-entry {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-mslide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tt-mslide-entry .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slider_content3 {
  max-width: 600px;
  padding: 2.5rem 3rem;
  background: rgb(0 0 0 / 42%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.text-animation {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.text-animation[data-animation="fadeInDown"] {
  animation-name: fadeInDown;
  animation-delay: 0.2s;
}

.text-animation[data-animation="fadeInUp"] {
  animation-name: fadeInUp;
  animation-delay: 0.4s;
}

.text-animation[data-animation="fadeIn"] {
  animation-name: fadeIn;
  animation-delay: 0s;
}

.tt-mslide-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #ffffff;
}

.tt-mslide-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #e5e5e5;
  margin-bottom: 0;
}

.white {
  color: #ffffff;
}

/* Swiper Pagination */
.swiper-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
  transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Fade effect */
.swiper-fade .swiper-slide {
  opacity: 0;
}

.swiper-fade .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-section {
    height: 500px;
  }

  .slider_content3 {
    max-width: 450px;
    padding: 2rem;
  }

  .tt-mslide-title {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
  }

  .tt-mslide-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 760px) {
  .hero-section {
    height: 400px;
  }

  .tt-mslide-entry .container {
    justify-content: center;
  }

  .slider_content3 {
    max-width: 320px;
    padding: 1.5rem;
  }

  .tt-mslide-title {
    font-size: 1.4rem;
  }

  .tt-mslide-desc {
    font-size: 0.9rem;
  }

  .swiper-pagination {
    bottom: 1rem;
    gap: 0.6rem;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* Responsive Carousel */
@media (max-width: 1050px) {
  .carousel-wrapper {
    height: 500px;
  }

  .carousel-slide .hero-content-card {
    max-width: 400px;
    padding: 2.5rem;
  }

  .carousel-slide .hero-content-card h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
}

@media (max-width: 760px) {
  .carousel-wrapper {
    height: 400px;
  }

  .carousel-slide .hero-shell {
    justify-content: center;
  }

  .carousel-slide .hero-content-card {
    max-width: 320px;
    padding: 1.8rem;
  }

  .carousel-slide .hero-content-card h1 {
    font-size: 1.6rem;
  }

  .carousel-slide .hero-content-card p {
    font-size: 0.95rem;
  }

  .carousel-controls {
    bottom: 1rem;
    gap: 1.2rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}
