
/* 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;
        letter-spacing: var(--letter-spacing-default);
        line-height: 1.6;
        color: var(--foreground);
        background: var(--background);
        font-optical-sizing: auto;
    }
    
    .lead {
        font-size: 1.05rem;
        font-weight: 300;
    }
    
    @media (min-width: 1200px) {
        .display-4 {
            font-size: 3rem;
        }
    }
    h1,h2,h3{
        font-size: 3rem;
    }
    
    h4,h5,h6{
        font-size: 1.1rem;
    }
    

    /* 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: 1rem 2rem;
        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: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      min-height: 100vh;
      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);
}
.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;
}

.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;
}
/*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: #007bff;
}

/* 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: rgba(0,0,0,0.35); /* light black overlay */
    z-index: 3;
  }

  /* Caption container */
  .sarab-slider-caption {
    z-index: 5;
    max-width: 700px;
    color: white;
  }

  /* 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);
  }





