:root {
--primary: #0A1F44; /* Dark Blue Background */
--secondary: #FFFFFF; /* White Text */
--accent: #FFC107; /* Yellow for Client Reviews / Highlights */
--text: #EAEAEA;
--light-bg: #0F2A5F;
}
/* ===== Centered Floating Navbar ===== */
header {
  position: fixed;
  top: 16px;                 /* space from top */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px); /* makes navbar centered & smaller */
  max-width: 1200px;
  background: #0A1F44;       /* Dark Blue */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  border-radius: 50px;       /* CURVED EDGES */
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ===== Logo ===== */
.hero-image img {
  height: 90px;
  width: auto;
}

/* ===== Navbar Links ===== */
.navbar {
  display: flex;
  align-items: center;
}

.navbar a {
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #FFC107;
}

/* ===== Contact Button ===== */
.contact-btn {
  margin-left: 24px;
  background: #FFC107;
  color: #0A1F44;
  padding: 7px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
  margin-left: 22px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #0A1F44;
  min-width: 220px;
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.dropdown-content a {
  padding: 10px 16px;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #FFC107;
  color: #0A1F44;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Body Offset ===== */
body {
  padding-top: 110px; /* important for floating navbar */
}

/* ===== Mobile (Same Centered Style) ===== */
@media (max-width: 768px) {
  header {
    width: calc(100% - 30px);
    padding: 8px 20px;
    border-radius: 35px;
  }

  .hero-image img {
    height: 32px;
  }

  .navbar a {
    margin-left: 14px;
    font-size: 13.5px;
  }

  .contact-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}
/* Home section  */
/* ===============================
   HOME SECTION – FULL WIDTH FIX
================================ */
/* ===============================
   HOME SECTION
================================ */
.home {
  position: relative;

  /* Connect background from top (behind navbar) */
  margin-top: -110px;
  padding-top: 210px;
  padding-bottom: 80px;

  /* Full width background (no side gaps) */
  width: 100vw;
  margin-left: calc(50% - 50vw);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  /* Background */
  background-color: #0A1F44;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );

  /* Inner spacing */
  padding-left: 90px;
  padding-right: 90px;
}

/* ===============================
   LEFT CONTENT
================================ */
.home-content {
  max-width: 520px;
  padding-left: 60px; /* space from left edge */
}

.legacy {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFC107;
  margin-top: 50px;
}

.company-name {
  font-size: 80px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.company-name span {
  display: block;
  font-size: 28px;
  font-weight: 500;
  margin-top: 6px;
}

.home-desc {
  font-size: 18px;
  color: #FFFFFF;
  margin-top: 25px;
  line-height: 1.6;
}

/* ===============================
   RIGHT IMAGE
================================ */
.home-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 100px;
}

.home-image img {
  width: 480px;
  max-width: 100%;
  background: transparent;
  animation: floatImage 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .home {
    flex-direction: column;
    text-align: center;
    padding: 130px 30px 70px;
  }

  .home-content {
    padding-left: 0;
  }

  .home-image {
    justify-content: center;
    margin-top: 40px;
    margin-right: 100px;
  }

  .home-image img {
    width: 340px;
    margin-right: 100px;
  }

  .company-name {
    font-size: 38px;
  }

  .company-name span {
    font-size: 22px;
  }
}

/* About section  */
/* GLOBAL FIX – NO SIDE SCROLL */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* ABOUT SECTION */
.about-section {
    width: 100%;
    padding: 80px 0;

    /* Professional gradient line */
    background: linear-gradient(
        135deg,
        #0d1b3d 0%,
        #122b63 50%,
        #0d1b3d 100%
    );
}

/* REMOVE CONTAINER GAP */
.about-section .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: white;
    font-style: var(--secondary);
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

/* FLEX LAYOUT */
.about-content {
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    color: white;
    font-style: var(--secondary);
}

/* IMAGE LEFT */
.about-image {
    position: relative;
    width: 50%;
    margin: 10px;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* BADGE */
.badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: #ffdd00;
    color: #0d1b3d;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 16px;
}

/* TEXT RIGHT */
.about-text {
    width: 50%;
    padding: 0 60px;
    color: #fbfafa;
    font-size: 20px;
    line-height: 1.9;
    font-style: var(--secondary);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

    .about-text {
        padding: 40px 20px;
        text-align: center;
    }

    .badge {
        right: 50%;
        transform: translateX(50%);
        bottom: 15px;
    }
}
/* Buttons Container */
.about-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Common Button Style */
.about-buttons .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Enquiry Button */
.btn-enquiry {
    background-color: var(--accent); /* Yellow */
    color: var(--primary); /* Dark Blue text */
}

.btn-enquiry:hover {
    background-color: #e6b800;
}

/* Join Our Team Button */
.btn-join {
    background-color: transparent;
    color: var(--secondary); /* White */
    border: 2px solid var(--secondary);
}

.btn-join:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

 
 /* ===============================
  /* ===============================
 /* ===============================
   SERVICES SECTION
================================ */
.services-section {
    width: 100%;
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #0d1b3d 0%,
        #122b63 50%,
        #0d1b3d 100%
    );
}

/* ===============================
   GRID → 3–2 FORMATION
================================ */
/* ===============================
   SERVICES CAROUSEL
================================ */
.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* Same service-box (unchanged look) */
.service-box {
  min-width: 33.333%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

/* Hover effect kept */
.service-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 221, 0, 0.6);
}

/* Carousel buttons */
.carousel-btn {
  background: #ffc107;
  color: #0d1b3d;
  border: none;
  font-size: 32px;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .service-box {
    min-width: 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-box {
    min-width: 100%;
  }

  .carousel-btn {
    display: none; /* swipe only on mobile */
  }
}

/* ===============================
   SERVICE BOX
================================ */
.service-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

/* ICON */
.service-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

/* TITLE */
.service-box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

/* ===============================
   SERVICE LIST → NO DOTS
================================ */
.service-list {
    list-style: none;   /* ❌ remove pointer dots */
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 8px;
}

/* ===============================
   HOVER EFFECT
================================ */
.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 221, 0, 0.6);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Remove centering on medium screens (2 columns) */
    .services-grid .service-box:nth-child(4),
    .services-grid .service-box:nth-child(5) {
        grid-column: auto; /* Reset to auto-placement */
    }
}

/* MOBILE – KEEP SAME 3–2 STRUCTURE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 0 20px;
    }

    .service-box {
        padding: 28px 18px;
        font-size: 14px;
    }
}

/* services end */

.why-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #0d1b3d 0%,
        #122b63 50%,
        #0d1b3d 100%
    );
}

/* CENTER CARD */
.why-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    position: relative;
}

/* LEFT ACCENT LINE */
.why-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 5px;
    background: linear-gradient(180deg, #ffdd00, #ffb700);
    border-radius: 10px;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

/* LIST ITEM */
.why-list li {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ICON */
.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin-right: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffdd00, #ffb700);
    color: #0d1b3d;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.4);
}

/* FINAL NOTE */
.why-note {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    padding-left: 20px;
    border-left: 4px solid #ffdd00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-content {
        padding: 40px 25px;
    }

    .why-list li {
        font-size: 18px;
    }

    .why-note {
        font-size: 20px;
    }

    .why-content::before {
        display: none;
    }
}
  

/* team */
.team-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #0d1b3d 0%,
        #122b63 50%,
        #0d1b3d 100%
    );
}

.team-card {
    background-color: #0A1F44;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}



.team-card img {
    width: 200px;              /* Standard width */
    height: 200px;             /* Standard height */
    object-fit: cover;         /* Fill box without distortion */
    object-position: center;   /* Keep face centered */
    border-radius: 50%;       /* Professional soft rectangle */
    margin: 0 auto 16px;       /* Center image */
    display: block;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
    color: white;
}

.team-card span {
    font-size: 14px;
    opacity: 0.8;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 221, 0, 0.6);
}
/* <!-- letscreatetogether --> */
.cta-section {
  background: linear-gradient(135deg, #0d1b3d, #142a66);
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-overlay {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

.cta-lead {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #e6e9ff;
}

.cta-brand {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 90px 20px;
  }

  .cta-section h2 {
    font-size: 34px;
  }

  .cta-lead {
    font-size: 18px;
  }

  .cta-brand {
    font-size: 17px;
  }
}
/* letscreatethogehtereend */

/* enguiry */
.dual-form-section {
  background: linear-gradient(135deg, #0d1b3d, #142a66);
  padding: 100px 20px;
}

.dual-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0d1b3d;
}

.form-text {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-box button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffdd00;
  color: #0d1b3d;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-box button:hover {
  background-color: #0d1b3d;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 900px) {
  .dual-container {
    flex-direction: column;
  }
}

/* FOOTER SECTION */
.footer-section {
    background-color: #0d1b3d; /* Dark blue */
    color: #ffffff;
    padding: 60px 20px 30px 20px;
    font-family: Arial, sans-serif;
}

/* Footer Container: Flex layout */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Box */
.footer-box {
    flex: 1 1 220px; /* Minimum width 220px, grows as needed */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    border-bottom: 2px solid #ffc107; /* Highlight line under title */
    display: inline-block;
    padding-bottom: 4px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ffc107; /* Yellow accent */
}

/* Footer Map */
.footer-map {
    margin-top: 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #122b63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    background-color: #ffc107;
    color: #0d1b3d;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ffffff33; /* subtle line */
    padding-top: 20px;
    font-size: 14px;
    color: #ffffffaa;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-box {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
 
/* updated */

:root {
  --primary: #0A1F44;
  --secondary: #FFFFFF;
  --accent: #FFC107;
  --text: #EAEAEA;
  --light-bg: #0F2A5F;
}

/* ===============================
   GLOBAL HEADING COLOR (WHITE)
================================ */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
}

/* ===== Centered Floating Navbar ===== */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);
  max-width: 1200px;
  background: #0A1F44;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  border-radius: 50px;
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Logo */
.hero-image img {
  height: 90px;
}

/* Navbar */
.navbar a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14.5px;
  font-weight: 500;
}

.navbar a:hover {
  color: #FFC107;
}

/* Body offset */
body {
  padding-top: 110px;
}

/* ===============================
   HOME
================================ */
.home {
  margin-top: -110px;
  padding: 210px 90px 80px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  gap: 60px;
  background-color: #0A1F44;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 10px
  );
}

.company-name {
  font-size: 80px;
  font-weight: 800;
}

/* ===============================
   ABOUT
================================ */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b3d, #122b63, #0d1b3d);
}

/* ===============================
   SERVICES
================================ */
.services-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d1b3d, #122b63, #0d1b3d);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 40px;
}

.service-box {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===============================
   WHY CHOOSE US
================================ */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1b3d, #122b63, #0d1b3d);
}

/* ===============================
   TEAM
================================ */
.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1b3d, #122b63, #0d1b3d);
}

.team-card {
  background-color: #0A1F44;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.team-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
}

/* ===============================
   CTA
================================ */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0d1b3d, #142a66);
  text-align: center;
}

/* ===============================
   ENQUIRY (EXCEPTION)
================================ */
.dual-form-section {
  background: linear-gradient(135deg, #0d1b3d, #142a66);
  padding: 100px 20px;
}

/* ❌ NOT WHITE — kept dark intentionally */
.dual-form-section .section-title {
  color: #0d1b3d !important;
}

/* ===============================
   FOOTER
================================ */
.footer-section {
  background-color: #0d1b3d;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-title {
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .home {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    width: calc(100% - 30px);
    padding: 8px 20px;
  }

  .company-name {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .dual-container {
    flex-direction: column;
  }
}


/* ===============================
   RESPONSIVE LAYOUT SYSTEM
   Desktop → Tablet → Mobile
================================ */

/* ----------- TABLET (≤1024px) ----------- */
@media (max-width: 1024px) {

  /* NAVBAR */
  header {
    width: calc(100% - 60px);
    padding: 10px 30px;
  }

  /* HOME */
  .home {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 180px 60px 80px;
  }

  .home-image {
    justify-content: center;
    margin-right: 0;
  }

  /* ABOUT */
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
    padding: 30px;
    text-align: center;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TEAM */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FORMS */
  .dual-container {
    flex-direction: column;
  }
}


/* ----------- MOBILE (≤768px) ----------- */
@media (max-width: 768px) {

  /* NAVBAR */
  header {
    width: calc(100% - 24px);
    padding: 8px 18px;
    border-radius: 35px;
  }

  .navbar a {
    font-size: 13px;
    margin-left: 14px;
  }

  /* HOME */
  .home {
    padding: 140px 24px 70px;
  }

  .company-name {
    font-size: 36px;
    line-height: 1.2;
  }

  .company-name span {
    font-size: 20px;
  }

  .home-image img {
    width: 300px;
  }

  /* ABOUT */
  .about-text {
    font-size: 17px;
    line-height: 1.7;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .service-box {
    padding: 26px 18px;
  }

  /* TEAM */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: 160px;
    height: 160px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 32px;
  }

  .cta-lead {
    font-size: 18px;
  }

  /* FORMS */
  .form-box {
    padding: 30px 20px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
} /* ===============================
   CLIENTS AUTO CAROUSEL
================================ */
/* ===============================
   CLIENTS AUTO CAROUSEL
================================ */
.clients-section {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #0d1b3d 0%,
    #122b63 50%,
    #0d1b3d 100%
  );
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 80px;                /* more space for big logos */
  animation: scrollClients 8s linear infinite;
}

/* BIG, COLORFUL LOGOS */
.clients-track img {
  height: 120px;            /* 🔥 BIG SIZE */
  width: auto;
  object-fit: contain;
  filter: none;             /* ✅ full color */
  opacity: 1;
  transition: transform 0.3s ease;
}

.clients-track img:hover {
  transform: scale(1.08);   /* smooth hover zoom */
}

/* Auto scroll animation */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  .clients-track {
    gap: 60px;
  }

  .clients-track img {
    height: 95px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .clients-track {
    gap: 40px;
  }

  .clients-track img {
    height: 75px;
  }
}
 