/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #e84029;
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #e84029;
        color: #e84029;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #e84029;
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

.btn.btn-light {
    color:#e84029;
    border: none;
}
.text-secondary {
    color: #0be1ff !important
}
a{
    text-decoration: none;
}
/*** Navbar End ***/

/* banner hero start */
/* Banner Carousel Styles */
/* Banner Carousel Styles */
.carousel {
  height: 90vh;     /* Adjusted height */
  min-height: 400px; /* Optional: also reduce min-height */
  position: relative;
  overflow: hidden;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Removed transform and transition to disable zoom animation */
}

.slide-bg-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/banner/banner\ 1.jpg");
  background-size: cover;
  background-position: center;
}

.slide-bg-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/banner/banner\ 2.jpg");
  background-size: cover;
  background-position: center;
}

.carousel-content {
  position: absolute;
  left: 10%;
  max-width: 50%;
  z-index: 10;
  padding-top: 130px;
  color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-item.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.carousel-item.active .carousel-title {
  opacity: 1;
  transform: translateY(0);
}

.carousel-text {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange {
  background-color: #fd7e14;
  border-color: #fd7e14;
  font-size: 1.2rem;
  padding: 10px 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s, background-color 0.3s;
}

.carousel-item.active .btn-orange {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange:hover {
  background-color: #e67300;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
  margin-left: 8px;
  position: relative;
}

.carousel-indicators .active {
  background-color: white;
  transform: scale(1.2);
}

.carousel-indicators .active:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  opacity: 1;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  z-index: 10;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #fd7e14;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel {
    height: 70vh;
    min-height: 400px;
  }

  .carousel-content {
    left: 5%;
    max-width: 90%;
    padding-top: 150px;
  }

  .carousel-title {
    font-size: 2.5rem;
  }

  .carousel-text {
    font-size: 1.2rem;
  }

  .btn-orange {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .carousel-title {
    font-size: 2rem;
  }

  .carousel-text {
    font-size: 1rem;
  }

  .carousel-content {
    padding-top: 120px;
  }
}

/* banner hero end */

/* footer start */
.content {
            flex: 1;
            padding: 50px 0;
            background: #f8f9fa;
        }
        
        #footer {
            background: #02245b;
            color:#90a5a6;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-section h7 {
            color:#f8f9fa;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        /* .footer-address {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            transition: transform 0.3s ease;
        } */
        
        /* .footer-address:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        } */
        
        .footer-address i {
            color:#e84029;
            margin-right: 10px;
            width: 20px;
        }
        
        .footer-address p {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        
        .footer-links a {
            color: #b8c5d6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffd700;
        }
        
        .footer-social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            
        }
        .btn{
          color: red;
        }
        .btn:hover{
          color: white;
        } 
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #ffd700;
            color: #1e3c72;
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #b8c5d6;
        }
/* footer end */

/* service start */

        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background:#c70233;
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .services-carousel {
            display: flex;
            gap: 25px;
            padding: 20px 0;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .services-carousel::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 300px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            scroll-snap-align: start;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }
        .service-card:nth-child(9) { animation-delay: 0.9s; }
        .service-card:nth-child(10) { animation-delay: 1s; }

        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(232, 71, 47, 0.15);
        }

        .card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .card-image {
            transform: scale(1.05);
        }

        .card-content {
            padding: 25px;
            position: relative;
        }

        .service-icon {
            position: absolute;
            top: -30px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: #c70233;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(232, 71, 47, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.1);
            background: var(--text-dark);
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            color:black;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: #c70233;
        }

        .service-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-description {
            color: var(--text-dark);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: #c70233;
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .read-more:hover {
            color: var(--text-dark);
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            border: none;
            color: var(--primary-color);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 0;
        }

        .carousel-next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(232, 71, 47, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding: 0 20px;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .service-card {
                flex: 0 0 260px;
            }
            
            .card-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .service-card {
                flex: 0 0 240px;
            }
            
            .card-image {
                height: 150px;
            }
        }
        :root {
            --primary-color: #e8472f;
            --secondary-color: #f8a48c;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
/* service end */

/* customer logo start  */
#customer-section {
            padding: 50px 0;
            background: #f8f9fa;
        }

        .customer-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            color: #333;
        }

        #customer-carousel {
            overflow: hidden;
            white-space: nowrap;
            padding: 20px 0;
        }

        .customer-scroll {
            display: inline-block;
            animation: customer-slide 15s linear infinite;
        }

        .customer-logo {
            width: 150px;
            height: 100px;
            object-fit: contain;
            margin: 0 30px;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .customer-logo:hover {
            filter: grayscale(0%);
        }

        @keyframes customer-slide {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        #customer-carousel:hover .customer-scroll {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .customer-logo {
                width: 120px;
                height: 80px;
                margin: 0 20px;
            }
        }
/* customer logo end  */

/* strip banner start */
 .parallax-banner {
      background-image:url(img/banner/strip\ banner\ 2.jpeg);
      min-height: 300px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
    }

    .parallax-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color:rgb(199,2,51,0.8) ; /* #e84029 with opacity */
      z-index: 0;
    }

    .parallax-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .parallax-content h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .parallax-content p {
      font-size: 1.2rem;
    }

    .btn-custom {
      background-color: #fff;
      color: #e84029;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background-color: #e84029;
      color: #fff;
    }
/* strip banner end */

/* appoinment start */

.appointment {
    background: linear-gradient(rgb(199,2,51,0.9),rgb(199,2,51,0.5)), url(img/banner/banner\ 2.jpg) center center no-repeat;
    background-size: cover;
}

.appointment .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.appointment h1,
.appointment p {
    color: #fff;
}

.appointment .bg-white {
    background-color: #fff;
}

.appointment .rounded {
    border-radius: 0.5rem;
}

/* .appointment .p-3,
.appointment .p-5 {
     padding: 1rem !important;
} */

.appointment .text-white {
    color: #fff !important;
}

.appointment img.rounded-circle {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.appointment .btn-primary {
    background-color:#c70233;
    border-color: var(--primary);
    color: #fff;
}

.appointment .btn-primary:hover {
    background-color:#C70233;
    border-color: var(--secondary);
}

.form-floating > label {
    color: #6c757d;
}

.form-control {
    border-radius: 0.375rem;
    box-shadow: none;
    border: 1px solid #ced4da;
}
.ap-btn{
    background-color:#c70233;
}
.ap-btn:hover{
    background-color:#cf2f17;
    transition: 0.3s
}

/* appoinment end */

.img-card {
      border-radius: 20px;
      overflow: hidden;
    }
    .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .info-box {
      background-color: #c70233;
      color: white;
      border-radius: 30px;
      padding: 30px 20px;
      text-align: center;
    }
    .info-box i {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    .section-title {
      color: #c70233;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .feature-list li {
      margin-bottom: 10px;
      font-size: 1rem;
    }
    .feature-list i {
      color: #c70233;
      margin-right: 10px;
    }
    .btn-started {
      background-color: #c70233;
      color: #fff;
      border-radius: 10px;
      padding: 10px 25px;
    }

  /* testmonial start */
.testimonials {
            padding: 60px 0;
        }

        /* .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 3rem;
        } */

        /* Testimonial Styles */
        .shadow-effect {
            background: #fff;
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #e8e9ea;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .shadow-effect:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .shadow-effect img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 3px solid #3190e7;
        }

        .shadow-effect p {
            font-family: inherit;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
            font-weight: 400;
            color: #555;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        .testimonial-name {
            margin: 20px auto 0;
            display: inline-block;
            background-color: #c70233 ;
            padding: 10px 25px;
            border-radius: 25px;
            text-align: center;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(49, 144, 231, 0.3);
        }

        #customers-testimonials .item {
            padding: 0 10px;
            margin-bottom: 20px;
        }

        /* Owl Carousel Custom Styles */
        .owl-carousel .owl-nav {
            margin-top: 30px;
            text-align: center;
        }

        .owl-carousel .owl-nav button {
            background: #c70233 !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            font-size: 18px !important;
            margin: 0 10px !important;
            border: none !important;
            transition: all 0.3s ease !important;
        }

        .owl-carousel .owl-nav button:hover {
            background: #2980b9 !important;
            transform: scale(1.1);
        }

        .owl-carousel .owl-nav button.owl-prev {
            margin-right: 10px !important;
        }

        .owl-carousel .owl-nav button.owl-next {
            margin-left: 10px !important;
        }

        /* Placeholder image styles */
        .placeholder-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #c70233;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
            /* border: 3px solid #3190e7; */
        }
/* about page start */
.page-header {
    background: url(img/main-service/about\ us.jpg) center center no-repeat;
    background-size:cover;
    
}
/* Container for image with overlay box */
.position-relative.overflow-hidden.rounded.ps-5.pt-5.h-100 {
    min-height: 400px;
}

/* Main image styling */
.position-relative img.position-absolute {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White box at top-left */
.bg-white.rounded.pe-3.pb-3 {
    width: 200px;
    height: 200px;
}

/* Inside blue box with text */
.bg-primary.rounded.h-100.p-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Text inside the experience badge */
.bg-primary.rounded h1,
.bg-primary.rounded h2,
.bg-primary.rounded h5 {
    color: white;
    margin: 0;
}

/* Contact box under the paragraph */
.border-top.mt-4.pt-4 .d-flex.align-items-center img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}
.exp{
    background:#c70233;
}
.class1 {
  margin-top: 70px;
}

.class6 {
  color: #f1c232;
}

.class4,
.class7,
.class8,
.class9 {
  border-right: #ddd solid 0.1px;
  
}

.class9 {
  border-right: 0px;
}
.num{
    background: #073763; 
  text-align: center;
  color: #fff;

}

/* contact details start  */
.contact-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        .contact-info h2 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .contact-info h4 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: 30px;
        }
        .contact-info p {
            color: #6c757d;
            margin-bottom: 10px;
        }
        .contact-form h2 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .contact-form p {
            color: #6c757d;
            margin-bottom: 30px;
        }
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
        }
        .btn-submit {
            background-color: #c70233;
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-submit:hover {
            background-color:#c70233 ;
            color: white;
            transition: .3 sec;
        }
        .social-icons a {
            color: #6c757d;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        /* .social-icons a:hover {
            color: #ff6b35;
        } */
         .contact-info i{
            color:#c70233;
        }
/* contact details end  */

/* service page start */
.custom-body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: #1e293b;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      min-height: 100vh;
    }

    #our-services {
      padding: 60px 0;
    }

    .custom-service-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      border: none;
      height: 100%;
      position: relative;
      width: 95%;
      margin: 0 auto;
    }

    .custom-service-card:hover {
      transform: translateY(-5px);
    }

    .custom-service-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .custom-service-content {
      padding: 1.5rem;
    }

    .custom-service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #c70233 0%, #a0021a 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -50px auto 1.5rem auto;
      position: relative;
      z-index: 3;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .custom-service-icon i {
      color: white;
      font-size: 1.5rem;
    }

    .custom-service-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1e293b;
    }

    .custom-service-description {
      color: #64748b;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .read-more-btn {
      background: #c70233;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.9rem;
    }

    .read-more-btn:hover {
      background: #a0021a;
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: 1.1rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }
/* service page end */

/* service view page start */
.cms-body {
      background-color: #f8f9fa;
      padding: 30px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .heading {
      font-size: 2.5rem;
      font-weight: 700;
      color: #333;
      animation: fadeInUp 1s ease-out;
    }

    .subheading {
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 20px;
      color: #555;
      animation: fadeInUp 1.3s ease-out;
    }

    .content-cms {
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
      animation: fadeInUp 1.6s ease-out;
    }

    .content-cms ul {
      margin-top: 15px;

    }

    .content-cms ul li {
      margin-bottom: 10px;
      list-style: none;
    }

    .form-section {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 30px;
      animation: fadeInRight 1.5s ease-out;
    }
.cms-btn{
    background-color:#c70233;
    color: white;
}
.cms-btn:hover{
    background-color: red;
    color: #ffffff;
    transition: 5 sec;
}
    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
/* service view page end */
/* page head start */
.page-header-cloud {
    background: url(img/main-service/Cloud\ &\ Datacentre\ Infrastructure.jpg) center center no-repeat;
    background-size:cover;
}
.page-header-it-consulting  {
    background: url(img/main-service/IT\ Consulting.jpg) center center no-repeat;
    background-size:cover;
    
}
.page-header-networking{
background: url(img/main-service/Network\ &\ Connectivity.jpg) center center no-repeat;
    background-size:cover;
}

.page-header-cyber{
  background: url(img/main-service/Cyber\ Security\ Solutions.jpg) center center no-repeat;
    background-size:cover;
}
.page-header-software{
  background: url(img/main-service/Software\ Development.jpg) center center no-repeat;
    background-size:cover;
}
.page-header-erp{
   background: url(img/main-service/erp.jpg) center center no-repeat;
    background-size:cover;
}
.page-header-imp{
  background: url(img/main-service/IT\ Implementation\ and\ Support.jpg) center center no-repeat;
    background-size:cover;
    
}
.page-header-staff{
  background: url(img/main-service/IT\ Staffing\ and\ Tra\ i\ n\ i\ n\ g.png) center center no-repeat;
    background-size:cover;
    
}
.page-header-project{
  background:url(img/main-service/Program\ and\ Project\ Management\ Consulting.jpg);
  background-size: cover;
}
/* page head end */

/* service page logo start */
.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
/* service page logo end */