
        :root {
  /* Primary brand colour (blue) */
  --primary-color: #e81c2e;

  /* Secondary / darker background tone */
  --secondary-color: #222b35;

  /* Accent / highlight colour */
  ----accent-color: 4cb9e2;

  /* Light background / neutral base */
  --light-color: #f5f7fa;

  /* Dark text or dark background tone */
  --dark-color: #1e2b38;

  /* Text / body copy colour */
  --text-color: #414d5b;
}

.text-primary{
    color:#e81c2e !important;
}
.btn-outline-primary{
    border-color: #e81c2e !important;
   color: #e81c2e !important;
}
      
.btn-outline-primary:hover{
    background-color: #e81c2e !important;
    color: white !important;
}

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--secondary-color) !important;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .hero-section {
            
            background-repeat:no-repeat;
            color: white;
            width: 100% !important;
            height: 720px !important;
            
            text-align: center;
            position: relative;
        }
        
        .carousel-item {
            height: 720px;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .hero-content {
            padding:210px 0;
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        
        .carousel-indicators {
            bottom: 30px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: %;
            margin: 0 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
            padding:155px 5px;
            }
            .hero-section p {
                font-size: 1rem;
            }
            
            .hero-section {
                height: 600px !important;
                padding: 0 !important;
            }
            
            .carousel-item {
                height: 600px;
            }

           
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-title h2:after{
            left: 0;
            transform: none;
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-card {
            
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(26, 106, 162, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 2rem;
        }
        
        .about-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .about-content {
            padding-right: 30px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
        }
        
        .pricing-section {
            padding: 100px 0;
        }
        
        .pricing-card {
            display:flex;
            flex-direction:column;
            align-items:center;
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: start;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 2px solid transparent;
        }
        
        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .testimonials-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .author-info p {
            margin: 0;
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        .contact-section {
            padding: 100px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px ;
            height: 50px ;
            background-color: rgba(26, 106, 162, 0.1);
            border-radius: 50% !important;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-details h5 {
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 100px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }
        
        .subsbtn{
            border-radius: 0 40px 40px 0 !important;
        }
        
        .subsbtn:hover{
            background-color:pink ! important;
            color:Black ! important;
        }
    
    
    .services-section1 {
            height: 850px;
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            padding-bottom:10px !important;
        }
        
       
        .shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        
        .shape-divider .shape-fill {
            fill: #FFFFFF;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header .subheader {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .section-header .header {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .intro-text {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .service-slide {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: auto;
        }
        
        .service-image {
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 30px;
            color: var(--dark-color);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .service-duration {
            margin-bottom: 20px;
        }
        
        .service-duration i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .service-description {
            margin-bottom: 25px;
            color: #666;
        }
        
        .service-features {
            list-style-type: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .service-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        
        .service-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .service-btn1 {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .service-btn1:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-control-prev1, 
        .carousel-control-next1 {
            position:absolute;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 0, 0, 0.3) ;
;
            border:none !important;
            border-radius: 50%;
            top: 35%;
            transform: translateY(-65%);
            opacity: 0.8;
        }
        
        .carousel-control-prev1 {
            left: 5px;
             
        }
        
        .carousel-control-next1 {
            right: 5px;
             
        }
        
        .carousel-control-prev1:hover, 
        .carousel-control-next1:hover {
            opacity: 1;
            background-color: rgba(255, 0, 0, 0.9)
        }
        
        
            
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
        }
        
        
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .service-slide {
                height: auto;
            }
            
            .service-image {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .section-header .header {
                font-size: 2rem;
            }
            
            .services-section1 {
            height: 930px;}
            
            .service-content {
                padding: 20px;
            }
        }
        
        
        /* Full-screen overlay */
/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* black background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* The loader circle */
#preloader .loader {
  width: 60px;
  height: 60px;
  border: 6px solid #FF0000;      /* red solid border */
  border-top-color: #000;         /* black at top to give rotation effect */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animation keyframes */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* When content is loaded, hide the preloader */
body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.loader {
  text-align: center;
}

.loader‐text {
  margin-top: 20px;
  animation: fadeInOut 2s ease-in-out infinite;
}
