/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE PAGE STYLE */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background-color: #f2f2f2;
  color: #222;
  line-height: 1.6;
}

/* GLOBAL CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SIMPLE SPACING */
header,
main,
footer {
  padding: 20px;
}

/* HEADER */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}
/* HERO SECTION */
.hero {
  background-color: #e9ecef;
  padding: 80px 20px;
}

.hero-inner {
  max-width: 800px;
  margin: auto;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 500;
  letter-spacing: 0.4px;
}



/* SERVICES SECTION */
.services {
  background: linear-gradient(
    180deg,
    #f4f6f8 0%,
    #eef1f4 100%
  );
  padding: 80px 20px;
}

.services-inner {
  max-width: 1200px;
  margin: auto;
}

.services h3 {
  font-size: 28px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 32px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  position: relative;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}


.service-card h3,
.service-card h4 {
  font-weight: 600;
}

.service-card p {
  color: #333;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
/* FOOTER */
.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}
/* MOBILE STYLES */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin-left: 0;
    margin-right: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 28px;
  }
}

/* ABOUT PAGE */
.about {
  background-color: #f2f2f2;
  padding: 80px 20px;
}

.about-inner {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.about p {
  font-size: 17px;
  margin-bottom: 20px;
}
.about-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 4px;
}

/* ABOUT SIDE-BY-SIDE LAYOUT */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image-wrapper {
  flex: 1;
}

.about-text {
  flex: 1;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
/* SERVICES PAGE */
.services-page {
  background: linear-gradient(
    180deg,
    #f4f6f8 0%,
    #eef1f4 100%
  );
  padding: 80px 20px;
}

.services-page h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-page .services-inner {
  max-width: 1200px;
  margin: auto;
}

.services-page .service-card {
  background-color: #ffffff;
}

/* CONTACT PAGE */
.contact {
  background-color: #f2f2f2;
  padding: 80px 20px;
}

.contact-inner {
  max-width: 1000px;
  margin: auto;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
  font-size: 16px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}
.contact-form {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 30px;

  border: 1px solid rgba(255, 255, 255, 0.4);
}


/* MOBILE STACK */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}

/* HOVER EFFECTS */
.nav a:hover {
  text-decoration: underline;
}

.btn:hover,
.contact-form button:hover {
  opacity: 0.85;
}
/* WHY US SECTION */
.why-us {
  background-color: #ffffff;
  padding: 80px 20px;
}

.why-inner {
  max-width: 1200px;
  margin: auto;
}

.why-us h3 {
  font-size: 28px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* HOME – HERO */
.hero {
  background: linear-gradient(180deg, #f6f8fa 0%, #eef1f4 100%);
  padding: 140px 20px;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
  margin-bottom: 40px;
}

/* DIGITAL MARKETING SECTION */
.services {
  background: #f4f6f8;
  padding: 100px 20px;
}

.services-inner {
  max-width: 1200px;
  margin: auto;
}

.services h3 {
  font-size: 32px;
  margin-bottom: 48px;
}

/* INTERNATIONAL SECTION */
.international {
  background: #ffffff;
  padding: 100px 20px;
}

.international-inner {
  max-width: 900px;
  margin: auto;
}

.international h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.international p {
  font-size: 18px;
  max-width: 700px;
}

/* CLIENTS MARQUEE */
.clients {
  background: #f4f6f8;
  padding: 100px 0;
  overflow: hidden;
}

.clients h3 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 40px;
}

.clients-marquee {
  width: 100vw;
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.clients-track span {
  font-size: 22px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
  opacity: 0.9;
}

/* INFINITE SCROLL */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-track {
    gap: 40px;
  }

  .clients-track span {
    font-size: 18px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .client-slider {
    gap: 30px;
  }
}
/* ABOUT PAGE */
.about {
  background: #ffffff;
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about p {
  font-size: 17px;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
/* CONTACT PAGE */
.contact {
  background: #ffffff;
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.hero-image {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.6)
    ),
    url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-image h2 {
  color: #fff;
}

.hero-image p {
  color: rgba(255,255,255,0.85);
}
section h3 {
  position: relative;
  padding-bottom: 14px;
}

section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #111;
}
.with-image img {
  width: 100%;
  margin-top: 40px;
  border-radius: 18px;
  object-fit: cover;
}
/* DOMESTIC HERO IMAGE */
.domestic-hero {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.6)
    ),
    url("../assets/images/domestic-hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
/* ABOUT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
}

.about-content {
  align-items: center;
}

.about {
  background: #f6f8fa;
}
/* ABOUT HERO IMAGE */
.about-hero {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.6)
    ),
    url("../assets/images/about-hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* CONTACT HERO IMAGE */
.contact-hero {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.6)
    ),
    url("../assets/images/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
/* SUBTLE BACKGROUND SHAPES */
.section-shape {
  position: relative;
  overflow: hidden;
}

.section-shape::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0.06),
    rgba(0,0,0,0)
  );
  top: -140px;
  right: -140px;
  z-index: 0;
}

.section-shape > * {
  position: relative;
  z-index: 1;
}
/* TYPOGRAPHY POLISH */
h1, h2, h3 {
  letter-spacing: -0.4px;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 500;
}
p {
  max-width: 720px;
}
section {
  padding-top: 110px;
  padding-bottom: 110px;
}
/* NAVIGATION LINKS FIX */
nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
}

nav a:hover {
  color: #000;
}
nav {
  display: flex;
  gap: 24px;
}
/* CLIENT LOGO MARQUEE */
.logo-marquee {
  overflow: hidden;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}

.logo-track img {
  height: 48px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* DOMESTIC CLIENT LOGO SCROLL */
.logo-marquee {
  overflow: hidden;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}

.logo-track img {
  height: 48px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* PRIMARY BUTTON STYLE */
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-2px);
}
a {
  text-decoration: none;
  color: inherit;
}
/* HEADER + LOGO */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.logo img {
  height: 150px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}
.logo {
  margin: 0;
}

.logo span {
  font-size: 18px;     /* increase brand size */
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
}
/* HEADER FONT: RUBIK */
.site-header,
.site-header nav a,
.logo span {
  font-family: 'Rubik', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
/* HEADER NAV LINK SIZE & STYLE */
.site-header nav a {
  font-size: 18px;        /* increased font size */
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 4px 0;         /* keeps header height tight */
  text-decoration: none;
  color: #111;
}

/* Hover underline effect */
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.3s ease;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .site-header nav a {
    font-size: 16px;
  }
}
/* NAV LINK DIVIDERS */
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px; /* space between links */
}

.site-header nav a {
  position: relative;
}

/* vertical divider between links */
.site-header nav a:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.25);
}
/* THIN FOOTER (COMPACT & CLEAN) */
.footer {
  background: #111;
  color: #fff;
  padding: 7px 0;          /* reduced height */
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  line-height: 1.4;         /* tighter text */
  opacity: 0.85;
}
/* LEADERSHIP IMAGE NORMALIZATION */
.leader-image {
  width: 200px;
  height: 240px;          /* fixed height */
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 16px;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crops nicely */
  display: block;
}


.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .leader-card:nth-child(2) {
    margin-top: 0;
  }

  .leader-image {
    width: 180px;
    height: 220px;
  }
}

/* CONTACT FORM – FINAL STYLING */
.contact-form {
  max-width: 620px;
  margin-top: 24px;
}

/* spacing */
.contact-form .form-group {
  margin-bottom: 16px;
}

/* inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* textarea control */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* submit button */
.contact-form button {
  margin-top: 8px;
}
/* CLIENT LOGO MARQUEE – FULL COLOR */
.logo-track img {
  height: 48px;
  filter: none;          /* removes grayscale */
  opacity: 1;            /* full visibility */
  transition: transform 0.3s ease;
}

/* subtle interaction (optional but nice) */
.logo-track img:hover {
  transform: scale(1.05);
}

/* ABOUT – LEADERSHIP MOBILE HORIZONTAL SCROLL */
@media (max-width: 768px) {

  .leadership-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 24px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 16px;
  }

  .leader-card {
    scroll-snap-align: start;
  }
}
