        body {
            background: #0b1c2d;
            color: #ffffff;
            font-family: 'Segoe UI', sans-serif;
        }

        /* Header */
        header {
            background: #000;
            border-bottom: 3px solid #c8102e;
        }

        .logo img {
            max-width: 170px;
        }
		
		/* Menu */
        .navbar-nav .nav-link {
			position: relative;
		}

		.navbar-nav .nav-link::after {
			content: "";
			position: absolute;
			width: 0;
			height: 2px;
			left: 0;
			bottom: -5px;
			background-color: #c8102e;
			transition: 0.3s;
		}

		.navbar-nav .nav-link:hover::after,
		.navbar-nav .nav-link.active::after {
			width: 100%;
		}

		.navbar-nav .nav-link.active {
			color: #c8102e !important;
		}


        /* Carousel */
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-overlay {
            background: rgba(0,0,0,0.65);
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .carousel-caption {
            z-index: 2;
        }

        .carousel-caption h2 {
            font-size: 40px;
            font-weight: bold;
        }

        .btn-custom {
            background: #c8102e;
            border: none;
            padding: 12px 30px;
            font-weight: bold;
        }

        .btn-custom:hover {
            background: #a00d24;
        }

		.carousel-control-prev-icon,
		.carousel-control-next-icon {
			background-color: rgba(0, 0, 0, 0.6);
			padding: 20px;
			border-radius: 50%;
		}

		/* Breadcrumb */
        .breadcrumb {
			background: transparent;
			padding: 10px 0;
			margin-bottom: 30px;
		}

		.breadcrumb a {
			color: #c8102e;
			text-decoration: none;
		}

		.breadcrumb a:hover {
			text-decoration: underline;
		}

		.breadcrumb-item.active {
			color: #ffffff;
			font-weight: 600;
		}

		.breadcrumb-item + .breadcrumb-item::before {
			color: #888;   /* Change slash color */
		}

		
        /* Services */
        .services {
            padding: 70px 0;
            text-align: center;
        }

        .services h3 {
            margin-bottom: 50px;
            font-weight: bold;
        }

        .service-box {
            background: #12283d;
            padding: 30px;
            border-radius: 10px;
            transition: 0.3s;
            height: 100%;
        }

        .service-box:hover {
            background: #183a57;
            transform: translateY(-5px);
        }

        .service-box h4 {
            color: #c8102e;
            margin-bottom: 15px;
        }
		
		/* Section Title */
        .section-title {
            font-weight: bold;
            margin-bottom: 40px;
        }

        /* Service Cards */
        .service-card {
            background: #12283d;
            padding: 30px;
            border-radius: 10px;
            transition: 0.3s;
            height: 100%;
        }
        .service-card:hover {
            background: #183a57;
            transform: translateY(-5px);
        }
        .service-card h5 {
            color: #c8102e;
            margin-bottom: 15px;
        }

        /* Detailed Sections */
        .service-detail {
            padding: 60px 0;
            border-bottom: 1px solid #1f3b56;
        }
		.service-detail h3 {
			color: #c8102e;
			font-weight: bold;
			margin-bottom: 20px;
		}

		.service-img {
			border-radius: 10px;
			transition: 0.3s;
		}

		.service-img:hover {
			transform: scale(1.03);
		}

        /* gallery */
		.gallery-img {
            cursor: pointer;
            transition: 0.3s ease;
        }

        .gallery-img:hover {
            transform: scale(1.05);
        }

        .modal-img {
            width: 100%;
        }
		
		/* Contact Section */
        .contact-section {
            padding: 60px 0;
        }
        .contact-info h5 {
            color: #c8102e;
            margin-bottom: 15px;
        }
        .contact-info p, .contact-info a {
            color: #ffffff;
            font-size: 15px;
            margin-bottom: 10px;
        }
        .contact-info a:hover {
            color: #c8102e;
        }

        .contact-form .form-control {
            border-radius: 5px;
            margin-bottom: 15px;
            background: #12283d;
            color: #fff;
            border: 1px solid #183a57;
        }
        .contact-form .form-control::placeholder {
            color: #ccc;
        }
        .contact-form .btn-submit {
            background: #c8102e;
            border: none;
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
        }
        .contact-form .btn-submit:hover {
            background: #a00d24;
        }
		
		/* Footer */
        .footer {
            background: #06121d;
            padding: 50px 0 20px 0;
            border-top: 3px solid #c8102e;
        }
        .footer h5 {
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: bold;
        }
        .footer p, .footer a {
            color: #cccccc;
            font-size: 14px;
            text-decoration: none;
        }
        .footer a:hover {
            color: #c8102e;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            border-top: 1px solid #333;
            padding-top: 15px;
            font-size: 13px;
        }

        iframe {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            border: none;
        }
