  /* ---------- Generic Reset ---------- */
    * { margin:0; padding:0; box-sizing:border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    body { background:#f8f9fa; color:#333; line-height:1.6; }

    :root{
      --primary: #0d6efd;
      --dark: #343a40;
    }

    /* ---------- Spinner ---------- */
    #spinner {
      position: fixed; inset:0;
      background-color: rgba(255,255,255,0.95);
      display:flex; align-items:center; justify-content:center;
      z-index: 9999;
      transition: opacity .45s ease, visibility .45s;
      opacity: 1; visibility: visible;
    }
    #spinner.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .spinner-grow { width:3rem; height:3rem; border-radius:50%; transform:scale(0); opacity:0; animation: spinner-grow 1s ease-in-out infinite; margin:.35rem; }
    .spinner-grow.text-primary{ background:var(--primary); animation-delay:-.3s; }
    .spinner-grow.text-dark{ background:#212529; animation-delay:-.15s; }
    .spinner-grow.text-secondary{ background:#6c757d; animation-delay:0s; }
    @keyframes spinner-grow {
      0% { opacity:0; transform:scale(0); }
      50% { opacity:1; transform:scale(1); }
      100% { opacity:0; transform:scale(0); }
    }
    .sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

    /* ---------- Topbar ---------- */
    .topbar { background:#f8f9fa; }
    .top-shape {
      position: relative;
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      display:inline-flex;
      align-items:center;
      gap:1rem;
      padding: .6rem 2.25rem;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    }
    .top-shape p { margin:0; font-size:0.95rem; }
    .top-shape .border-end { border-right:1px solid rgba(255,255,255,0.25); padding-right:1rem; margin-right:1rem; }

    /* ---------- Content Demo ---------- */
    .content { max-width:1200px; margin:2rem auto; padding:1.25rem; }
    h1 { color:var(--primary); margin-bottom:1.25rem; text-align:center; }
    p { margin-bottom:1rem; text-align:justify; }
    .btn-primary-custom { background: linear-gradient(90deg,var(--primary), #0056d6); color:#fff; border:none; padding:.5rem 1.25rem; border-radius:.35rem; }

    /* ---------- Navbar ---------- 
    .navbar.bg-white { background:#fff; border-bottom:1px solid rgba(16,24,40,0.04); backdrop-filter: blur(6px); }
    .navbar { padding:.5rem 1.25rem; transition: padding .2s ease, box-shadow .2s ease; }
    .navbar-brand h1 { font-weight:700; font-size:1.15rem; color:var(--primary); display:flex; align-items:center; gap:.5rem; margin:0; }
    .navbar .nav-link { color:var(--dark); font-weight:500; padding:.45rem .6rem; transition: color .12s, transform .12s; }
    .navbar .nav-link:hover, .navbar .nav-link:focus { color:var(--primary); transform: translateY(-2px); }
    .dropdown-menu { border-radius:12px; padding:.35rem; border:1px solid rgba(16,24,40,.06); box-shadow:0 10px 30px rgba(16,24,40,.06); }
    .dropdown-item { padding:.45rem .9rem; font-weight:500; color:var(--dark); }
    .btn-search { width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(16,24,40,.06); background:transparent; box-shadow:0 6px 16px rgba(16,24,40,.04); }
    .btn-cta { background: linear-gradient(90deg,var(--primary), #0056d6); border:none; padding:.47rem .95rem; border-radius:10px; font-weight:600; color:#fff; box-shadow: 0 8px 24px rgba(13,110,253,.12); }
    .navbar-toggler { border:1px solid rgba(16,24,40,.06); border-radius:8px; padding:.25rem .6rem; }
    .toggler-icon { width:22px; height:14px; position:relative; display:inline-block; }
    .toggler-icon span { position:absolute; left:0; right:0; height:2px; background:var(--dark); border-radius:2px; transition: all .18s ease; }
    .toggler-icon span:nth-child(1){ top:0; } .toggler-icon span:nth-child(2){ top:6px; } .toggler-icon span:nth-child(3){ bottom:0; }
    .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
    .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2){ opacity:0; transform: scale(0.6); }
    .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

*/

/* ---------- Navbar ---------- */
.navbar.bg-white {
  background:#fff;
  border-bottom:1px solid rgba(16,24,40,0.04);
  backdrop-filter: blur(6px);
}

.navbar {
  padding:.5rem 1.25rem;
  transition: padding .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 1050; /* 👈 navbar हमेशा ऊपर */
}

.navbar-brand h1 {
  font-weight:700;
  font-size:1.15rem;
  color:var(--primary);
  display:flex;
  align-items:center;
  gap:.5rem;
  margin:0;
}

.navbar .nav-link {
  color:var(--dark);
  font-weight:500;
  
  padding:.45rem .6rem;
  transition: color .12s, transform .12s;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color:var(--primary);
  transform: translateY(-2px);
}

.dropdown-menu {
  border-radius:12px;
  padding:.35rem;
  border:1px solid rgba(16,24,40,.06);
  box-shadow:0 10px 30px rgba(16,24,40,.06);
  position: absolute;
  z-index: 1100; /* 👈 dropdown भी ऊपर */
}

.dropdown-item {
  padding:.45rem .9rem;
  font-weight:500;
  color:var(--dark);
}

.btn-search {
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(16,24,40,.06);
  background:transparent;
  box-shadow:0 6px 16px rgba(16,24,40,.04);
}

.btn-cta {
  background: linear-gradient(90deg,var(--primary), #0056d6);
  border:none;
  padding:.47rem .95rem;
  border-radius:10px;
  font-weight:600;
  color:#fff;
  box-shadow: 0 8px 24px rgba(13,110,253,.12);
}

.navbar-toggler {
  border:1px solid rgba(16,24,40,.06);
  border-radius:8px;
  padding:.25rem .6rem;
}

.toggler-icon {
  width:22px;
  height:14px;
  position:relative;
  display:inline-block;
}

.toggler-icon span {
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:var(--dark);
  border-radius:2px;
  transition: all .18s ease;
}

.toggler-icon span:nth-child(1){ top:0; }
.toggler-icon span:nth-child(2){ top:6px; }
.toggler-icon span:nth-child(3){ bottom:0; }

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2){
  opacity:0;
  transform: scale(0.6);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

    
    /* ---------- Responsive tweaks ---------- */
    @media (max-width: 991.98px) {
      .btn-cta { width:100%; padding:.6rem; display:block; text-align:center; margin-top:.5rem; }
      .navbar { padding:.4rem .9rem; }
      .navbar-brand h1 { font-size:1.05rem; }
      .top-shape { clip-path:none; padding: .5rem .75rem; border-radius:6px; }
    }
    @media (max-width: 767.98px) {
      .top-shape { flex-direction:column; gap:.4rem; text-align:center; padding:.6rem; }
    }
    .navbar-brand img{
   width: 26%;
   height: 20%;
    }
    /* On small screens (max-width: 576px for mobile) */
@media (max-width: 576px) {
  .navbar-brand  {
    width: 80%;
    height: auto;
  }
}
    .container-fluid{
        padding-left: 50px;
        padding-right: 50px;
    }
    .nav-link{
        font-size: 18px;
    font-weight: 600 !important;
        font-family: emoji;
       
    }
    .btn1{
        
    display: inline-block !important;
    padding: 0rem 0rem !important;
    border-radius: 50px !important; 
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
    
    /*banner------------------------*/

          /* Carousel Styles */
        .container-fluid.p-0 {
            width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .carousel {
            position: relative;
            height: 100vh;
            max-height: 800px;
            overflow: hidden;
        }

        .carousel-inner {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-item.active {
            opacity: ;
            z-index: ;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .carousel-caption {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 2;
            padding: 20px;
        }

        .carousel-caption .p-3 {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 2.5rem !important;
            border-radius: 15px;
       
            max-width: 900px;
            width: 90%;
        }

        .text-white {
            color: #fff !important;
        }

        .text-uppercase {
            text-transform: uppercase !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
            color: #000;
        }

        h5 {
            font-size: 1.5rem;
            letter-spacing: 2px;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .display-1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #17a2b8;
            color: white;
        }

        .btn-primary:hover {
            background-color: #138496;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .carousel-control-prev, .carousel-control-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(23, 162, 184, 0.7);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-control-prev-icon, .carousel-control-next-icon {
            width: 10px;
            height: 10px;
            background-size: 100%, 100%;
            background-repeat: no-repeat;
        }

       .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.086 1.414 6.672 4H0v2h6.672l-2.586 2.586L5.5 8l4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0L3.914 1.414 1.328 4H8v2H1.328l2.586 2.586L2.5 8 0 4l2.5-4z'/%3E%3C/svg%3E");
}
        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* Animations */
        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        @keyframes slideInDown {
            from {
                transform: translate3d(0, -100%, 0);
                opacity: 0;
            }
            to {
                transform: translate3d(0, 0, 0);
                opacity: 1;
            }
        }

        .slideInDown {
            animation-name: slide极速3Down;
        }

        @keyframes slideInLeft {
            from {
                transform: translate3d(-100%, 0, 0);
                opacity: 0;
            }
            to {
                transform: translate3d(0, 0, 0);
                opacity: 1;
            }
        }

        .slideInLeft {
            animation-name: slideInLeft;
        }

        @keyframes slideInRight {
            from {
                transform: translate3d(100%, 0, 0);
                opacity: 0;
            }
            to {
                transform: translate3d(0, 0, 0);
                opacity: 1;
            }
        }

        .slideInRight {
            animation-name: slideInRight;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            50% {
                opacity: 1;
            }
        }

        .zoomIn {
            animation-name: zoomIn;
        }

        /* Three Cards Section */
        .banner {
            position: relative;
            margin-top: -100px;
            z-index: 10;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .gx-0 {
            margin-left: 0;
            margin-right: 0;
        }

        .gx-0 > .col-lg-4 {
            padding-left: 0;
            padding-right: 0;
        }

        .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            padding: 0 15px;
        }

        .wow {
            visibility: visible;
        }

        .zoomIn {
            animation-name: zoomIn;
        }

        .bg-primary {
            background-color: #17a2b8 !important;
        }

        .bg-dark {
            background-color: #343a40 !important;
        }

        .bg-secondary {
            background-color: #6c757d !important;
        }

        .d-flex {
            display: flex;
        }

        .flex-column {
            flex-direction: column;
        }

        .p-5 {
            padding: 3rem !important;
        }

        .mb-5 {
            margin-bottom: 3rem !important;
        }

        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 300px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .card .d-flex {
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .card .btn-light {
            background-color: #f8f9fa;
            color: #212529;
            margin-top: auto;
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
        }

        .card .btn-light:hover {
            background-color: #e2e6ea;
        }

        .form-control, .form-select {
            height: 40px;
            border-radius: 5px;
            border: 1px solid #ced4da;
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
        }

        .form-control:focus, .form-select:focus {
            color: #495057;
            background-color: #fff;
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .datetimepicker-input {
            background-color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .display-1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .display-1 {
                font-size: 3rem;
            }
            
            .carousel-caption .p-3 {
                padding: 1.5rem !important;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 30px;
            }
            
            .col-lg-4:last-child {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .display-1 {
                font-size: 2.5rem;
            }
            
            h5 {
                font-size: 1.2rem;
            }
            
            .carousel-caption .p-3 {
                padding: 1rem !important;
            }
            
            .carousel-control-prev, .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .banner {
                margin-top: -50px;
            }
            
            .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .display-1 {
                font-size: 2rem;
            }
            
            h5 {
                font-size: 1rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .me-3 {
                margin-right: 0 !important;
            }
            
            .p-5 {
                padding: 1.5rem !important;
            }
            
            .card {
                height: auto;
                min-height: 300px;
            }
        }

        /* Demo content styles */
        .content {
            max-width: 1200px;
            margin: 100px auto 50px;
            padding: 0 2rem;
            text-align: center;
        }

        .content h2 {
            color: #17a2b8;
            margin-bottom: 1.5rem;
        }

        .content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
    /*banner------------end*/

    /*about us-------*/
      /* About Us Section */
        .container-fluid {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: 22px;
            margin-left: 19px;
        }

        .g-5 {
            margin-right: -3rem;
            margin-left: -3rem;
        }

        .g-5 > .col-lg-7, .g-5 > .col-lg-5 {
            padding-right: 3rem;
            padding-left: 3rem;
        }

        .col-lg-7 {
            flex: 0 0 58.333333%;
            max-width: 58.333333%;
        }

        .col-lg-5 {
            flex: 0 0 41.666667%;
            max-width: 41.666667%;
        }

        .section-title {
            position: relative;
            margin-bottom: 2rem;
        }

        .text-primary {
            color: #17a2b8 !important;
        }

        .text-uppercase {
            text-transform: uppercase !important;
        }

        .position-relative {
            position: relative !important;
        }

        .d-inline-block {
            display: inline-block !important;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        .display-5 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .mb-0 {
            margin-bottom: 0 !important;
        }

        .text-body {
            color: #212529 !important;
        }

        .fst-italic {
            font-style: italic !important;
        }

        h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
            line-height: 1.2;
        }

        p {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .col-sm-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .fa-check-circle {
            font-size: 1.2rem;
        }

        .me-3 {
            margin-right: 1rem !important;
        }

        .btn {
            display: inline-block;
            font-weight: 400;
            color: #212529;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            background-color: transparent;
            border: 1px solid transparent;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: 0.25rem;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, 
                        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
            text-decoration: none;
        }

        .btn-primary {
            color: #fff;
            background-color: #17a2b8;
            border-color: #17a2b8;
        }

        .btn-primary:hover {
            color: #fff;
            background-color: #138496;
            border-color: #117a8b;
        }

        .py-3 {
            padding-top: 0.75rem !important;
            padding-bottom: 0.75rem !important;
        }

        .px-5 {
            padding-right: 3rem !important;
            padding-left: 3rem !important;
        }

        .mt-4 {
            margin-top: 1.5rem !important;
        }

        .position-relative {
            position: relative !important;
        }

        .h-100 {
            height: 100% !important;
        }

        .position-absolute {
            position: absolute !important;
        }

        .w-100 {
            width: 100% !important;
        }

        .rounded {
            border-radius: 0.25rem !important;
        }

        /* Animations */
        .wow {
            visibility: hidden;
        }

        .fadeInUp {
            animation-name: fadeInUp;
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .zoomIn {
            animation-name: zoomIn;
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translate3d(-100px, 0, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate3d(100px, 0, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .slideInLeft {
            animation-name: slideInLeft;
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .slideInRight {
            animation-name: slideInRight;
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-lg-7, .col-lg-5 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .col-lg-5 {
                margin-top: 3rem;
            }
            
            .display-5 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .col-sm-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .display-5 {
                font-size: 1.75rem;
            }
            
            h4 {
                font-size: 1.25rem;
            }
            
            .g-5 {
                margin-right: -1rem;
                margin-left: -1rem;
            }
            
            .g-5 > .col-lg-7, .g-5 > .col-lg-5 {
                padding-right: 1rem;
                padding-left: 1rem;
            }
        }

        @media (max-width: 576px) {
            .px-5 {
                padding-right: 1.5rem !important;
                padding-left: 1.5rem !important;
            }
            
            .display-5 {
                font-size: 1.5rem;
            }
        }
        /* Yellow line under headings */
.section-title h5::after {
  content: "";
  display: block;
  width: 60px;        /* length of line */
  height: 3px;        /* thickness */
  background: #ffc107; /* yellow color */
  margin-top: 8px;
  border-radius: 2px;
}
    /*about us end--------*/

    /*apointment-------------*/
       /* Appointment Section */
        .container-fluid {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
            margin-top: -10px;
            margin-bottom: -10px;
        }

        .bg-primary {
            background-color: #17a2b8 !important;
        }

        .bg-appointment {
          
            background-image: url(../img/apointment.jpg);
        }

        .my-5 {
            margin-top: 3rem !important;
            margin-bottom: 3rem !important;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .gx-5 {
            margin-right: -3rem !important;
            margin-left: -3rem !important;
        }

        .gx-5 > [class*="col-"] {
            padding-right: 3rem !important;
            padding-left: 3rem !important;
        }

        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
            border-radius: 0px;
        }

        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .display-5 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .text-white {
            color: #fff !important;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
            color: #000;
        }

        .mb-0 {
            margin-bottom: 0 !important;
        }

        .appointment-form {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2.5rem;
        }

        .h-100 {
            height: 100% !important;
        }

        .d-flex {
            display: flex !important;
        }

        .flex-column {
            flex-direction: column !important;
        }

        .justify-content-center {
            justify-content: center !important;
        }

        .text-center {
            text-align: center !important;
        }

        form {
            width: 100%;
        }

        .g-3 {
            margin-right: -0.75rem;
            margin-left: -0.75rem;
        }

        .g-3 > [class*="col-"] {
            padding-right: 0.75rem;
            padding-left: 0.75rem;
            margin-top: 0px;
            margin-bottom: 0px;
        }

        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 1rem;
        }

        .col-sm-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .form-select, .form-control {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: 0.5rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .form-select:focus, .form-control:focus {
            outline: none;
            border-color: #17a2b8;
            box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
        }

        .bg-light {
            background-color: #f8f9fa !important;
        }

        .border-0 {
            border: 0 !important;
        }

        .btn {
            display: inline-block;
            font-weight: 600;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            background-color: transparent;
            border: 1px solid transparent;
            padding: 0.75rem 1.5rem;
            font-size: 1.1rem;
            line-height: 1.5;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid #fff;
            color: #fff;
        }

        .btn-dark {
            color: #fff;
            background-color: #343a40;
            border-color: #343a40;
        }

        .btn-dark:hover {
            color: #fff;
            background-color: #23272b;
            border-color: #1d2124;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .w-100 {
            width: 100% !important;
        }

        /* Animations */
        .wow {
            visibility: visible;
        }

        .fadeInUp {
            animation-name: fadeInUp;
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .zoomIn {
            animation-name: zoomIn;
            animation-duration: 1s;
            animation-fill-mode: both;
            border-radius: 0px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            50% {
                opacity: 1;
            }
        }

        /* Form element styling */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 500;
            text-align: left;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-lg-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .display-5 {
                font-size: 2rem;
            }
            
            .appointment-form {
                padding: 2rem;
            }
            
            .gx-5 {
                margin-right: -1.5rem !important;
                margin-left: -1.5rem !important;
            }
            
            .gx-5 > [class*="col-"] {
                padding-right: 1.5rem !important;
                padding-left: 1.5rem !important;
            }
        }

        @media (max-width: 768px) {
            .display-5 {
                font-size: 1.75rem;
            }
            
            .col-sm-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .appointment-form {
                padding: 1.5rem;
            }
            
            .py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
        }

        @media (max-width: 576px) {
            .display-5 {
                font-size: 1.5rem;
            }
             .deep-btn{
      text-align: center;
    }
            
            .appointment-form {
                padding: 1.25rem;
            }
            
            .form-select, .form-control {
                height: 50px !important;
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 1rem;
                color: #333;
            }
            
            .gx-5 > [class*="col-"] {
                padding-right: 1rem !important;
                padding-left: 1rem !important;
            }
        }

        /* Demo content styles */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            text-align: center;
        }

        .content h2 {
            color: #17a2b8;
            margin-bottom: 1.5rem;
        }

        .content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
    /*apointment----end----------*/

    /*befor-------*/

     .services-scope {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;

    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .services-scope * { box-sizing: border-box; }

  .services-scope .container { max-width:1200px; margin:0 auto; padding:0 15px; }
  .services-scope .row { display:flex; flex-wrap:wrap; margin:-15px; gap:0; }
  .services-scope .col-lg-5, .services-scope .col-lg-7, .services-scope .col-md-6 {
    padding:15px;
    margin-top: 0px;
  }
  .services-scope .col-lg-5 { flex:0 0 41.6666%; max-width:41.6666%; }
  .services-scope .col-lg-7 { flex:0 0 58.3333%; max-width:58.3333%; }
  .services-scope .col-md-6 { flex:0 0 50%; max-width:50%; }

  .services-scope .section-title { margin-bottom: 2rem; }
  .services-scope .section-title h5 {
    color: var(--primary); text-transform:uppercase; display:inline-block; position:relative; margin-bottom:1rem;
  }
  .services-scope .section-title h5::before {
    content:""; position:absolute; width:45px; height:3px; right:-55px; bottom:11px; background:var(--primary);
  }
  .services-scope .section-title h5::after {
    content:""; position:absolute; width:15px; height:3px; right:-75px; bottom:11px; background:var(--secondary);
  }
  .services-scope .display-5 { font-size:2.2rem; font-weight:700; color:var(--dark); margin:0 0 1rem; }

  /* Before/After */
  .services-scope .twentytwenty-container {
    position:relative; overflow:hidden; border-radius:12px; box-shadow:0 12px 36px rgba(2,10,30,0.06);
    min-height:400px;
  }
  .services-scope .twentytwenty-container img {
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transition: clip-path .12s linear, transform .6s ease;
  }
  /* initial: first image (before) clipped to 50% */
  .services-scope .twentytwenty-container img:first-child {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index:2;
  }
  .services-scope .twentytwenty-container img:last-child { z-index:1; }

  /* small labels */
  .services-scope .ba-label {
    position:absolute; top:12px; left:12px; background:rgba(0,0,0,0.55); color:#fff; padding:6px 10px; border-radius:8px; font-weight:700; font-size:0.85rem; z-index:5;
  }
  .services-scope .ba-label.right { left:auto; right:12px; }

  /* Service cards */
  .services-scope .service-item { margin-bottom: 2rem; transition: transform .25s ease; }
  .services-scope .service-item:hover { transform: translateY(-6px); }
  .services-scope .rounded-top { border-top-left-radius:12px; border-top-right-radius:12px; overflow:hidden; }
  .services-scope .rounded-bottom { border-bottom-left-radius:12px; border-bottom-right-radius:12px; }
  .services-scope .img-fluid { width:100%; height:auto; transition: transform .6s ease; display:block; }
  .services-scope .service-item:hover .img-fluid { transform: scale(1.12); }

  .services-scope .bg-light { background:var(--light); position:relative; transition: all .5s ease; }
  .services-scope .bg-light::after {
    content:""; position:absolute; top:50%; left:15px; right:15px; bottom:0; border-radius:100px/15px; box-shadow:0 0 15px rgba(0,0,0,0.25); opacity:0; transition:opacity .45s;
  }
  .services-scope .service-item:hover .bg-light::after { opacity:1; }

  .services-scope .p-4 { padding:1.25rem; text-align:center; }
  .services-scope h5 { font-size:1.05rem; font-weight:700; color:var(--dark); margin:0; transition: color .25s; }
  .services-scope .service-item:hover h5 { color:var(--primary); }

  /* Appointment card */
  .services-scope .appointment-card {
    background: linear-gradient(180deg, var(--primary), #005ea8); color:#fff; padding:1.5rem; border-radius:12px; text-align:center;
    box-shadow:0 14px 40px rgba(2,10,30,0.08);
  }
  .services-scope .appointment-card h3 { margin:0 0 .6rem; font-size:1.25rem; }
  .services-scope .appointment-card p { margin:0 0 1rem; opacity:0.95; }
  .services-scope .appointment-card .phone { font-size:1.6rem; font-weight:800; }

  /* utility */
  .services-scope .mb-5 { margin-bottom:2rem; }
  .services-scope .g-5 > * { padding: 0 15px; }

  /* animations */
  @keyframes fadeInUp { from{opacity:0; transform:translateY(28px);} to{opacity:1; transform:none;} }
  @keyframes zoomIn { from{opacity:0; transform:scale(.9);} to{opacity:1; transform:none;} }
  .services-scope .wow { visibility: visible; animation-duration: .9s; animation-fill-mode: both; }
  .services-scope .fadeInUp { animation-name: fadeInUp; }
  .services-scope .zoomIn { animation-name: zoomIn; }

  /* responsive */
  @media (max-width: 992px) {
    .services-scope .col-lg-5, .services-scope .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
    .services-scope .twentytwenty-container { min-height: 300px; margin-bottom: 18px; }
  }
  @media (max-width: 576px) {
    .services-scope { padding: 12px; }
    .services-scope .display-5 { font-size: 1.4rem; }
  }
    /*befor----------end--*/

    /*priceing plan----*/

    /* ================= Scoped CSS for Pricing Plan ================= */
  .pricing-scope {
    --primary: #06A3DA;
    --primary-light: #4ab8e6;
    --primary-dark: #0484b0;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #212529;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fafcff 0%, #f0f8ff 100%);
  }

  .pricing-scope .container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
  }

  .pricing-scope .row { 
    display: flex; 
    flex-wrap: wrap; 
    margin: 0 -15px; 
  }
  .pricing-scope [class*="col-"] { 
    padding: 15px; 
    box-sizing: border-box; 
  }

  .pricing-scope .col-lg-5 { 
    flex: 0 0 41.6667%; 
    max-width: 41.6667%; 
  }
  .pricing-scope .col-lg-7 { 
    flex: 0 0 58.3333%; 
    max-width: 58.3333%; 
  }
  
  .price-carousel-container {
    position: relative;
    padding: 0 40px;
  }
  
  .pricing-scope .price-carousel { 
    display: flex; 
    gap: 25px; 
    align-items: stretch; 
    overflow-x: hidden; 
    scroll-behavior: smooth;
    padding: 20px 10px 40px;
  }

  /* Section title */
  .pricing-scope .section-title { 
    margin-bottom: 2rem; 
    position: relative;
  }
  
  .pricing-scope .section-title h5 {
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
  }
  
  .pricing-scope .section-title h5::before {
    content: ""; 
    position: absolute; 
    width: 45px; 
    height: 3px; 
    right: -55px; 
    bottom: 11px; 
    background: var(--primary);
  }
  
  .pricing-scope .section-title h5::after {
    content: ""; 
    position: absolute; 
    width: 15px; 
    height: 3px; 
    right: -75px; 
    bottom: 11px; 
    background: var(--secondary);
  }
  
  .pricing-scope .display-5 { 
      text-align: center;
    font-size: 33px;
    color: #000 !important;
    font-weight: bold;
   
    margin-bottom: 10px;
  }

  /* Price item card */
  .pricing-scope .price-item {
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing-scope .price-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
  }
  
  .pricing-scope .price-item.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
  }
  
  .pricing-scope .price-item.featured:hover {
    transform: translateY(-10px) scale(1.03);
  }

  .pricing-scope .price-item .position-relative { 
    position: relative; 
  }
  
  .pricing-scope img.img-fluid {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .pricing-scope .price-item:hover img.img-fluid { 
    transform: scale(1.05); 
  }

  .pricing-scope .price-badge {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    top: 100%;
    z-index: 3;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.3);
    font-weight: 800;
    font-size: 1.2rem;
  }
  
  .pricing-scope .price-item.featured .price-badge {
    background: var(--secondary);
    box-shadow: 0 10px 25px rgba(245, 126, 87, 0.3);
  }

  .pricing-scope .card-content {
    background: #fff;
    padding: 5.5rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-scope .card-content h4 { 
    margin: 0 0 0.5rem; 
    font-weight: 700; 
    color: var(--dark); 
    font-size: 1.4rem;
  }
  
  .pricing-scope .card-content hr { 
    width: 50px; 
    height: 3px; 
    background: var(--primary); 
    border: 0; 
    margin: 0 auto 1.5rem; 
  }
  
  .pricing-scope .price-item.featured .card-content hr {
    background: var(--secondary);
  }

  .pricing-scope .feature { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 0.8rem; 
    color: var(--dark); 
    font-size: 0.95rem; 
    padding: 0 10px;
  }
  
  .pricing-scope .feature i { 
    color: var(--primary); 
    font-size: 1.1rem;
  }
  
  .pricing-scope .price-item.featured .feature i {
    color: var(--secondary);
  }

  .pricing-scope .btn-appointment {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.25);
    transition: all 0.3s ease;
    margin-top: auto;
    display: inline-block;
    width: fit-content;
    margin: 1.5rem auto 0;
  }
  
  .pricing-scope .btn-appointment:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 163, 218, 0.35);
  }
  
  .pricing-scope .price-item.featured .btn-appointment {
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(245, 126, 87, 0.25);
  }
  
  .pricing-scope .price-item.featured .btn-appointment:hover {
    background: #e46a45;
    box-shadow: 0 12px 25px rgba(245, 126, 87, 0.35);
  }

  /* Carousel controls */
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .carousel-control:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-control.prev {
    left: 0;
  }
  
  .carousel-control.next {
    right: 0;
  }

  /* Content styling */
  .pricing-scope p { 
    margin-bottom: 1.5rem; 
    color: var(--gray); 
    line-height: 1.7; 
    font-size: 1.05rem;
  }
  
  .pricing-scope h1.large-phone { 
    font-size: 2.2rem; 
    margin: 0.5rem 0 0; 
    color: var(--dark); 
    font-weight: 800;
  }
  
  .pricing-scope .call-text {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2.5rem;
    display: block;
    font-size: 1.1rem;
  }

  /* Responsive design */
  @media (max-width: 991.98px) {
    .pricing-scope .col-lg-5, 
    .pricing-scope .col-lg-7 { 
      flex: 0 0 100%; 
      max-width: 100%; 
      margin: 0px;
    }
    
    .pricing-scope .display-5 {
      font-size: 2rem;
    }
    
    .price-carousel-container {
      padding: 0;
      margin-top: 2rem;
    }
    
    .carousel-control {
      display: none;
    }
    
    .pricing-scope .price-carousel {
      overflow-x: auto;
      padding-bottom: 30px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    
    .pricing-scope .price-item {
      scroll-snap-align: start;
      min-width: 280px;
      
    }
  }
  
  @media (max-width: 768px) {
    .pricing-scope {
      padding: 30px 15px;
    }
    
    .pricing-scope .section-title h5::before,
    .pricing-scope .section-title h5::after {
      display: none;
    }
    
    .pricing-scope .display-5 {
      font-size: 1.8rem;
    }
    
    .pricing-scope .call-text {
      margin-top: 2rem;
    }
    
    .pricing-scope h1.large-phone {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .pricing-scope {
      padding: 20px 10px;
    }
    
    .pricing-scope .display-5 {
      font-size: 1.6rem;
    }
    
    .pricing-scope .card-content {
      padding: 2rem 1rem 1.5rem;
    }
    
    .pricing-scope .price-badge {
      padding: 0.5rem 1.2rem;
      font-size: 1.1rem;
    }
    
    .pricing-scope .btn-appointment {
      padding: 0.7rem 1.2rem;
      font-size: 0.9rem;
    }
  }
    /*priceing plan end------*/


    /*testinatio--*/

    /* ================= Testimonial single-file CSS (scoped) ================= */
    .testimonial-scope {
    --primary: #06A3DA;
    --accent:  #F57E57;
    --white:   #ffffff;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    padding: 28px;
    /* background image + gradient overlay.
       Use background-size: cover to fill and avoid awkward tiling.
       cover may crop parts of the image (intentional 'hero' look),
       but it prevents the image from looking zoomed-in because of resizing issues. */
    background-image:

      url('../img/carousel-1.jpg');
    background-size: cover;         /* <-- recommended: fills container while preserving aspect ratio */
    background-position: center;    /* center the image */
    background-repeat: no-repeat;   /* no tiling */
    min-height: 100vh;
  }

  .testimonial-scope .bg-testimonial {
  background: linear-gradient(135deg, rgba(6,163,218,0.55), rgba(9,30,62,0.45));
    color: var(--white);
    border-radius: 14px;
    padding: 48px 18px;
    box-shadow: 0 20px 50px rgba(3,9,23,0.12);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    
  }

  .testimonial-scope .container { max-width: 1100px; margin: 0 auto; }

  .testimonial-shell {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    position:relative;
    flex-direction:column;
  }

  /* carousel track */
  .testimonial-carousel {
    width:100%;
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:12px;
  }

  .testimonial-track {
    display:flex;
    gap:24px;
    transition:transform .5s cubic-bezier(.2,.9,.2,1);
    will-change: transform;
  }

  .testimonial-item {
    flex:0 0 100%;
    max-width:100%;
    box-sizing:border-box;
    padding:28px 22px;
    text-align:center;
    background: transparent;
  }

  .testimonial-card {
    display:block;
    border-radius:10px;
    padding:0 10px;
  }

  .testimonial-item img {
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin: 0 auto 18px;
    border:4px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 26px rgba(2,10,30,0.12);
    transition: transform .45s ease;
  }
  .testimonial-item:hover img { transform: translateY(-3px) scale(1.03); }

  .testimonial-item p {
    color: rgba(255,255,255,0.95);
    font-size:1rem;
    line-height:1.7;
    margin:0 auto 16px;
    max-width: 70ch;
  }

  .testimonial-item hr {
    width:80px;
    height:3px;
    background: rgba(255,255,255,0.14);
    border:0;
    margin: 8px auto 12px;
    border-radius:3px;
  }

  .testimonial-item h4 {
    color:#fff;
    margin:0;
    font-size:1.05rem;
    font-weight:700;
  }

  /* controls */
  .testimonial-controls {
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:18px;
  }
  .testimonial-controls button {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    color:#fff;
    width:44px;
    height:44px;
    border-radius:10px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition: transform .12s ease, background .12s;
  }
  .testimonial-controls button:hover { transform:translateY(-4px); background: rgba(255,255,255,0.18); }

  /* small dot indicators */
  .testimonial-dots {
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:12px;
  }
  .testimonial-dots button {
    width:10px; height:10px; border-radius:50%; border:none; background: rgba(255,255,255,0.35); cursor:pointer;
  }
  .testimonial-dots button.active { background: #fff; transform:scale(1.15); }

  /* responsiveness */
  @media (min-width: 800px){
    .testimonial-item { padding:36px 48px; }
    .testimonial-item p { font-size:1.06rem; }
  }

  @media (max-width: 600px){
    .testimonial-scope { padding:18px; }
    .testimonial-item img { width:86px; height:86px; }
    .testimonial-item p { max-width:42ch; font-size:.95rem; }
    .testimonial-controls button { width:40px; height:40px; }
  }

  /* simple appear animation */
  .fadeInUp { opacity:0; transform: translateY(12px); transition:opacity .6s ease, transform .6s ease; }
  .fadeInUp.show { opacity:1; transform:none; }

    /*testination end-----*/

    /*team*/

       
    .advisors-section {
      max-width: 1200px;
      margin: 0px auto;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
      background: #fff;
     
    }

    .advisors-section__content {
      flex: 1;
      min-width: 280px;
      padding: 0 10px;
    }

    .advisors-section__subtitle {
      color: #2563eb;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .advisors-section__title {
       text-align: center;
    font-size: 28px;
    color: #000 !important;
    font-weight: bold;
    
    margin-bottom: 10px;
    }

    .advisors-section__description {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 32px;
      color: #64748b;
    }

    .advisors-section__button {
      background: #2563eb;
      color: #fff;
      padding: 14px 28px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .advisors-section__button:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
    }

    .advisors-section__button:active {
      transform: translateY(0);
    }

    .advisors-grid {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .advisor-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
    }

    .advisor-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .advisor-card__image-container {
      width: 100%;
      height: 323px;
      overflow: hidden;
      position: relative;
    }

    .advisor-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .advisor-card:hover .advisor-card__image {
      transform: scale(1.05);
    }

    .advisor-card__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      height: 50%;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .advisor-card:hover .advisor-card__overlay {
      opacity: 1;
    }

    .advisor-card__social {
      position: absolute;
      bottom: 15px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 12px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .advisor-card:hover .advisor-card__social {
      opacity: 1;
      transform: translateY(0);
    }

    .advisor-card__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #2563eb;
      color: white;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .advisor-card__social-link:hover {
      background: #1e40af;
      transform: scale(1.1);
    }

    .advisor-card__info {
      padding: 22px;
      text-align: center;
    }

    .advisor-card__name {
      margin-bottom: 6px;
      font-size: 18px;
      font-weight: 600;
      color: #1e293b;
      font-family: 'Montserrat', sans-serif;
    }

    .advisor-card__position {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 0;
    }

    .advisor-card__experience {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #2563eb;
      color: white;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 500;
    }

    @media (max-width: 992px) {
      .advisors-section {
        gap: 40px;
      }
      
      .advisors-section__title {
        font-size: 30px;
      }
    }

    @media (max-width: 768px) {
      .advisors-section {
        flex-direction: column;
        margin: 40px auto;
        padding: 30px 20px;
        gap: 40px;
      }
      
      .advisors-section__content {
        text-align: center;
      }
      
      .advisors-section__title {
        font-size: 28px;
      }
      
      .advisors-grid {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .advisors-section__title {
        font-size: 24px;
      }
      
      .advisors-section__button {
        width: 100%;
        justify-content: center;
      }
    }
    /*team*/

 
    /*footer*/

         /* Footer wrapper */
    .fc-footer-wrap { width: 100%; }

    /* Background + text */
    .fc-bg-primary { background-color: #091E3E !important; }
    .fc-text-light { color: #f8f9fa !important; }

    /* spacing */
    .fc-space-large { padding: 3rem 0; }
    .fc-space-small { padding: 1.5rem 0; }

    /* animation */
    .fc-visible { visibility: visible; }
    .fc-animate-up { animation-name: fcFadeUp; animation-duration: 1s; animation-fill-mode: both; }
    @keyframes fcFadeUp {
      from { opacity: 0; transform: translate3d(0, 40px, 0); }
      to   { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    /* row / grid */
    .fc-row { display: flex; flex-wrap: wrap; margin: 0 0px; }
    .fc-col { padding: 0 0px; box-sizing: border-box; padding-left: 82px; }
    /* ✅ Mobile devices पर padding-left हटाओ */
@media (max-width: 767.98px) {
  .fc-col {
    padding-left: 0px;
  }
}

    /* headings */
    .fc-title {
      font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 700;
      position: relative; padding-bottom: 10px;
    }
    .fc-title::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 50px; height: 3px; background: #06A3DA;
    }

    /* link styles */
    .fc-list a {
      display: flex; align-items: center;
      padding: 8px 0; color: #f8f9fa;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .fc-list a:last-child { border-bottom: none; }
    .fc-list a:hover { color: #06A3DA; transform: translateX(5px); }
    .fc-list a:hover i { color: #F57E57; transform: scale(1.2); }

    /* icons + spacing */
    .fc-accent { color: #06A3DA; }
    .fc-gap-right { margin-right: 0.5rem; }

    /* text with icons */
    .fc-para { margin-bottom: 1rem; display: flex; align-items: center; color: #fff;}
    .fc-para i { transition: all 0.3s ease; }
    .fc-para:hover i { color: #F57E57; transform: scale(1.2); }

    /* social buttons */
    .fc-btn { display: inline-flex; align-items: center; justify-content: center;
              text-decoration: none; transition: all 0.3s ease; }
    .fc-btn-lg { padding: 0.75rem 1rem; font-size: 1.25rem; border-radius: 0.5rem; }
    .fc-btn-primary { background: #06A3DA; color: #fff; }
    .fc-btn-primary:hover { background: #0484b0; transform: translateY(-3px);
                            box-shadow: 0 5px 15px rgba(6,163,218,0.3); }
    .fc-btn-circle { width: 40px !important; height: 40px !important; border-radius: 50%; }

    /* responsive */
    @media (min-width: 992px) {
      .fc-col { flex: 0 0 25%; max-width: 25%; }
      .fc-row { flex-wrap: nowrap; }
    }
    @media (max-width: 991px) and (min-width: 768px) {
      .fc-col { flex: 0 0 50%; max-width: 50%; margin-bottom: 2rem; }
    }
    @media (max-width: 767px) {
      .fc-col { flex: 0 0 100%; max-width: 100%; margin-bottom: 2rem; }
      .fc-title { text-align: center; }
      .fc-title::after { left: 50%; transform: translateX(-50%); }
      .fc-btn-circle { width: 50px !important; height: 50px !important; }
    }
    /*footer end*/

    /*scroll button-----------*/
     /* ✅ Scroll to Top Button (renamed classes) */
    .fc-scroll-btn {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: #06A3DA;
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 9999;
    }
    .fc-scroll-btn:hover {
      background: #0484b0;
      transform: translateY(-3px);
    }
    .fc-scroll-btn.fc-scroll-show {
      opacity: 1;
      visibility: visible;
    }
    /*scroll button--end------*/

    /*contact ----page-------------------------------------------------------------***********/

    /* ============= Scoped under .dc-wrapper ============= */
    .dc-wrapper {
      --dc-primary: #06A3DA;
      --dc-primary-dark: #0484b0;
      --dc-bg: #f6f8fb;
      --dc-muted: #7a8894;
      --dc-radius: 12px;
      --dc-shadow-md: 0 12px 30px rgba(12,35,64,0.12);
      --dc-max-width: 1200px;
      --dc-ease: cubic-bezier(.2,.9,.2,1);
      font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Jost", "Helvetica Neue", Arial;
      color:#172033;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      background: var(--dc-bg);
      margin: 0;
      padding: 0;
    }
    .dc-wrapper a{ color:var(--dc-primary); text-decoration:none }
    .dc-container{ width:calc(100% - 40px); max-width:var(--dc-max-width); margin:0 auto; }

    /* Hero */
    .dc-hero{ background: linear-gradient(180deg, rgba(6,163,218,0.95), rgba(6,163,218,0.85)); color:#fff; padding:60px 0; border-bottom-left-radius:36px; border-bottom-right-radius:36px; box-shadow: 0 10px 40px rgba(6,163,218,0.12); }
    .dc-hero .dc-breadcrumb{ opacity:.95; display:inline-flex; gap:8px; align-items:center; font-weight:600; }
    .dc-hero h1{ font-family:"Jost",sans-serif; font-weight:700; font-size:40px; margin:12px 0 6px; }

    /* Layout grid */
    .dc-contact-wrap{ margin-top:-40px; padding:40px 0 80px; }
    .dc-grid{ display:grid; grid-template-columns: 1fr; gap:24px; align-items:start; margin-top:25px;}
    /* Desktop: left card + form + map */
    @media (min-width:992px){
      .dc-grid{ grid-template-columns: 360px 1fr 420px; gap:28px; }
      .dc-contact-wrap{ padding-top:60px; margin-top:-60px; }
    }

    /* ===== Info card ===== */
    .dc-info-card{ background:#fff; border-radius:var(--dc-radius); padding:28px; box-shadow:var(--dc-shadow-md); border:1px solid rgba(15,34,64,0.04); }
    .dc-info-card .dc-small-label{ color:var(--dc-primary); font-weight:700; font-size:13px; text-transform:uppercase; }
    .dc-info-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:16px; }
    .dc-info-row i{ background: linear-gradient(180deg,var(--dc-primary),var(--dc-primary-dark)); color:#fff; padding:12px; border-radius:12px; min-width:54px; text-align:center; }

    /* ===== Form card (responsive) ===== */
    .dc-form-card{ background:#fff; border-radius:var(--dc-radius); 
    min-height:450px;
    padding:22px; box-shadow:var(--dc-shadow-md); border:1px solid rgba(15,34,64,0.04); }

    /* form grid: mobile = single column; >=768px = 2 columns */
    .dc-form-row{ display:grid; grid-template-columns: 1fr; gap:12px; }
    @media (min-width:768px){
      .dc-form-row{ grid-template-columns: 1fr 1fr; gap:12px; }
      /* full-width items (subject, message) */
      .dc-form-row .dc-full{ grid-column: 1 / -1; }
    }

    /* inputs */
    .dc-input {
      width:100%;
      padding:12px 14px;
      border-radius:10px;
      border:1px solid rgba(9,30,50,0.06);
      background:#fbfdff;
      font-size:15px;
      color:#122033;
      transition:all .18s var(--dc-ease);
      outline:none;
      box-shadow:none;
      box-sizing:border-box;
    }
    .dc-input:focus{ transform:translateY(-2px); box-shadow: 0 10px 30px rgba(6,163,218,0.08); border-color:var(--dc-primary); }
    .dc-textarea{ min-height:140px; resize:vertical; padding:12px 14px; }

    /* submit button: on small screens full width */
    .dc-btn-primary{
      display:inline-flex; align-items:center; gap:10px;
      background:linear-gradient(90deg,var(--dc-primary),var(--dc-primary-dark));
      color:#fff; border:none; padding:12px 18px; border-radius:10px; font-weight:600; cursor:pointer; box-shadow: 0 12px 30px rgba(6,163,218,0.14);
      transition: transform .18s var(--dc-ease), box-shadow .18s var(--dc-ease);
      white-space:nowrap;
    }
    .dc-btn-primary:hover{ transform:translateY(-3px); box-shadow: 0 20px 40px rgba(6,163,218,0.18); }
    @media (max-width:767px){
      .dc-btn-primary{ width:100%; justify-content:center; }
    }

    /* ===== Map card tweaks ===== */
    .dc-map-card{ border-radius:var(--dc-radius); overflow:hidden; min-height:500px; box-shadow:var(--dc-shadow-md); border:1px solid rgba(15,34,64,0.04); }
    .dc-map-inner{ width:100%; height:100%; min-height:500px; border:0; display:block; }

    /* reveal animations */
    .dc-anim{ opacity:0; transform: translateY(18px) scale(.995); transition: opacity .6s var(--dc-ease), transform .6s var(--dc-ease); }
    .dc-anim.dc-show{ opacity:1; transform: translateY(0) scale(1); }

    /* back to top */
    .dc-back-top{ position:fixed; right:20px; bottom:24px; width:50px; height:50px; border-radius:50%; background:var(--dc-primary); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px rgba(6,163,218,0.14); z-index:9999; opacity:0; transform:translateY(18px); transition:all .28s var(--dc-ease); border:none; cursor:pointer; }
    .dc-back-top.dc-show{ opacity:1; transform:translateY(0); }
    .dc-back-top:hover{ background:var(--dc-primary-dark); transform:translateY(-3px) scale(1.04); }

    /* minor responsive */
    @media (max-width:480px){
      .dc-hero h1{ font-size:28px; }
      .dc-grid{ gap:16px; }
      .dc-info-card{ padding:18px; }
      .dc-form-card{ padding:16px; }
      .dc-map-inner{ min-height:240px; }
    }
    
    /*--------------------contact page end--------**********---------------------------------*/

    /*home migration*/

    
    /*home migration end*/

    /*--------==================canada logo-----------------*/
   /* Custom Carousel Container */
    .my-logo-carousel {
      width: 100%;
      padding: 20px 0;
    }

    /* Custom Slide */
    .my-logo-carousel .my-logo-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Logo Styling */
    .my-logo-carousel .my-logo-slide img {
      width: 80px;   /* small logo size */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      transition: 0.3s;
    }

    .my-logo-carousel .my-logo-slide img:hover {
      filter: none;
      transform: scale(1.1);
    }
  
    /*-------------------------=========canada logo end===========--------*/