
        :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .gradient-bg-services {
               background: linear-gradient(135deg, #2c3e50, #e74c3c);    
            /* background: linear-gradient(135deg, rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.5)); */
            /* background: linear-gradient(135deg,rgba(52, 152, 219, 0.5),rgba(52, 152, 219, 0.25)); */
        }
        
         /* Navbar brand container */
.navbar-brand {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
#nav-logo {
  height: 8vh;         
  max-height: 60px;    
  width: auto;         
  object-fit: contain;  
  object-position: center;
  display: block;
}

/*Mobile adjustments */
@media (max-width: 768px) {
  #nav-logo {
    height: 6vh;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  #nav-logo {
    height: 5vh;
    max-height: 35px;
  }
}

        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 20px;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--primary);
            margin: 20px 0;
        }
        
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .social-icons a {
            color: white;
            font-size: 24px;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary);
        }
        

        #service-hero-img{
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            border: 2px solid #2980b9;
        }

        #hero-nums{
            background-color: rgba(52, 152, 219, 0.5);
            border-radius: 20px;
            font-size: 25px;
        }

        #hero-nums span{
            color: #2c3e50;
           
        }



        /* Floating action buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        
        .floating-btn:hover::after {
            transform: translateY(0);
        }
        
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
        }
        
        .call-btn {
            background-color: var(--accent);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .btn-text {
            position: absolute;
            right: 70px;
            background: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .floating-btn:hover .btn-text {
            opacity: 1;
            right: 75px;
        }
        
        /* For mobile devices */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .btn-text {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .floating-btn:hover .btn-text {
                right: 65px;
            }
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
        
        .call-btn {
            animation: pulse 2s infinite;
        }
    




       
/* Services we offer section */
        
        .services-section {
            padding: 80px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .service-card {
            max-height: 50vh;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover:before {
            opacity: 1;
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            /* background-color: transparent; */
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
        }
        
        .service-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 1.25rem;
            position: relative;
            z-index: 1;
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .service-highlight {
            background: var(--accent);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }
        
        .cta-container {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.25), rgba(52, 152, 219, 0.5));
            border-radius: 12px;
            padding: 40px;
            color: white;
            margin-top: 60px;
            text-align: center;
        }
        .cta-container p{
            color: #2c3e50;
            font-weight: 500;
        }
        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: #2980b9;
        }
        
        .cta-button {
            background: white;
            color: var(--primary);
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s;
            border: 2px solid white;
        }
        
        .cta-button:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }
        
        .service-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 200px;
            /* background: linear-gradient(135deg, #3498db, #2c3e50); */
            /* background: rgba(52, 152, 219, 0.5); */
            background: linear-gradient(135deg,rgba(52, 152, 219, 0.5),rgba(52, 152, 219, 0.25));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        .service-image p{
            color: #2c3e50;
        }
        
        @media (max-width: 768px) {
            .service-card {
                margin-bottom: 20px;
            }
            
            .service-image {
                height: 150px;
                margin-bottom: 20px;
            }
        }
        





     /* Booking Section */
        
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg,white,whitesmoke);
            /* background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); */
            border-radius: 15px;
            color: #2c3e50;
            /* color: white; */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: white;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .intro-text {
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .booking-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            color: #333;
        }
        
        .form-title {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .btn-book {
            background: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn-book:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .contact-method {
            background: rgba(52, 152, 219, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 200px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 1); 
            /* border: 2px solid black; */
        }
        
        .contact-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .contact-text {
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .contact-link {
            color: #c0392b;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .contact-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .feature {
            text-align: center;
            max-width: 250px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            color: #2980b9;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-method {
                width: 100%;
                max-width: 300px;
            }
            
            .features {
                gap: 20px;
            }
        }
    
    

















       