/* ================= GLOBAL ================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #0b2c3d;
  background: #f7fbfc;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* Gradient Variables */
:root {
  --primary: #0F4C75;
  --secondary: #2EC4B6;
  --light: #A8E6DF;
  --dark: #083D5C;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
}

.logo img {
  height: 65px;
  transition: 0.4s;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 35px;
}

nav ul li a {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 5px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s;
  border-radius: 5px;
}

nav ul li a:hover::after {
  width: 100%;
}

/* ================= MOBILE MENU ================= */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary);
}

/* ================= HERO ================= */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= PAGE CARDS ================= */
.pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 90px 8%;
}

.page-card {
  background: white;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.page-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.page-card h2 {
  margin-bottom: 15px;
  color: var(--primary);
}

.page-card p {
  margin-bottom: 15px;
}

.page-card a {
  color: white;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.page-card a:hover {
  transform: scale(1.05);
}

/* ================= BRANDS ================= */
.brands {
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: white;
}

.brands h2 {
  margin-bottom: 40px;
  color: var(--primary);
}

.brand-slider {
  display: flex;
  gap: 80px;
  animation: scroll 25s linear infinite;
  align-items: center;
}

.brand-slider img {
  height: 50px;
  opacity: 0.7;
  transition: 0.3s;
}

.brand-slider img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ================= PHILOSOPHY ================= */
.philosophy {
  padding: 100px 20%;
  text-align: center;
  background: #f1fbfa;
}

.philosophy h2 {
  margin-bottom: 20px;
  font-size: 34px;
  color: var(--primary);
}

.philosophy p {
  font-size: 18px;
  color: #444;
}

/* ================= WORK GRID ================= */
.work {
  padding: 100px 8%;
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.work-card {
  background: white;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.work-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

/* TEAM SECTION */
.team {
  padding: 100px 8%;
  background: #083b50;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* MEMBER CARD */
.member {
  background: #f2f2f2;
  padding: 18px 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.team-img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 6px solid #37c8c5;
}

.member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #083b50;
}

.member p {
  font-size: 15px;
  color: #555;
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.member:hover .team-img {
  transform: scale(1.08);
  border-color: #0aa6a3;
}

/* ================= COFFEE SECTION ================= */
.coffee {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.coffee h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */
.site-footer{
  background: linear-gradient(135deg, #08384f, #0F4C75);
  color: #ffffff;
  padding: 55px 6% 22px;
  margin-top: 0;
}

.footer-container{
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand{
  max-width: 420px;
}

.footer-logo{
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 6px;
}

.footer-brand h3{
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-address{
  font-size: 15px;
  line-height: 1.9;
  color: #d9edf2;
}

.footer-links h4,
.footer-contact h4{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #A8E6DF;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a{
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s ease;
  width: fit-content;
}

.footer-links a:hover{
  color: #A8E6DF;
  transform: translateX(4px);
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-socials a{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-socials a:hover{
  background: #2EC4B6;
  transform: translateY(-4px);
}

.footer-socials img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-email{
  color: #ffffff;
  font-size: 15px;
  word-break: break-word;
  transition: 0.3s ease;
}

.footer-email:hover{
  color: #A8E6DF;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 34px;
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p{
  font-size: 14px;
  color: #d6e7eb;
  margin: 0;
}

/* ================= TABLET ================= */
@media (max-width: 992px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand{
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px){
  .site-footer{
    padding: 45px 18px 20px;
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact{
    text-align: center;
    max-width: 100%;
  }

  .footer-logo{
    margin: 0 auto 16px;
  }

  .footer-links{
    align-items: center;
  }

  .footer-socials{
    justify-content: center;
  }

  .footer-brand h3{
    font-size: 21px;
  }

  .footer-links h4,
  .footer-contact h4{
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-address,
  .footer-links a,
  .footer-email{
    font-size: 14px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px){
  .site-footer{
    padding: 40px 14px 18px;
  }

  .footer-logo{
    width: 90px;
    height: 90px;
  }

  .footer-brand h3{
    font-size: 19px;
  }

  .footer-socials a{
    width: 44px;
    height: 44px;
  }

  .footer-socials img{
    width: 20px;
    height: 20px;
  }

  .footer-bottom p{
    font-size: 13px;
  }
}
.footer-socials{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-socials a{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: #ffffff;
  font-size: 20px;
}

.footer-socials a:hover{
  background: #2EC4B6;
  transform: translateY(-4px);
  color: #ffffff;
}
/* ================= RESPONSIVE ================= */
/* Laptop */
@media (max-width: 1200px) {
  .pages {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy {
    padding: 80px 10%;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }

  .pages {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    padding: 20px 0;
  }

  nav ul li {
    margin: 15px 0;
    text-align: center;
  }

  .hero {
    height: auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 24px;
  }

  header {
    padding: 15px 6%;
  }

  .logo img {
    height: 45px;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero::before {
  width: 350px;
  height: 350px;
  background: #2EC4B6;
  top: -120px;
  left: -120px;
  animation: float1 12s ease-in-out infinite;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: #0F4C75;
  bottom: -150px;
  right: -150px;
  animation: float2 14s ease-in-out infinite;
}

@keyframes float1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes particlesMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-120px);
  }
}

/* ================= WORK PREVIEW ================= */
.work-preview {
  padding: 100px 8%;
  text-align: center;
  background: #f4fbfb;
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0F4C75;
}

.section-text {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 18px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0F4C75, #2EC4B6);
  color: white;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.container {
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-text {
    font-size: 16px;
  }
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 8%;
  background: #0b1c2c;
}

.services-wrapper {
  max-width: 1300px;
  margin: auto;
}

.services-main-title {
  text-align: center;
  font-size: 42px;
  color: #2EC4B6;
  margin-bottom: 40px;
}

.service-category {
  margin-top: 60px;
  margin-bottom: 30px;
}

.service-category h2 {
  font-size: 28px;
  color: white;
  display: flex;
  align-items: center;
}

.service-category h2::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #2EC4B6;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px #2EC4B6;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 24px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 59, 102, 0.08);
  text-align: center;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-card a {
  display: inline-block;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d3b66;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid #0d3b66;
  min-width: 140px;
  align-self: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card a:hover {
  background: #0d3b66;
  color: #ffffff;
  transform: none;
}

@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-main-title {
    font-size: 34px;
  }

  .service-category h2 {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .services-section {
    padding: 70px 6%;
  }

  .services-main-title {
    font-size: 28px;
  }

  .service-category h2 {
    font-size: 22px;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* EXPERIENCES */
.experiences {
  padding: 100px 8%;
  background: #062f44;
  color: white;
}

.client-logos {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 70px 90px !important;
  margin: 70px auto !important;
  max-width: 800px !important;
}

.client-logos img {
  width: 210px;
  height: 150px;
  object-fit: contain;
  background: #f2f2f2;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.industry-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 2px solid #37c8c5;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  background: #073b55;
}

.industry-text {
  flex: 1;
}

.industry-text h2,
.industry-text h3 {
  color: #37c8c5;
  margin-bottom: 15px;
}

.industry-text p {
  line-height: 1.6;
  font-size: 16px;
}

.industry-image img {
  width: 260px;
  border-radius: 12px;
  background: white;
  padding: 10px;
}

/* ABOUT SECTION */
.about-section {
  padding: 50px 8%;
  background: #062f44;
  color: white;
}

.about-text {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
  font-size: 17px;
  text-align: center;
}

/* NETWORK SECTION */
.network {
  padding: 100px 8%;
  background: #083b50;
  text-align: center;
  overflow: hidden;
}

.network-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.network-carousel-container {
  width: min(720px, 100%);
  overflow: hidden;
}

.network-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.network-card {
  width: 230px;
  height: 170px;
  background: transparent;
  border: 3px solid white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.network-card:hover {
  transform: scale(1.08);
}

.network-card img {
  width: 170px;
  height: 140px;
  object-fit: contain;
}

.arrow {
  background: #37c8c5;
  border: none;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.cta {
  padding: 80px;
  background: #08384f;
  text-align: center;
  color: white;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #37c8c5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.industry-intro {
  text-align: center;
  max-width: 900px;
  margin: 80px auto 60px auto;
}

.industry-title {
  font-size: 36px;
  color: #37c8c5;
  margin-bottom: 20px;
}

.industry-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #e0f7f7;
}

/* FEATURED CAROUSEL */
.featured {
  padding: 100px 8%;
  background: #011523;
  text-align: center;
}

.featured-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.featured-carousel-container {
  width: min(1000px, 100%);
  overflow: hidden;
}

.featured-carousel {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
}

.featured-carousel img {
  width: 190px;
  height: 100px;
  object-fit: contain;
  background: white;
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s;
}

.featured-carousel img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.featured-arrow {
  background: #37c8c5;
  border: none;
  color: white;
  font-size: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.featured-arrow:hover {
  background: #2ec4b6;
  transform: scale(1.1);
}

/* ===== WORK HERO SECTION ===== */
.work-hero {
  width: 100%;
  background: #f3f4f6;
  padding: 80px 60px;
}

.work-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}

.work-text h1 {
  font-size: 72px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -1px;
}

.work-image img {
  width: 650px;
  max-width: 100%;
  object-fit: contain;
}

.work-text h1 span {
  color: #0ea5a4;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  width: 100%;
  background: #f3f4f6;
  padding: 80px 60px;
}

.about-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}

.about-hero-text h1 {
  font-size: 72px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -1px;
}

.about-hero-image img {
  width: 650px;
  max-width: 100%;
  object-fit: contain;
}

.about-hero-text h1 span {
  color: #0ea5a4;
}

.about-hero-text {
  animation: fadeLeft 1s ease;
}

.about-hero-image {
  animation: fadeRight 1s ease;
}

/* ===== SERVICES HERO ===== */
.services-hero {
  width: 100%;
  background: #f3f4f6;
  padding: 80px 60px;
}

.services-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}

.services-hero-text h1 {
  font-size: 72px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -1px;
}

.services-hero-text h1 span {
  color: #0ea5a4;
}

.services-hero-image img {
  width: 650px;
  max-width: 100%;
  object-fit: contain;
}

.services-hero-text {
  animation: fadeLeft 1s ease;
}

.services-hero-image {
  animation: fadeRight 1s ease;
}

/* ===== TICKER SECTION ===== */
.influence-ticker {
  background: linear-gradient(90deg, #0f4c5c, #1b9aaa, #2ec4b6);
  padding: 18px 0;
  overflow: hidden;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollText 18s linear infinite;
}

.ticker-track p {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 80px;
  letter-spacing: 0.5px;
}

.ticker-track span {
  color: #d1fae5;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(209, 250, 229, 0.5);
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT DESCRIPTION ===== */
.about-desc {
  background: #f8fafc;
  padding: 80px 20px;
  border-top: 1px solid #e2e8f0;
  animation: fadeUp 1s ease;
}

.about-desc-container {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.about-desc p {
  font-size: 20px;
  line-height: 1.9;
  color: #334155;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.about-desc span {
  color: #0ea5a4;
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CLEAN FINAL SERVICES CAROUSEL ================= */
.services-carousel-section {
  width: 100%;
  padding: 70px 5%;
  background: #ffffff;
  overflow: hidden;
}

.carousel-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0d3b66;
  line-height: 1.2;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 24px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 59, 102, 0.08);
  text-align: center;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
}

.service-icon {
  width: 100%;
  height: 180px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  max-width: 220px;
  height: 170px;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.carousel-btn {
  position: static;
  transform: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0d3b66;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.carousel-btn:hover,
.carousel-btn:active,
.carousel-btn:focus {
  transform: none;
}

/* ================= CLIENT LOGO CAROUSEL ================= */
.experience-logos-section {
  padding: 80px 5%;
  background: #0f5b70;
  overflow: hidden;
}

.experience-container {
  max-width: 1380px;
  margin: 0 auto;
}

.experience-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
}

.logo-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
}

.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.logo-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

.client-logo-card {
  background: #f8f8f8;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  height: 135px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.client-logo-card img {
  max-width: 92%;
  max-height: 105px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-arrow {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0F4C75;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}

.logo-arrow:hover {
  background: #2EC4B6;
  color: #ffffff;
}

/* ================= TEAM CAROUSEL SECTION ================= */
.team-carousel-section {
  padding: 90px 5%;
  background: linear-gradient(135deg, #08384f, #0b4f6c);
  overflow: hidden;
}

.team-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-carousel-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 42px;
  line-height: 1.3;
}

.team-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
}

.team-carousel-viewport {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.team-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.team-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.team-card .team-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 6px solid #37c8c5;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
  border-color: #0F4C75;
}

.team-card h3 {
  font-size: 24px;
  color: #08384f;
  margin-bottom: 10px;
  font-weight: 700;
}

.team-card p {
  font-size: 15px;
  color: #5a6470;
  line-height: 1.6;
  max-width: 260px;
}

.team-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0F4C75;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}

.team-arrow:hover {
  background: #37c8c5;
  color: #ffffff;
  transform: scale(1.08);
}

/* ================= INDUSTRIES CAROUSEL ================= */
.industries-carousel-section {
  padding: 90px 5%;
  background: linear-gradient(135deg, #f7fbfc, #eef7f8);
  overflow: hidden;
}

.industries-container {
  max-width: 1380px;
  margin: 0 auto;
}

.industries-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0F4C75;
  margin-bottom: 14px;
  line-height: 1.2;
}

.industries-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #4b5c68;
  line-height: 1.7;
}

.industries-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
}

.industries-carousel-viewport {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.industries-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.industry-slide-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 76, 117, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.industry-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.industry-slide-image {
  width: 100%;
  height: 220px;
  background: #edf6f7;
  overflow: hidden;
}

.industry-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-slide-card:hover .industry-slide-image img {
  transform: scale(1.05);
}

.industry-slide-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.industry-slide-content h3 {
  font-size: 22px;
  color: #0F4C75;
  margin-bottom: 12px;
  line-height: 1.35;
}

.industry-slide-content p {
  font-size: 15px;
  color: #5a6772;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}

.industry-read-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 11px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0F4C75, #2EC4B6);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.industry-read-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 76, 117, 0.18);
}

.industries-arrow {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0F4C75;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.industries-arrow:hover {
  background: #2EC4B6;
  color: #ffffff;
  transform: scale(1.08);
}

/* ================= PROFESSIONAL CONTACT SECTION ================= */
.contact-section {
  padding: 90px 8%;
  background: #f7fbfc;
  overflow: hidden;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 42px;
  background: linear-gradient(135deg, #ffffff, #f4fbfb);
  border: 1px solid #dbe9ee;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(8, 61, 92, 0.08);
  width: 100%;
  max-width: 100%;
}

.contact-left {
  padding-right: 10px;
  background: linear-gradient(135deg, #f8fcfd, #eef8f8);
  border-radius: 22px;
  padding: 28px;
  min-width: 0;
}

.contact-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #0F4C75;
  background: #eaf7f6;
  border-radius: 30px;
  margin-bottom: 18px;
}

.contact-left h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #083D5C;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-left h2 span {
  color: #2EC4B6;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #4f6470;
  max-width: 500px;
  margin-bottom: 28px;
}

.contact-image-box{
  max-width: 520px;
  width: 100%;
}

.contact-image-box img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact-right {
  width: 100%;
  min-width: 0;
}

.contact-form {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #083D5C;
  margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  max-width: 100%;
  border: 1.5px solid #cfe1e7;
  background: #f9fcfd;
  color: #0b2c3d;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input {
  height: 52px;
}

.input-group textarea {
  resize: vertical;
  min-height: 130px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #8a9aa5;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #2EC4B6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.14);
}

.full-width {
  grid-column: 1 / -1;
}

.contact-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #0F4C75, #2EC4B6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 22px rgba(15, 76, 117, 0.16);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 76, 117, 0.20);
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1100px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px;
  }

  .contact-left {
    text-align: center;
    padding-right: 0;
  }

  .contact-left p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-image-box {
    margin: 0 auto;
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .services-carousel-section {
    padding: 60px 4%;
  }

  .carousel-title {
    font-size: 1.95rem;
    margin-bottom: 32px;
  }

  .carousel-track {
    gap: 18px;
  }

  .service-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    min-height: 370px;
    padding: 30px 20px 24px;
  }

  .service-icon {
  height: 160px;
}

.service-icon img {
  max-width: 200px;
  height: 150px;
}

  .experience-title,
  .team-carousel-title,
  .industries-title {
    font-size: 34px;
  }

  .client-logo-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    height: 128px;
    padding: 8px 12px;
  }

  .client-logo-card img {
    max-height: 95px;
  }

  .team-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    min-height: 370px;
    padding: 26px 18px;
  }

  .team-card .team-img {
    width: 170px;
    height: 170px;
  }

  .team-card h3 {
    font-size: 22px;
  }

  .industry-slide-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    min-height: 440px;
  }

  .industry-slide-image {
    height: 210px;
  }

  .work-text h1,
  .about-hero-text h1,
  .services-hero-text h1 {
    font-size: 48px;
  }

  .work-image img,
  .about-hero-image img,
  .services-hero-image img {
    width: 450px;
  }
}

@media (max-width: 900px) {
  .industry-box {
    flex-direction: column;
    text-align: center;
  }

  .industry-image img {
    width: 200px;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }

  .client-logos img {
    width: 180px;
    height: 110px;
  }

  .network-carousel-container {
    width: min(480px, 100%);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ticker-track p {
    font-size: 18px;
    margin-right: 40px;
  }

  .about-desc {
    padding: 50px 15px;
  }

  .about-desc p {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-carousel-section {
    padding: 50px 14px;
  }

  .carousel-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .carousel-wrapper,
  .logo-carousel-wrapper,
  .team-carousel-wrapper,
  .industries-carousel-wrapper {
    gap: 10px;
  }

  .carousel-track,
  .logo-carousel-track,
  .team-carousel-track,
  .industries-carousel-track {
    gap: 16px;
  }

  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
    padding: 26px 16px 22px;
    border-radius: 16px;
  }

  .service-icon {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
}

.service-icon img {
  width: 100%;
  max-width: 180px;
  height: 140px;
}

  .service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .service-card a {
    font-size: 0.9rem;
    padding: 10px 20px;
    min-width: 125px;
  }

  .carousel-btn,
  .logo-arrow,
  .team-arrow,
  .industries-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .experience-logos-section,
  .team-carousel-section,
  .industries-carousel-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .experience-title,
  .team-carousel-title,
  .industries-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .client-logo-card {
    flex: 0 0 100%;
    max-width: 100%;
    height: 118px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .client-logo-card img {
    max-height: 84px;
  }

  .team-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 340px;
    padding: 24px 16px;
    border-radius: 18px;
  }

  .team-card .team-img {
    width: 150px;
    height: 150px;
    margin-bottom: 16px;
  }

  .team-card h3 {
    font-size: 21px;
  }

  .team-card p {
    font-size: 14px;
  }

  .industries-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .industry-slide-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
    border-radius: 18px;
  }

  .industry-slide-image {
    height: 200px;
  }

  .industry-slide-content {
    padding: 20px 16px 22px;
  }

  .industry-slide-content h3 {
    font-size: 20px;
  }

  .industry-slide-content p {
    font-size: 14px;
  }

  .contact-section {
    padding: 70px 5%;
  }

  .contact-card {
    padding: 24px;
    border-radius: 20px;
    gap: 26px;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .contact-image-box{
  max-width: 420px;
  width: 100%;
}

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .full-width {
    grid-column: auto;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px;
    border-radius: 12px;
  }

  .input-group input {
    height: 48px;
  }

  .contact-btn {
    width: 100%;
    min-width: 100%;
    height: 50px;
    margin-top: 18px;
  }

  .work-hero,
  .about-hero,
  .services-hero {
    padding: 50px 20px;
  }

  .work-container,
  .about-hero-container,
  .services-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-text,
  .services-hero-text {
    margin-bottom: 20px;
  }

  .work-text h1,
  .about-hero-text h1,
  .services-hero-text h1 {
    font-size: 36px;
  }

  .work-image img,
  .about-hero-image img,
  .services-hero-image img {
    width: 100%;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 450px !important;
    gap: 30px !important;
  }

  .network-carousel-container {
    width: min(320px, 100%);
  }

  .network-card {
    width: 140px;
    height: 120px;
  }

  .network-card img {
    width: 90px;
    height: 90px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img {
    width: 130px;
    height: 130px;
  }

  .section-title {
    font-size: 30px;
  }

  .network-carousel-container {
    width: min(320px, 100%);
  }
}

@media (max-width: 500px) {
  .services-section {
    padding: 70px 6%;
  }

  .client-logos {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    max-width: 220px !important;
  }

  .client-logos img {
    width: 160px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .services-carousel-section {
    padding: 42px 10px;
  }

  .carousel-title {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 24px 14px 20px;
  }

  .service-icon {
  width: 100%;
  height: 130px;
}

.service-icon img {
  width: 100%;
  max-width: 160px;
  height: 120px;
}

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card a {
    min-width: 115px;
    font-size: 0.88rem;
    padding: 9px 18px;
  }

  .carousel-btn,
  .logo-arrow,
  .team-arrow,
  .industries-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .experience-title,
  .team-carousel-title,
  .industries-title {
    font-size: 24px;
  }

  .client-logo-card {
    height: 120px;
    padding: 8px 12px;
  }

  .client-logo-card img {
    max-height: 82px;
  }

  .team-card {
    min-height: 320px;
    padding: 22px 14px;
  }

  .team-card .team-img {
    width: 135px;
    height: 135px;
  }

  .team-card h3 {
    font-size: 19px;
  }

  .industry-slide-image {
    height: 180px;
  }

  .industry-slide-content h3 {
    font-size: 18px;
  }

  .industry-read-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .contact-section {
    padding: 55px 4%;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-tag {
    font-size: 12px;
    padding: 7px 14px;
  }

  .contact-left h2 {
    font-size: 27px;
  }

  .contact-left p {
    font-size: 14px;
  }

  .contact-image-box{
  max-width: 340px;
  width: 100%;
}

  .input-group label {
    font-size: 13px;
  }

  .work-text h1,
  .about-hero-text h1,
  .services-hero-text h1 {
    font-size: 36px;
  }
}
/* ================= SERVICES SECTION ================= */
.services-section{
  padding: 90px 6%;
  background: linear-gradient(180deg, #f7fbfc 0%, #eef7f8 100%);
}

.services-wrapper{
  max-width: 1320px;
  margin: 0 auto;
}

.services-main-title{
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  color: #0F4C75;
  margin-bottom: 55px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
}

.services-main-title::after{
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #0F4C75, #2EC4B6);
  display: block;
  margin: 14px auto 0;
  border-radius: 30px;
}

.service-category{
  margin-top: 55px;
  margin-bottom: 24px;
}

.service-category:first-of-type{
  margin-top: 0;
}

.service-category h2{
  font-size: 30px;
  font-weight: 700;
  color: #083D5C;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
}

.service-category h2::before{
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0F4C75, #2EC4B6);
  box-shadow: 0 0 0 7px rgba(46, 196, 182, 0.12);
}

.services-container{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.services-container .service-card{
  width: 100%;
  min-width: 0;
  min-height: 280px;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(15, 76, 117, 0.10);
  box-shadow: 0 10px 26px rgba(8, 61, 92, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services-container .service-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0F4C75, #2EC4B6);
}

.services-container .service-card::after{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -90px;
  background: radial-gradient(circle, rgba(46,196,182,0.14), transparent 70%);
  pointer-events: none;
}

.services-container .service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(8, 61, 92, 0.14);
  border-color: rgba(46, 196, 182, 0.35);
}

.services-container .service-card h3{
  font-size: 22px;
  font-weight: 700;
  color: #0F4C75;
  margin-bottom: 14px;
  line-height: 1.4;
  position: relative;
  z-index: 1;

  word-break: break-word;
  overflow-wrap: break-word;
}

.services-container .service-card p{
  font-size: 15.5px;
  line-height: 1.8;
  color: #51636f;
  position: relative;
  z-index: 1;

  word-break: break-word;
  overflow-wrap: break-word;
}

/* ================= LARGE TABLET ================= */
@media (max-width: 1100px){
  .services-section{
    padding: 80px 5%;
  }

  .services-main-title{
    font-size: 40px;
    margin-bottom: 48px;
  }

  .service-category h2{
    font-size: 27px;
  }

  .services-container{
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 22px;
  }

  .services-container .service-card{
    min-height: 260px;
    padding: 26px 22px;
  }

  .services-container .service-card h3{
    font-size: 21px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px){
  .services-section{
    padding: 65px 16px;
  }

  .services-main-title{
    font-size: 32px;
    margin-bottom: 36px;
  }

  .services-main-title::after{
    width: 72px;
    margin-top: 12px;
  }

  .service-category{
    margin-top: 42px;
    margin-bottom: 18px;
  }

  .service-category h2{
    font-size: 24px;
    gap: 12px;
  }

  .service-category h2::before{
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.12);
  }

  .services-container{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-container .service-card{
    min-height: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .services-container .service-card h3{
    font-size: 19px;
    margin-bottom: 10px;
  }

  .services-container .service-card p{
    font-size: 14.5px;
    line-height: 1.7;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px){
  .services-section{
    padding: 55px 12px;
  }

  .services-main-title{
    font-size: 28px;
  }

  .service-category h2{
    font-size: 21px;
  }

  .services-container .service-card{
    padding: 20px 16px;
    border-radius: 16px;
  }

  .services-container .service-card h3{
    font-size: 18px;
  }

  .services-container .service-card p{
    font-size: 14px;
  }
}
.services-section .services-container .service-card{
  flex: unset !important;
  width: 100% !important;
  max-width: 100% !important;
}
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  background:#ffffff;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.about-hero,
.services-hero,
.work-hero,
.hero{
  margin-top: 81px;
}
body{
  padding-top: 0;
}
/* ================= BIGGER SERVICE IMAGES ================= */
.services-carousel-section .service-card .service-icon{
  width: 100% !important;
  height: 240px !important;
  margin: 0 auto 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.services-carousel-section .service-card .service-icon img{
  width: auto !important;
  max-width: 280px !important;
  height: 220px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* tablet */
@media (max-width: 1024px){
  .services-carousel-section .service-card .service-icon{
    height: 210px !important;
    margin-bottom: 24px !important;
  }

  .services-carousel-section .service-card .service-icon img{
    max-width: 240px !important;
    height: 190px !important;
  }
}

/* mobile */
@media (max-width: 768px){
  .services-carousel-section .service-card .service-icon{
    height: 190px !important;
    margin-bottom: 20px !important;
  }

  .services-carousel-section .service-card .service-icon img{
    max-width: 220px !important;
    height: 170px !important;
  }
}

/* small mobile */
@media (max-width: 480px){
  .services-carousel-section .service-card .service-icon{
    height: 165px !important;
    margin-bottom: 18px !important;
  }

  .services-carousel-section .service-card .service-icon img{
    max-width: 190px !important;
    height: 145px !important;
  }
}
#serviceTrack,
#clientLogoTrack,
#teamCarouselTrack,
#industriesCarouselTrack {
  display: flex;
  will-change: transform;
}

#serviceTrack .service-card,
#clientLogoTrack .client-logo-card,
#teamCarouselTrack .team-card,
#industriesCarouselTrack .industry-slide-card {
  flex-shrink: 0;
}
.services-intro{
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: 19px;
  line-height: 1.9;
  color: #4f6470;
  font-weight: 400;
}

@media (max-width: 768px){
  .services-intro{
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto 32px;
    padding: 0 6px;
  }
}

@media (max-width: 480px){
  .services-intro{
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 26px;
  }
}
.network-card {
  flex: 0 0 calc((100% - 90px) / 4);
  max-width: calc((100% - 90px) / 4);
}
/* ================= OUR NETWORK ================= */
.network {
  padding: 70px 20px;
  background: #0b2c3d;
  overflow: hidden;
}

.network .section-title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.network-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.network-carousel-container {
  overflow: hidden;
  width: 100%;
}

.network-carousel {
  display: flex;
  align-items: stretch;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.network-card {
  flex: 0 0 calc((100% - 90px) / 4);
  max-width: calc((100% - 90px) / 4);
  min-height: 160px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.network-card img {
  width: 100%;
  max-width: 180px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0b2c3d;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.arrow:hover {
  transform: scale(1.08);
}

.arrow:active {
  transform: scale(0.96);
}

/* ================= LARGE TABLET ================= */
@media (max-width: 1024px) {
  .network {
    padding: 60px 18px;
  }

  .network .section-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .network-wrapper {
    gap: 14px;
  }

  .network-carousel {
    gap: 22px;
  }

  .network-card {
    flex: 0 0 calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    min-height: 145px;
    padding: 18px;
    border-radius: 16px;
  }

  .network-card img {
    max-width: 160px;
    height: 80px;
  }

  .arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

/* ================= TABLET / MOBILE ================= */
@media (max-width: 768px) {
  .network {
    padding: 50px 14px;
  }

  .network .section-title {
    font-size: 30px;
    margin-bottom: 26px;
  }

  .network-wrapper {
    gap: 10px;
  }

  .network-carousel {
    gap: 16px;
  }

  .network-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    min-height: 125px;
    padding: 16px;
    border-radius: 14px;
  }

  .network-card img {
    max-width: 130px;
    height: 68px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .network {
    padding: 42px 10px;
  }

  .network .section-title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .network-wrapper {
    gap: 8px;
  }

  .network-carousel {
    gap: 12px;
  }

  .network-card {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    min-height: 110px;
    padding: 12px;
    border-radius: 12px;
  }

  .network-card img {
    max-width: 105px;
    height: 56px;
  }

  .arrow {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}