
/* Premium Business Consulting Design System */
    :root {
        /* Base colors - Clean and professional */
        --background: hsl(0, 0%, 100%);
        --foreground: hsl(215, 25%, 27%);

        /* Primary - Deep sophisticated blue */
        --primary: hsl(198, 77%, 52%);
        --primary-foreground: hsl(0, 0%, 100%);
        --primary-light: hsl(215, 100%, 25%);
        --primary-dark: hsl(215, 100%, 12%);

        /* Secondary - Premium gold accent */
        --secondary: hsl(0, 0%, 0%);
        --secondary-foreground: hsl(215, 25%, 27%);
        --secondary-light: hsl(45, 100%, 75%);
        --secondary-dark: hsl(45, 100%, 55%);

        /* Muted tones */
        --muted: hsl(215, 15%, 96%);
        --muted-foreground: hsl(215, 15%, 45%);

        /* Status colors */
        --success: hsl(142, 71%, 45%);
        --border: hsl(215, 15%, 92%);

        /* Radius */
        --radius: 0.75rem;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        /*font-family: "Open Sans", sans-serif;*/
        font-family: "Poppins", sans-serif;
        letter-spacing: var(--letter-spacing-default);
        color: var(--foreground);
        background: var(--background);
        font-optical-sizing: auto;
    }
    
    .lead {
        font-size: 1.05rem;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 1px;
    }
    
    @media (min-width: 1200px) {
        .display-4 {
            font-size: 2.5rem;
        }
    }
    h1,h2,h3{
        font-size: 2.3rem;
    }
    
    h4,h5,h6{
        font-size: 1rem;
        line-height: 28px;
        letter-spacing: 1px;
    }

    p{
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        line-height: 26px;
        letter-spacing: 1px;
    }

    .accordion-body{
        font-weight: 400;
        font-style: normal;
        line-height: 26px;
        letter-spacing: 1px;
    }

    ul{
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        line-height: 28px;
        letter-spacing: 1px;
    }
    

    /* Premium gradients */
    .gradient-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
    }

    .gradient-luxury {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    .gradient-accent {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    }

    .gradient-subtle {
        background: linear-gradient(180deg, var(--background), var(--muted));
    }

    /* Animation classes */
    .animate-fade-in-up {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .animate-scale-in {
        animation: scaleIn 0.5s ease-out forwards;
    }

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    /* Custom button styles */
    .btn-luxury {
        background: linear-gradient(135deg, var(--primary), var(--primary));
        color: var(--primary-foreground);
        padding: 1rem 2rem;
        border-radius: var(--radius);
        font-weight: 600;
        /*box-shadow: 0 20px 40px hsla(215, 100%, 18%, 0.15);*/
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        height: 100%;
    }

    .btn-luxury:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px hsla(215, 100%, 18%, 0.25);
        color: var(--primary-foreground);
    }

    .btn-accent {
        background: linear-gradient(135deg, var(--secondary-light), var(--secondary-light));
        color: var(--secondary-foreground);
        padding: 16px 28px;
        border-radius: var(--radius);
        font-weight: 600;
        /*box-shadow: 0 8px 25px hsla(215, 100%, 18%, 0.12);*/
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        height: 100%;
    }

    .btn-accent:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px hsla(215, 100%, 18%, 0.15);
        color: var(--secondary-foreground);
    }

    /* Card styles */
    .card-luxury {
        background: var(--background);
        border-radius: calc(var(--radius) * 1.5);
        box-shadow: 0 20px 40px hsla(215, 100%, 18%, 0.15);
        border: 1px solid var(--border);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .card-luxury:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px hsla(215, 100%, 18%, 0.25);
    }

    /* Text gradient */
    .text-gradient {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-bg {
      background: rgb(252 250 245);
      min-height: 80vh;
      position: relative;
      overflow: hidden;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /*background: url('../images/index-banner.jpeg') center/cover;*/
      opacity: 0.1;
      z-index: 0; /* ðŸ‘ˆ isko background pe bhej diya */
    }

    .hero-bg > * {
      position: relative;
      z-index: 1; /* ðŸ‘ˆ content ko upar le aaya */
    }


    /* Navbar */
    .navbar-custom {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px hsla(215, 100%, 18%, 0.12);
    }

    /* Service icons */
    .service-icon {
        width: 4rem;
        height: 4rem;
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .service-icon:hover {
        transform: scale(1.1);
    }

    /* Stats */
    .stats-bg {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    /* Footer */
    footer {
        background: var(--foreground);
        color: var(--background);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-bg {
            min-height: auto;
            padding: 3rem 0;
        }
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--muted);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-light);
    }

    .team-card {
      transition: transform 0.4s, box-shadow 0.4s;
      background-color: #fff;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      z-index: 1;
    }

    /* Gradient border effect */
    .team-card::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 3px; /* border thickness */
      border-radius: 12px;
      background: linear-gradient(
        90deg,
        #2eaede,
        #ffffff,
        #000000,
        #2eaede
      );
      background-size: 300% 300%; /* movement ke liye */
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      z-index: -1;
      transition: all 0.3s ease-in-out;
    }

    /* Hover par border ke andar gradient move karega */
    .team-card:hover::before {
      animation: flowLights 3s linear infinite;
    }

    @keyframes flowLights {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 200% 50%;
      }
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .team-img img {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #1a2a6c; /* Primary color */
      transition: transform 0.4s;
    }

    .team-card:hover .team-img img {
      transform: scale(1.1);
    }

    .team-card .btn {
      transition: all 0.3s ease;
    }

    .team-card .btn:hover {
      background-color: #ffcc00; /* Accent hover color */
      color: #1a2a6c;
      transform: scale(1.05);
    }

    @media (max-width: 767px) {
      .team-img img {
        width: 120px;
        height: 120px;
      }
    }

    .footer-section {
      background: #0b2a4c; /* dark blue background */
      color: #fff;
      font-size: 0.9rem;
    }

    .footer-section a {
      color: #fff;
      text-decoration: none;
      position: relative;
      display: inline-block;
      transition: color 0.3s;
      padding: 4px;
    }

    .footer-section a .arrow {
      opacity: 0;
      margin-left: 5px;
      transition: opacity 0.3s, transform 0.3s;
    }

    .footer-section a:hover {
      color: #27aae3;
    }

    .footer-section a:hover .arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    .footer-section ul {
      padding-left: 0;
      list-style: none;
    }

    .footer-section .gap-2 a {
      font-size: 1.1rem;
    }

    .footer-section .gap-2 a:hover {
      color: #ffcc00;
    }

    @media (max-width: 767px) {
      .footer-section .row > div {
        margin-bottom: 30px;
      }
    }

  /* Top Bar */
  .top-bar a:hover {
    text-decoration: none;
  }

  /* Dropdown Animation */
  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 3px solid #007bff; /* Top border */
  }
  .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  /* Optional: Smooth hover for dropdown items */
  .dropdown-item {
    transition: all 0.3s ease;
  }
  .dropdown-item:hover {
    background-color: #f1f1f1;
    padding-left: 15px;
  }

  .social-icons a{
    padding: 0px 10px;
  }
  .kinetic-heading {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #27ade1;
    animation: kinetic 2s infinite alternate;
  }
    @keyframes kinetic {
      0% { transform: translateX(0); }
      100% { transform: translateX(10px); }
    }

    .flip-card {
        background-color: transparent;
        perspective: 1000px;
        width: 100%;
        height: 100%;
    }

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem 1rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front {
  background: #fff;
}

.flip-card-front img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a2a6c;
  margin-bottom: 1rem;
}

.flip-card-front h5 {
  margin-bottom: 0.25rem;
}

.flip-card-front p {
  font-size: 0.9rem;
  color: #6c757d;
}

.flip-card-back {
  background: linear-gradient(135deg, #2eaede, #000000ed);
  color: #fff;
  transform: rotateY(180deg);
  padding: 2rem;
}

.flip-card-back h5 {
  margin-bottom: 0.75rem;
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffcc00;
  margin: 0 2px;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .flip-card-inner {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .flip-card-inner {
    height: 420px;
  }
}

.business-step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 15px;
}
.business-step .step-number {
    transition: all 0.3s ease;
}
.business-step:hover .step-number {
    color: #ffcc00;
}

.headerheading a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 15px;
    color: var(--bs-dropdown-header-color);
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
}

.flip-card {
  width: 100%;
  max-width: 300px; /* card ka size control karne ke liye */
}


.owl-carousel .item {
  display: flex;
  justify-content: center; /* mobile me single card center ke liye */
}

.flip-card {
  width: 100%;
  max-width: 300px; /* card ka fixed size */
  margin: 0; /* Desktop me gap remove */
}

.owl-carousel .owl-stage-outer {
  padding: 0 !important; /* stage padding remove */
}

/* Dots */
.owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.owl-dot.active {
  background: #454e63; /* active dot color */
}

/* Arrows */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #454e63;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.mycustomnavbutton .owl-nav button{
    position: absolute !important;
    top: 40% !important;
}

.owl-nav .owl-prev { left: -10px; }
.owl-nav .owl-next { right: -10px; }


.owl-carousel .flip-card {
    margin: 0; /* Card ke andar ka extra margin khatam */
    display: flex;
    justify-content: center; /* Mobile me center align */
}

.owl-carousel .flip-card-inner {
    width: 100%; 
}

@media (max-width: 576px) {
    .owl-carousel .flip-card-inner {
        max-width: 95%; /* Mobile pe thoda padding from left-right */
        margin: 0 auto; /* Center align */
    }
}

.owl-theme .owl-nav{
    font-size: 30px;
    background: black;
    color: black;
    font-weight: bold;
}


.customform {
    background: #ffffff;
    padding: 20px 50px;
    color: #000;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0px black;
}

.customform h2{
    text-align: center;

}

a{
    text-decoration: none;
    color: #26aae3;
}
/*section .col-md-4 div:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }*/


  .image-wrapper {
      width: 100%;
      height: 450px;         /* desktop fix */
      overflow: hidden;
    }

    .image-wrapper img {
      object-fit: cover;
      object-position: center;
    }

    @media (max-width: 767px) {
      .image-wrapper {
        height: 250px;       /* mobile fix */
      }
    }

    .image-container {
  width: 100%;
  height: 450px; /* desktop */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .image-container {
    height: 250px; /* mobile ke liye chhoti height */
  }
}

.custom-icon-phone{
    background: #5cd036;
    padding: 7px;
    border-radius: 100%;
}

.custom-icon-whatsapp{
    background: #49c95a;
    padding: 7px;
    border-radius: 100%;
    padding-top: 8px;
}

/* Container for buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Common button style */
.floating-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 2s infinite ease-in-out;
}

/* WhatsApp button */
.floating-buttons a.whatsapp {
    background-color: #25D366;
}

/* Call button */
.floating-buttons a.call {
    background-color: #26aae3;
}

/* Hover animation */
.floating-buttons a:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive icon size for mobile */
@media screen and (max-width: 480px) {
    .floating-buttons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon.youtube { background: #FF0000; }
.social-icon.tiktok { background: #010101; }
.social-icon.whatsapp { background: #25D366; }
.social-icon.instagram { background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045); }
.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.linkedin { background: #0077b5; }

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 0.9;
}

#mission-vision .p-4:hover {
    transform: translateY(-10px);
}

.service-card:hover {
    transform: translateY(-8px);
    transition: transform 0.3s;
}

.owl-carousel .owl-stage-outer{
    padding: 20px 0 !important;
    border-radius: 20px;
}

.alert {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

#formMessage{
    border-radius: 10px;
    font-family: auto;
}


#slider {
    background-color: #121212;
  }

  .sarab-slider-img {
    height: 600px;
    object-fit: cover;
    object-position: bottom;
  }

  /* Overlay on images */
  .sarab-slider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgb(252 250 245);
    z-index: 3;
  }

  /* Caption container */
  .sarab-slider-caption {
    z-index: 5;
    max-width: 700px;
    color: black;
  }

  /* Animate content */
  .sarab-slider-caption h1,
  .sarab-slider-caption p,
  .sarab-slider-caption a.btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .carousel-item.active .sarab-slider-caption h1,
  .carousel-item.active .sarab-slider-caption p,
  .carousel-item.active .sarab-slider-caption a.btn {
    opacity: 1;
    transform: translateY(0);
  }



  /* New In December business setup new page */

.aa-offer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.aa-offer-box.reverse {
  flex-direction: row-reverse;
}

.aa-offer-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
}

.aa-offer-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.aa-step-number {
  font-family: "Vast Shadow", serif;
  font-size: 100px;
  line-height: 1;
  color: #767676;
}

.aa-vertical-line {
  width: 1px;
  height: 200px;
  background: #767676;
  margin-top: 10px;
}

.aa-offer-content {
  max-width: 500px;
  text-align: left;
}

.aa-offer-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.aa-offer-content p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
  .aa-offer-box,
  .aa-offer-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .aa-offer-image {
    order: -1;
  }

  .aa-offer-line {
    display: none;
  }

  .aa-offer-content {
    /*text-align: center;*/
    margin-top: 10px;
  }

  .aa-offer-content h3 {
    font-size: 20px;
  }

  .aa-offer-content p {
    font-size: 15px;
  }
}



/* ========== LOGO STANDARD FIX ========== */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 55px;
  width: 100%;
  object-fit: contain;
}

/* ========== NORMAL HEADER ========== */
#mainHeader {
  transition: opacity 0.35s ease, transform 0.35s ease;
  background: #fcfaf5;
}

#mainHeader.hide {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

/* ========== SCROLL HEADER ========== */
#scrollHeader {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  transition: top 0.45s ease;
  z-index: 9999;
}

/* visible state */
#scrollHeader.visible {
  top: 0;
  border-bottom: solid 1px #26aae2;
  box-shadow: 1px 1px 6px 0px #26aae3;
}

/* links */
#scrollHeader .nav-link {
  color: #fff;
  font-weight: 500;
}

#scrollHeader .nav-link:hover,
#scrollHeader .dropdown-item:hover {
  color: #26aae3;
  border-radius: 12px;
}

/* dropdown */
#scrollHeader .dropdown-menu {
  background: #111;
  border-radius: 10px;
}

#scrollHeader .dropdown-item {
  color: #fff;
}

/* hamburger */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}



.h3customclass {
  transition: all 0.35s ease;
  position: relative;
  background: #fff;
}

/* Icon base */
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  /*border-radius: 50%;
  border: 1px solid #000;*/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.feature-icon i {
  font-size: 26px;
  color: #26aae3;
  transition: all 0.35s ease;
}

/* Hover Effect */
.h3customclass:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Icon hover */
.h3customclass:hover .feature-icon {
  background-color: #26aae3;
  border-color: #26aae3;
}

.h3customclass:hover .feature-icon i {
  color: #fff;
}

/* Heading subtle color change */
.h3customclass h4 {
  transition: color 0.35s ease;
}

.h3customclass:hover h4 {
  color: #26aae3;
}

.h3customclass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(38, 170, 227, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.h3customclass:hover::after {
  opacity: 1;
}

.pro-image-box {
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: 12px;
}

.pro-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mainHeader .custom-toggler {
    border: none;
}

#mainHeader .custom-toggler span {
    display: block;
    width: 23px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
}


/* Tabs Styling */
.nav-tabs .nav-link {
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 5px;
  transition: 0.3s;
  color: #000;
}
.nav-tabs .nav-link.active {
  background-color: #26aae3;
  color: #000000;
  font-weight: 600;
}
.nav-tabs .nav-link:hover {
  background-color: #27abe363;
  color: #e90e15;
}
.tab-content h4 {
  margin-top: 20px;
  font-weight: 600;
  color: #111;
}
.tab-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}


.aa-poa-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.aa-poa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.aa-poa-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.aa-poa-icon i {
  transition: transform 0.3s, color 0.3s;
}
.aa-poa-card:hover .aa-poa-icon i {
  transform: scale(1.2);
  color: #ff3b3b; /* hover icon color change */
}
@media (max-width: 992px) {
  .aa-poa-card {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .aa-poa-card {
    margin-bottom: 20px;
  }
}

.pro-coverage-section {
  background: #f8f9fb;
}

.pro-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.pro-icon {
  width: 65px;
  height: 65px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}

.pro-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.pro-card p {
  line-height: 1.65;
}

.pro-card ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.pro-card ul li {
  margin-bottom: 6px;
}

.pro-industries-clean {
  background: #f8f9fb;
}

.pro-clean-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.pro-clean-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.pro-clean-card img {
  width: 100%;
  object-fit: cover;
}

.pro-clean-content {
  padding: 28px;
}

.pro-clean-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.pro-clean-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.pro-clean-content ul li {
  margin-bottom: 6px;
}

.pro-steps-section {
  background: #fafafa;
}

.pro-step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  position: relative;
  transition: all 0.3s ease;
}

.pro-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: #26aae3;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
}

.pro-list {
  padding-left: 18px;
}

.pro-list li {
  margin-bottom: 8px;
}

.pro-documents-section {
  background: #ffffff;
}

.doc-block {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e9e9e9;
  background: #fafafa;
}

.doc-list {
  padding-left: 18px;
  margin-bottom: 16px;
}

.doc-list li {
  margin-bottom: 7px;
}

.highlight-block {
  background: #fff5f5;
  border-color: #f1c1c1;
}

.step-block {
  background: #ffffff;
}

.step-list {
  padding-left: 18px;
  margin-bottom: 12px;
}

.step-list li {
  margin-bottom: 8px;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .step-block {
    text-align: left;
  }
}

.pro-pricing-section {
  background: #f7f8fa;
}

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(233,14,21,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: #27abe3;
  font-size: 22px;
}

.pricing-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

.two-column {
  columns: 2;
}

@media (max-width: 767px) {
  .two-column {
    columns: 1;
  }
}

/*section h3 {
  position: relative;
}

section h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #27aae3;
  display: block;
  margin-top: 8px;
}*/

.hover-shadow:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0,0,0,0.1); 
    transition: all 0.3s ease-in-out; 
}

.company-setup-why p {
  color: #555;
  line-height: 1.7;
}

.benefit-box {
  padding: 14px 16px;
  border-left: 3px solid #26aae3;
  background: #f9f9f9;
  border-radius: 6px;
}

.benefit-box strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.compare-card {
  height: 100%;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.compare-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.compare-card p {
  font-size: 14px;
  margin: 0;
}

.company-setup-structure p {
  color: #555;
  line-height: 1.7;
}

.setup-type {
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.setup-head h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.setup-panel {
  height: 100%;
  padding: 22px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.setup-panel h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  border-left: 3px solid #26aae3;
  padding-left: 10px;
}

.setup-panel ul {
  padding-left: 18px;
  margin: 0;
}

.setup-panel ul li {
  /*font-size: 14px;*/
  margin-bottom: 6px;
}

.setup-footer {
  font-size: 14px;
  color: #444;
  background: #f9f9f9;
  padding: 14px 18px;
  border-radius: 8px;
}

.setup-footer strong {
  color: #000;
}

.legal-forms p {
  color: #555;
  line-height: 1.7;
}

.legal-forms h3 {
  /*font-size: 22px;*/
  font-weight: 600;
  margin-bottom: 12px;
}

.info-block {
  margin-top: 14px;
  padding: 10px 10px;
  background: #f9f9f9;
  border-left: 3px solid #26aae3;
  border-radius: 6px;
}

.info-block strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.company-icon i{
  color: #26aae3;
}

.company-vertical-line {
    width: 1px;
    height: 400px;
    background: #767676;
    margin-top: 10px;
}












.company-timeline-section h2 {
  margin-bottom: 12px;
}

.timeline-block {
  padding: 22px 24px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 20px;
}

.timeline-block.highlight {
  background: #f9f9f9;
}

.timeline-block h4 {
  margin-bottom: 10px;
}

.timeline-block ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.timeline-block ul li {
  margin-bottom: 6px;
}

.timeline-block p {
  margin-bottom: 6px;
}

.timeline-block .note {
  color: #666;
}

.delay-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.delay-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    flex-wrap: wrap;
}

.delay-item span {
  min-width: 32px;
  height: 32px;
  background: #26aae3;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.delay-item p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .delay-list {
    grid-template-columns: 1fr;
  }
}

.office-options-section {
  background-color: #f8f9fa;
}

.section-title {
  margin-bottom: 12px;
}


.office-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.office-card h3 {
  margin-bottom: 15px;
}

.office-card h3 i {
  margin-right: 10px;
}

.office-card p {
  color: #555;
}

.office-card ul {
  margin-top: 15px;
  padding-left: 18px;
}

.office-card ul li {
  margin-bottom: 8px;
}

.office-card.wide {
  padding: 35px;
}

.office-image {
  border-radius: 16px;
}

.two-column {
  column-count: 2;
}

.banking-support-wrapper {
  background: #f8fafc;
}

.banking-card {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  position: relative;
}

.banking-icon {
  width: 70px;
  height: 70px;
  background: #eef2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #26aae3;
  font-size: 30px;
}

.banking-heading {
  margin-bottom: 20px;
}

.banking-description {
  margin: 0 auto;
}

.uae-bank-account-section {
  background: #f9fbfd;
}

.section-title {
  font-weight: 700;
}

.section-intro {
  line-height: 1.7;
  color: #444;
}

.section-note {
  background: #eef4ff;
  padding: 15px 20px;
  border-left: 4px solid #0d6efd;
  border-radius: 8px;
  margin: 25px 0;
}

.content-block {
  margin-top: 45px;
}

.content-block h3 {
  margin-bottom: 20px;
}

.content-block h3 i {
  color: #0d6efd;
  margin-right: 10px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 20px;
}

.doc-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.doc-box h4 {
  margin-bottom: 12px;
}

.doc-box ul,
.challenge-list,
.timeline-list {
  padding-left: 18px;
  line-height: 1.7;
}

.challenge-list li,
.timeline-list li {
  margin-bottom: 10px;
}

.bank-focus-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}

.bank-focus-card h4 {
  margin-bottom: 15px;
}

.bank-focus-card ul {
  padding-left: 18px;
  line-height: 1.7;
}

.closing-note {
  margin-top: 20px;
}

.post-setup-compliance {
  background: #f8fafc;
}

.section-title {
  margin-bottom: 15px;
}

.section-intro {
  line-height: 1.7;
  color: #444;
}

.compliance-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.compliance-card.wide {
  padding: 35px;
}

.compliance-card.highlight {
  border-left: 6px solid #0d6efd;
}

.compliance-card h3 {
  margin-bottom: 20px;
}

.compliance-card h4 {
  margin-top: 18px;
}

.compliance-card ul {
  padding-left: 20px;
  line-height: 1.7;
}

.check-list li {
  margin-bottom: 8px;
}

.help-box {
  margin-top: 20px;
  background: #eef4ff;
  padding: 18px;
  border-radius: 10px;
}

.help-box strong {
  display: block;
  margin-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.docs-cards-section {
  background: #f9f9f9;
}

.main-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  height: 100%;
}

.main-card h3 {
  margin-bottom: 20px;
  border-left: 4px solid #26aae3;
  padding-left: 12px;
}

.sub-card {
  background: #f8f9fa;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 15px;
}

.sub-card h4 {
  margin-bottom: 10px;
}

.sub-card ul {
  padding-left: 18px;
  margin: 0;
}

.sub-card ul li {
  margin-bottom: 6px;
}

.highlight-card {
  background: #fff;
  border-left: 4px solid #26aae3;
}

.dark-card {
  background: #fff;
  color: #000;
}

.dark-card h3 {
  border-color: #26aae3;
}

.freezone-simple-card {
  background: linear-gradient(135deg, #2eaede, #000000ed);
  border-radius: 12px;
  padding: 25px 15px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 80%;
}

.freezone-simple-card:hover {
  transform: translateY(-5px);
}

/* Logo container */
.logo-box {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Logo auto fit */
.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}













