@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #cfd9dd;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link {
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p, li {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.btn, .nav-link, .footer-links a {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  letter-spacing: .5px;
}

.small, small {
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
}

h1, h2, h3 {
  color: #e69b4a;
  font-weight: 600;
}

.text-large { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.text-meta { font-size: clamp(0.8rem, 1vw, 0.9rem); color: #756969; }

a[href^="tel"],
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: auto;
}
.top-bar {
  position: relative;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: #fff;
  overflow: hidden;
  background: #131c2e;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(230,155,74,0.15), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px);
  background-blend-mode: overlay;
}
.top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.top-bar .contact-left,
.top-bar .contact-right {
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 1;
}
.top-bar .contact-left i,
.top-bar .contact-right i {
  color: #e69b4a;
}
.top-bar .contact-left span,
.top-bar .contact-right span {
  color: #ffffff;
}
.top-bar .social-center {
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 1;
}
.top-bar .social-center a {
  color: #cfd9dd;
  font-size: 1.1rem;
  transition: transform .2s, color .2s;
}
.top-bar .social-center a:hover {
  color: #e69b4a;
  transform: scale(1.3);
}
.navbar {
  background: #181e33;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  padding: 1rem 0;
  border-bottom: 3px solid #e69b4a;
  position: relative;
  z-index: 10;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.branding-logo {
  height: 90px;
  background: #cfd9dd;
  padding: .5rem;
  border-radius: .5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: transform .3s;
}
.branding-logo:hover {
  transform: rotate(-2deg) scale(1.05);
}
.nav-link {
  color: #cfd9dd !important;
  font-weight: 500;
  padding: .75rem 1rem;
  position: relative;
  transition: color .2s, transform .2s;
}
.nav-link:hover {
  color: #e69b4a !important;
  transform: translateY(-2px);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e69b4a;
  transition: width .2s, left .2s;
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
}
.dropdown-toggle::after {
  display: none;
}
.btn-primary, .btn-primary:hover, .hero .btn-primary:hover {
  border: 1px solid #e69b4a;
}
.btn-cta {
  background: #e69b4a;
  color: #181e33;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  box-shadow: 0 6px 20px rgba(230,155,74,0.5);
  transform: translateY(-3px);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-item.dropdown {
  position: relative;
}
.mega-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  background: #141f38;
  border-radius: .5rem;
  border: none;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
  padding: 1.5rem;
  display: none;
  animation: fadeIn .3s ease-out;
  z-index: 20;
}
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown.show > .dropdown-menu {
  display: block;
}
.mega-header {
  text-align: center;
  margin-bottom: 1rem;
  color: #e69b4a;
  font-size: 1.25rem;
  font-weight: 600;
}
.mega-header::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #e69b4a;
  display: block;
  margin: .25rem auto 0;
}
.mega-menu .dropdown-item {
  display: flex;
  align-items: center;
  color: #cfd9dd;
  padding: .75rem 1rem;
  transition: background .2s, color .2s;
  border-radius: .25rem;
  margin-bottom: .5rem;
}
.mega-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.mega-menu .dropdown-item i {
  color: #e69b4a;
  font-size: 1.3rem;
  margin-right: .75rem;
  transition: color .2s;
  line-height: 1;
}
.mega-menu .dropdown-item:hover {
  background: #e69b4a;
  color: #181e33;
}
.mega-menu .dropdown-item:hover i {
  color: #181e33;
}
@media (min-width: 992px) {
  .offcanvas { display: none !important; }
  .navbar-collapse { display: flex !important; }
}
.offcanvas-custom {
  background: #181e33 !important;
}
.offcanvas-custom .offcanvas-body,
.offcanvas-custom .offcanvas-header {
  transition: none !important;
}
.offcanvas-custom .nav-link,
.offcanvas-custom .dropdown-item {
  color: #cfd9dd !important;
  font-weight: 500;
  transition: background .2s, color .2s !important;
}
.offcanvas-custom .nav-link:hover,
.offcanvas-custom .dropdown-item:hover {
  background: #e69b4a;
  color: #181e33 !important;
}
.offcanvas-custom .collapse,
.offcanvas-custom .collapse.show,
.offcanvas-custom .collapsing {
  padding-left: 1.2rem !important;
  transition: none !important;
}
.offcanvas-custom .btn-cta {
  background: #e69b4a !important;
  color: #181e33 !important;
  width: 100%;
  margin: 1rem 0;
}
.navbar-toggler-icon {
  filter: invert(1) !important;
}
.offcanvas-custom .fab {
  color: #cfd9dd;
  transition: transform .2s, color .2s;
}
.offcanvas-custom .fab:hover {
  color: #e69b4a;
  transform: scale(1.2);
}

.footer {
  background: #181e33;
  color: #cfd9dd;
  border-top: 3px solid #e69b4a;
  font-family: 'Poppins', sans-serif;
  padding: 2rem 1rem;
  text-align: center;
}
.footer-logo {
  height: 60px;
  background: #cfd9dd;
  padding: .5rem;
  border-radius: .5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  transition: transform .3s;
}
.footer-logo:hover {
  transform: rotate(-2deg) scale(1.05);
}
.footer-links {
  margin-bottom: 1rem;
}
.footer-links .list-inline-item {
  display: inline-block;
  margin: 0 .5rem;
  position: relative;
}
.footer-links .list-inline-item a {
  color: #cfd9dd;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.footer-links .list-inline-item a:hover {
  color: #e69b4a;
}
.footer-links .list-inline-item:not(:last-child)::after {
  content: "|";
  color: #756969;
  position: absolute;
  right: -0.7rem;
  top: 0;
}
.footer-social {
  margin-bottom: 1rem;
  justify-content: center;
}
.footer-social a {
  color: #cfd9dd;
  font-size: 1.2rem;
  margin: 0 .5rem;
  transition: transform .2s, color .2s;
}
.footer-social a:hover {
  color: #e69b4a;
  transform: scale(1.2);
}
.footer p {
  margin: 0;
  font-size: .9rem;
}
@media (max-width: 776px) {
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
    .footer-links .list-inline-item {
      display: block;
      margin: .5rem 0;
    }
    .footer-links .list-inline-item::after {
      display: none;
    }
    .social-center {
        display:none !important;
    }
    .company-data, .company-data h5 {
        text-align: center !important;
    }
    .company-data h5 {
        display: block !important;
    }
  }
  
.footer {
  background: #181e33;
  color: #cfd9dd;
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer h5 {
  color: #e69b4a;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer a {
  color: #cfd9dd;
  text-decoration: none;
  transition: color .2s;
}
.footer a:hover {
  color: #e69b4a;
}
.footer .banners img {
  max-width: 100%;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-bottom: .5rem;
}
.footer .section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .section-list li {
  margin-bottom: .5rem;
}
.footer .company-data b {
  color: #ffffff;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  font-size: 1.2rem;
}
.footer-credit {
  text-align: center;
  font-size: .9rem;
}
.footer-credit a {
  color: #89D6FB;
  text-decoration: none;
  margin-left: .25rem;
}
@media (max-width: 576px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.footer-bottom {
  display: flex;
  max-width: 1200px;
  margin:auto;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}
.footer-bottom a {
  color: #89D6FB;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }
  .footer-bottom > div {
    width: 100%;
  }
}

.navbar .container-fluid,
.footer .container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.company-data {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: .5rem 1rem;
    text-align: left;
  }
  .company-data h5 {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    color: #e69b4a;
    font-weight: 600;
    margin-bottom: .75rem;
  }
  .company-data h5 i {
    margin-right: .5rem;
    font-size: 1.25rem;
  }
  .company-data p {
    display: contents;
  }
  .company-data p i {
    grid-column: 1;
    color: #cfd9dd;
    font-size: 1.1rem;
    margin-top: .25rem;
  }
  .company-data p span {
    grid-column: 2;
    color: #cfd9dd;
    margin: 0;
    font-size: .95rem;
  }
  .company-data p b {
    color: #ffffff;
  }
  


  .hero .carousel-caption {
    z-index:5 !important;
  }


  .hero {
    position: relative;
    height: 83vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    }
    .hero .carousel-item img {
    height: 83vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: relative;
    z-index: 1;
    }
    .hero .carousel-caption {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 5%;
      width: 45%;
      display: flex;
      align-items: center;
      transform: none;
      z-index: 10;
      animation: fadeInUp .6s ease-out both;
      text-align: left;
    }

    @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
    }
    .hero .caption-content {
    background: rgba(24,30,51,0.85);
    padding: 2rem;
    border-radius: .75rem;
    }
    .hero .carousel-caption h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #e69b4a;
    margin-bottom: .75rem;
    position: relative;
    }
    .hero .carousel-caption h1::after {
    content: "";
    position: absolute;
    left: 0; bottom: -8px;
    width: 50px; height: 3px;
    background: #e69b4a;
    }
    .hero .carousel-caption p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0px;
    color: #cfd9dd;
    }
    .hero .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    }
    .hero .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: .75rem;
    }
    .hero .feature-list li i {
    color: #e69b4a;
    margin-right: .75rem;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    }
    .hero .btn-primary {
    background: #e69b4a;
    color: #181e33;
    padding: .65rem 1.75rem;
    border-radius: .5rem;
    font-weight: 600;
    transition: transform .2s;
    animation: fadeInUp .8s ease-out both;
    }
    .hero .btn-primary:hover {
    transform: translateY(-2px);
    background: #cf8c3d;
    }
    .hero .brand-outside {
    margin-top: 1rem;
    }
    .hero .brand-trust {
    color: #e69b4a;
    font-weight: 600;
    margin-bottom: .5rem;
    }
    .hero-brands {
    display: flex;
    gap: 2rem;
    }
    .hero-brands img {
    max-height: 48px;
    filter: opacity(0.7);
    transition: filter .2s, transform .2s;
    }
    .hero-brands img:hover {
    filter: opacity(1);
    transform: scale(1.05);
    }
    .carousel-indicators {
    bottom: 1rem;
    }
    .carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: rgba(207,217,221,0.6);
    border: none;
    margin: 0 .25rem;
    }
    .carousel-indicators .active {
    background-color: #e69b4a;
    }
    @media (max-width: 992px) {
      .brand-outside p {
        text-align:center;
      }
    .hero .carousel-caption {
        top: 1px;
        width: 100%;
        transform: translateX(-50%);
        left:0px !important;
        right:0px !important;
        padding:20px !important;
    }
    /*
    .certificate-container {
        display:none !important;
    }*/
    .carousel-caption .caption-content {
        display:block !important;
    }
    .certificate-container {
        flex-direction: inherit !important;
        margin-left: 0px !important;
        width:200px !important;
        margin-top:5px !important;
    }
    .certificate-container img {
        max-height:50px !important;
        margin:auto !important;
    }
    .hero .caption-content {
        margin-top:20px !important;
    }
    
    .hero .carousel-caption h1 {
        font-size: 2rem;
    }
    .hero-brands {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    }

    .carousel-caption .caption-content {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 1rem;
    border-radius: .75rem;
    }
    .certificate-container {
        width: 100px;       
        padding: 0.5rem;   
        background: #cfd9dd;
        border-radius: .5rem;
        
        display: flex;            
        flex-direction: column;   
        align-items: center;
        gap: 0.5rem;              
        
        box-sizing: border-box;
        margin-top: 0;
        align-self: end;
        margin-left: auto;
    }

    .certificate-container img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: brightness(1.1);
    }

.hero .carousel-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;  
}

.hero .caption-content {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 1rem;
}
@media (max-width: 776px) {
  .carousel-indicators {
    display: none !important;
  }
}


  .why-us {
    position: relative;
    background: linear-gradient(135deg, #181e33 0%, #17295a 100%);
    color: #cfd9dd;
    padding: 4rem 1rem;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  .why-us::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(230,155,74,0.15), transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
  }
  .why-us h2 {
    position: relative;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
  }
  .why-us h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #e69b4a;
    margin: .75rem auto 0;
  }

  .process-text h2 {
    position: relative;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
  }
  .process-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #e69b4a;
    margin: .75rem auto 0;
  }
  .process-text p.lead {
    color: #cfd9dd;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  .why-us p.lead {
    color: #cfd9dd;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  .feature-card {
    position: relative;
    background: #131c2e;
    border-radius: .75rem;
    padding: 2rem 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform .3s, box-shadow .3s;
  }
  .feature-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(230,155,74,0.2);
    border-radius: 50%;
    transition: transform .3s;
  }
  .feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  }
  .feature-card:hover::before {
    transform: scale(1.5);
  }
  .feature-card i {
    display: inline-block;
    background: #e69b4a;
    color: #181e33;
    padding: .75rem;
    border-radius: 50%;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    transition: transform .3s;
  }
  .feature-card:hover i {
    transform: rotate(-15deg);
  }
  .feature-card h3 {
    color: #cfd9dd;
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }
  .feature-card p {
    color: #cfd9dd;
    font-size: .95rem;
    line-height: 1.4;
  }
  @media (max-width: 576px) {
    .why-us h2 { font-size: 2rem; }
    .why-us p.lead { font-size: 1rem; }
    .feature-card { padding: 1.5rem 1rem; }
  }

  .content-container {
    background: #131c2e;          
  }


 .process-steps {
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  .process-steps h2 {
    color: white;
    font-size: clamp(2rem,5vw,2.5rem);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .step {
    background: #141f38;
    border-radius: .75rem;
    padding: 1.5rem;
    width: 180px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  }
  .step-circle {
    width: 60px;
    height: 60px;
    background: #131c2e;
    border: 4px solid #17295a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e69b4a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all .3s;
  }
  .step-circle:hover {
    background: #e69b4a;
    border-color: #e69b4a;
    color: #181e33;
    transform: scale(1.1) rotate(-10deg);
  }
  .step-circle i {
    pointer-events: none;
  }
  .step h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .5rem;
    text-transform: uppercase;
  }
  .step p {
    color: #cfd9dd;
    font-size: .85rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
  }
  .step-arrow {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e69b4a;
    font-size: 1.5rem;
    margin: 0 .75rem;
    transition: transform .3s, color .3s;
  }
  .step-arrow:hover {
    transform: translateX(5px);
    color: #cf8c3d;
  }
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
    }
    .step-arrow {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .steps {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .step {
      width: auto;  
      margin: 0; 
    }
    .step-arrow {
      display: none;
    }
  }
  

  .creative-services {
    background: #131c2e;
    color: #cfd9dd;
    padding: 3rem 1rem;
    font-family: 'Poppins', sans-serif;
  }
  .creative-services h2 {
    color: #e69b4a;
    font-size: clamp(1.75rem,5vw,2.25rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    position: relative;
  }
  .creative-services h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #e69b4a;
    margin: .5rem auto 1.5rem;
  }
  .services-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
.services-timeline::before {
  display: none;
}
  .service-item {
    position: relative;
    width: 50%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
  }
  .service-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 2rem;
    padding-left: 1rem;
  }
  .service-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  .service-icon {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e69b4a;
    color: #181e33;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }
  .service-content {
    background: #141f38;
    border-radius: .5rem;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    transition: transform .2s;
  }
  .service-item:hover .service-content {
    transform: translateY(-3px);
  }
  .service-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: .5rem;
  }
  .service-content p {
    color: #cfd9dd;
    font-size: .9rem;
    line-height: 1.4;
    margin: 0;
  }
  @media (max-width: 768px) {
    .services-timeline::before { left: 20px; }
    .service-item,
    .service-item:nth-child(even) {
      width: 100%;
      left: 0;
      text-align: left;
    }
    .service-icon { left: 20px; top: 1.25rem; }

    .service-item:nth-child(odd) {
        left: 0;
        text-align: left;
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
    .service-item:nth-child(even) {
        left: 0;
        text-align: left;
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
  }

  .team-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #cfd9dd;
    padding: 4rem 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }
  .team-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,155,74,0.2), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }
  .team-image {
    flex: 0 0 300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .team-image img {
    display: block;
    width: 100%;
    max-width: 300px;
    border-radius: 1.5rem;
    filter: brightness(0.6);
    transition: filter .3s, transform .3s;
  }
  .team-image:hover img {
    filter: brightness(0.4);
    transform: scale(1.05);
  }
  .team-text {
    flex: 1 1 400px;
    padding: 0 2rem;
    z-index: 1;
    text-align:left !important;
  }
  .team-text h2 {
    color: white;
    font-size: clamp(2rem,5vw,2.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .team-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .team-text .btn-primary {
    background: #e69b4a;
    color: #181e33;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .team-text .btn-primary:hover {
    background: #cf8c3d;
    transform: translateY(-2px);
  }
  @media (max-width: 768px) {
    .team-section {
      flex-direction: column;
      text-align: center;
    }
    .team-text {
      padding: 2rem 0 0;
    }
    .team-section::before { display: none; }
  }



  .flip-services {
    background: #131c2e;
    padding: 4rem 1rem;
    font-family: 'Poppins', sans-serif;
    color: #cfd9dd;
    text-align: center;
  }
  .flip-services h2 {
    color: #e69b4a;
    font-size: clamp(2rem,5vw,2.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
  }
  .flip-services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #e69b4a;
    margin: .75rem auto 0;
  }
  .flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .flip-card {
    perspective: 1000px;
  }
  .flip-card-inner {
    position: relative;
    width: 100%;
    padding-top: 100%; /* square */
    transition: transform .6s;
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-face {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backface-visibility: hidden;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .flip-card-front {
    background: #17295a;
  }
  .flip-card-front i {
    font-size: 3rem;
    color: #e69b4a;
    margin-bottom: 1rem;
  }
  .flip-card-front h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
  }
  .flip-card-back {
    background: #141f38;
    transform: rotateY(180deg);
    padding: 2rem;
  }
  .flip-card-back p {
    color: #cfd9dd;
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  .flip-card-back a {
    background: #e69b4a;
    color: #181e33;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
  }
  .flip-card-back a:hover {
    background: #cf8c3d;
  }


  

  /* SECTION: Solicită Ofertă – Next Level Creativ */
  .creative-quote {
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #141f38 0%, #17295a 100%);
    color: #cfd9dd;
    font-family: 'Poppins', sans-serif;
  }

  /* Animated floating circles */
  .creative-quote::before,
  .creative-quote::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(230,155,74,0.15);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
  }
  .creative-quote::before {
    width: 300px; height: 300px;
    top: -100px; left: -100px;
  }
  .creative-quote::after {
    width: 200px; height: 200px;
    bottom: -80px; right: -80px;
    background: rgba(207,217,221,0.1);
    animation-duration: 10s;
  }
  @keyframes float {
    0%,100% { transform: translateY(0) translateX(0); }
    50%    { transform: translateY(20px) translateX(20px); }
  }

  .creative-quote .quote-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    z-index: 1;
  }

  /* Headline */
  .creative-quote h2 {
    color: #e69b4a;
    font-size: clamp(2.5rem,6vw,3rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }
  .creative-quote h2::after {
    content: "";
    display: block;
    width: 80px; height: 4px;
    background: #e69b4a;
    margin: .75rem 0;
  }

  /* Intro text */
  .creative-quote .intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Call-to-action button */
  .creative-quote .cta-btn {
    display: inline-block;
    background: #e69b4a;
    color: #181e33;
    padding: .75rem 2rem;
    border-radius: .5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s, transform .3s;
  }
  .creative-quote .cta-btn:hover {
    background: #cf8c3d;
    transform: translateY(-3px);
  }

  /* Form styling */
  .creative-quote .quote-form {
    background: #131c2e;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.7);
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .creative-quote .quote-form .form-group {
    position: relative;
    z-index: 1;
  }
  .creative-quote .quote-form label {
    display: block;
    font-size: .85rem;
    margin-bottom: .25rem;
    color: #cfd9dd;
  }
  .creative-quote .quote-form input,
  .creative-quote .quote-form textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: none;
    border-radius: .5rem;
    background: #17295a;
    color: #fff;
    transition: background .3s;
  }
  .creative-quote .quote-form input:focus,
  .creative-quote .quote-form textarea:focus {
    background: #1f2b5f;
    outline: none;
  }
  .creative-quote .quote-form textarea {
    grid-column: 1 / span 2;
    resize: vertical;
  }
  .creative-quote .quote-form .submit-wrap {
    grid-column: 1 / span 2;
    text-align: right;
  }
  .creative-quote .quote-form .submit-btn {
    background: #e69b4a;
    color: #181e33;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s, transform .3s;
  }
  .creative-quote .quote-form .submit-btn:hover {
    background: #cf8c3d;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .creative-quote .quote-container {
      grid-template-columns: 1fr;
    }
    .creative-quote .quote-form {
      grid-template-columns: 1fr;
    }
    .creative-quote .quote-form .submit-wrap {
      text-align: center;
    }
  }


  .fleet-contact {
    background: #181e33;
    color: #cfd9dd;
    font-family: 'Poppins', sans-serif;
  }

  .fleet-hero {
    position: relative;
    background: url('/assets/img/IMG_4142.jpg') center/cover no-repeat;
    height: 300px;
    overflow: hidden;
  }
  .fleet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24,30,51,0.6);
  }
  .fleet-hero .fleet-text {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    color: #e69b4a;
    z-index: 1;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .fleet-contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .info-item i {
    font-size: 1.5rem;
    color: #e69b4a;
    width: 32px;
    text-align: center;
  }
  .info-item a, .info-item span {
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: color .2s;
  }
  .info-item a:hover {
    color: #e69b4a;
  }
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-icons a {
    font-size: 1.25rem;
    color: #cfd9dd;
    transition: color .2s, transform .2s;
  }
  .social-icons a:hover {
    color: #e69b4a;
    transform: scale(1.2);
  }

  .map-container {
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    filter: brightness(0.9);
  }

  @media (max-width: 768px) {
    .fleet-hero { height: 200px; }
    .fleet-hero .fleet-text {
      font-size: clamp(1.25rem, 5vw, 1.5rem);
      left: 1rem;
      bottom: 1rem;
    }
    .contact-info { align-items: center; text-align: center; }
    .info-item { justify-content: center; }
  }


  #preloader {
    position: fixed;
    inset: 0;
    background: #181e33;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
  }
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top-color: #e69b4a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .cookie-popup {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 320px;
    background: #181e33;
    color: #cfd9dd;
    font-family: 'Poppins', sans-serif;
    border-radius: .5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .cookie-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #17295a;
    padding: .75rem 1rem;
  }
  .cookie-popup__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #e69b4a;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .cookie-popup__close {
    background: none;
    border: none;
    color: #cfd9dd;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color .2s;
  }
  .cookie-popup__close:hover {
    color: #e69b4a;
  }
  .cookie-popup__body {
    padding: 1rem;
    font-size: .875rem;
    line-height: 1.4;
  }
  .cookie-popup__body a {
    color: #e69b4a;
    text-decoration: underline;
  }
  .cookie-popup__actions {
    display: flex;
    justify-content: flex-end;
    padding: .75rem 1rem 1rem;
    gap: .5rem;
  }
  .cookie-popup__btn {
    background: #e69b4a;
    color: #181e33;
    border: none;
    border-radius: .5rem;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .cookie-popup__btn:hover {
    background: #cf8c3d;
    transform: translateY(-2px);
  }
  @media (max-width: 776px) {
    .cookie-popup {
      width: 90%;
      bottom: 1rem;
      right: 5%;
    }
    .top-bar {
        display:block !important;
    }
  }