.logo {
    width: 100px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.social-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.social-contact>div {
    display: flex;
    align-items: center;
}

.social-contact i {
    color: white;
    font-size: .8rem;
    background-color: #182955;
    min-width: 24px;
    padding: 7px;
    border-radius: 50%;
}

.social-contact h6 {
    margin: 0;
    font-weight: 600;
    font-size: .8rem;
    color: #222;
}

.social-contact p {
    margin: 0;
    font-size: 0.7rem;
    color: #555;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon i {
    color: white;
    font-size: .9rem;
    background-color: #182955;
    min-width: 24px;
    padding: 12px 6px;
    border-radius: 50%;
}

.navbar {
    background-color: #002d73;
}

.navbar a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.navbar a:hover {
    font-weight: 500;
    background-color: white;
    color: #182955;
}

.navbar .nav-item.dropdown.show>.nav-link {
    font-weight: 600;
    background-color: white;
    color: #182955;
}

.dropdown-menu {
    color: #182955 !important;
    background-color: #ffffff;
}

.dropdown-menu a {
    color: #182955 !important;
    font-size: 1rem;
}

.dropdown-menu a:hover {
    border-bottom: 1px solid grey;
    font-weight: 700;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:focus {
    color: white;
    background-color: #182955;
}

/* Mobile and tablet styles */
@media (max-width: 991.98px) {
    .container-fluid {
        flex-direction: column;
        align-items: center;
        /* padding: 18px !important; */
    }

    .logo {
        margin-bottom: 10px;
    }

    .social-contact,
    .social-icon {
        display: none !important;
    }

    .d-flex.d-lg-none i {
        color: white;
        font-size: 1rem;
        background-color: #182955;
        min-width: 24px;
        padding: 10px;
        border-radius: 50%;
        margin: 0 5px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }
}

/* FOOTER */
.footer {
    background-color: #002f6c;
    /* Dark blue */
    color: white;
    padding: 40px 15px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 350px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight:bolder;
}

.footer-column p,
.footer-column ul,
.footer-column li,
.footer-column a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #fff;
}

.social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
}

.social-icons a:hover {
    color: #fff;
}

.footer hr {
    border: 0.5px solid #eeeeee;
    margin: 20px auto;
    width: 95%;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}



/* HOME PAGE */

.main-slider .carousel-item {
    position: relative;
    height: 600px;
    width: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(40%);
    /* 100% is normal, lower is darker */
}

.carousel-caption {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100% !important;
    text-align: left;
    padding: 0 50px;
    left: 0;
    right: 5% !important;
}

.text-content {
    max-width: 50%;
    margin-right: 2rem;
    /* Added margin to create space between text and form */
}

.text-content h1 , .custom-width h1{
    font-size: 3rem;
    font-weight: 400;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.carousel-caption p {
    font-size: 1rem;
    margin-top: 2rem;
}

.custom-width {
    width: 100%;
}

@media (min-width: 992px) {
    .custom-width {
        width: 50%;
    }
}

.text-content p {
    font-size: 1rem;
    margin-top: 1rem;
}

.form-container {
    background: white;
    padding: 2rem;
	height: 520px !important;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    margin-left: 2rem;
    /* Added margin to create space from text */
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #182955;
}

.form-container p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #aaa;
}

.form-container button {
    background: #f5a623;
    color: #182955;
    border: none;
    padding: 0.75rem;
    width: 100%;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-container button:hover {
    background: #e69520;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
}

.carousel-indicators .active {
    background-color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .home-page .logo {
        display: block;
		 margin: auto;
    }

    .main-slider .carousel-item {
        min-height: 65vh;
        /* Reduce height on small screens */
    }

    .carousel-caption {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        /* padding: 0 10px; */
    }

    .text-content,
    .home-page .w-50,
    .home-page .w-md-100 {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .text-content h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .form-container {
        max-width: 100%;
        margin-left: 0;
        padding: 1.5rem;
        height: 400px;
    }

    .form-container .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-container .input-group input {
        margin-right: 0;
        width: 100%;
    }

    .carousel-caption p,
    .text-content p {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .home-page .e-icon {
        display: none;
    }

    .logo {
        display: block;
    }

    .carousel-item:not(:first-child) .carousel-caption {
        left: 0;
        right: 0;
    }

    .main-slider .carousel-item {
        min-height: 40vh;
        /* Further reduce height on very small screens */
    }

    .text-content h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .form-container h3 {
        font-size: 1rem;
    }

    .form-container p {
        font-size: .7rem;
        margin: 0;
    }

    .form-container input,
    .form-container textarea {
        padding: 5px;
    }

    .form-container input::placeholder,
    .form-container textarea::placeholder {
        font-size: .6rem;
    }

   .form-container {
        height: auto;
    }

    .form-container button {
        padding: 5px;
        font-size: .7rem;
    }
}

.about h3 {
    font-size: 44px;
    font-weight: 400;
}

.about p {
    font-size: 15px;
    margin-top: 20px;
    line-height: 20px;
    color: #555;
}

.about img {
    width: 100%;
    height: 450px;
    border-radius: 10px;
	object-fit:cover;
}

.about button {
    padding: 8px 18px;
    background: #f5a623;
    color: #182955;
    font-weight: 500;
    margin-top: 20px;
}

.about button:hover {
    background: #e0951c;
    color: #182955;
}

.services h3 {
    font-size: 35px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .services h3 {
        font-size: 20px;
        text-align: center;
        padding: 10px;
    }



    .home-page .choose-us h2 {
        font-size: 22px !important;
        line-height: 24px !important;

    }

    .home-page .choose-us p {
        margin-top: 20px;
    }
}

.services i {
    background-color: #182955;
    color: white;
    padding: 16px;
    font-size: 32px;
    border-radius: 10px;
    width: 65px;
    margin-top: -35px;
    text-align: center;
}



.services-box {
    background-color: #f8f8f8;
    padding-top: 20px;
    margin-top: 20px;
}
.services p {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  
  color: #444;
   
}
.services-box h5 {
    font-weight: 400;
    font-size: 24px;
}

.services-box h6 {

    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #12336D;
    font-size: 12px;
    /* font-weight: 400;
    color: #182955;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px; */
}
.services .card {
	min-height: 520px;
    border-radius: 0;
    border: none;
    box-shadow: 2px 2px 2px rgb(221, 221, 221);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services .card:hover {
	border-top-left-radius: 5px;
    border-top-right-radius:5px ;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid #182955;
}

@media (min-width: 992px) {

    .service-text h3,
    .service-text p {
        padding: 5px 240px;
    }

    .testimonial .heading-box {
        padding-left: 150px;
        padding-right: 150px;
    }

    .home-page .blog-para {
        padding: 5px 250px;
    }
}

.home-page .service-text h3 {
    font-weight: 400;
}

.blue-dot-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #182955;
    margin-bottom: 10px;
    font-weight: 400;
}

.blue-dot-heading::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #182955;
    border-radius: 50%;
    flex-shrink: 0;
}

.services button {
    padding: 8px 18px;
    background: #f5a623;
    color: #182955;
    font-weight: 500;
    margin-top: 20px;
}

.services button:hover {
    background: #e0951c;
    color: #182955;
}

.home-page .choose-us img {
    width: 100%;
    height: auto;
}

.blue-dot-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #182955;
}

.blue-dot-heading-left::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #182955;
    border-radius: 50%;
    flex-shrink: 0;
}

.home-page .choose-us h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    padding-right: 20px;
}

.home-page .choose-us p {
    font-size: 14px;
    margin-bottom: 40px;
}

.home-page .choose-us .choosebox p {
    margin-bottom: 0;
}

.home-page .chooseEven {
    padding: 10px;
    background-color: #ffffff;
}

.home-page .chooseEven i {
    padding: 8px;
    background-color: #002D73;
    color: white;
    border-radius: 50%;
}

.home-page .chooseEven p {
    font-size: 14px;
    margin-top: 10px;
}

.home-page .chooseOdd {
    background-color: #002D73;
    color: white;
    padding: 10px;
}

.home-page .chooseOdd i {
    padding: 8px;
    background-color: #ffffff;
    color: #002D73;
    border-radius: 50%;
}

.home-page .chooseOdd p {
    font-size: 14px;
    margin-top: 10px;
}

.home-page .choose-us .container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
	height: 100%;
}

.home-page .choose-us .image-container {
    position: relative;
    width: 100%;
	height: 100%;
}

.home-page .choose-us .image-one {
    width: 100%;
    height: 100%;
    display: block;
	object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-page .choose-us .image-two {
    position: absolute;
    bottom: 30px;
    right: -65px;
    width: 70%;
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

	.services .card{
	min-height: 450px;
}
    .home-page .choose-us .image-two {
        width: 60%;
        bottom: -15px;
        right: -15px;
    }

    .blue-dot-heading-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .about h3 {
        font-size: 22px;
        padding-top: 10px;
    }

    
}

.testimonial .heading-box h3 {
    font-size: 42px;
}
.about-section {
    padding: 40px 0px;
    background-color: #F8F8F8;
    /* padding: 50px; */
}
.testimonial {
    padding: 0 15px;
}

.heading-box h3 {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 16px;
}

.heading-box p {
    font-size: 1.3em;
    color: #6c757d;
    margin-bottom: 30px;
}

.testimonial-item {
    background: #ebf3fe;
    border-radius: 15px;
    padding: 20px;
    margin: 0 10px;
    height: 100%;
    position: relative;
    text-align: left;
}

.client-info i {
    font-size: 1.5em;
    color: #002d73;
}

.testimonial-item h5 {
    font-size: 1.1em;
    font-weight: 400;
}

.testimonial-item p {
    font-size: 0.9em;
    color: #343a40;
    margin-bottom: 15px;
}

.stars {
    color: #f1c40f;
    margin-bottom: 10px;
}

.stars span {
    font-size: 0.9em;
    color: #343a40;
    margin-left: 5px;
}

.testimonial-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.client-info {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
}

.client-info h5 {
    font-size: .8em;
    margin: 0;
    text-transform: uppercase;
}

.client-info p {
    font-size: .7em;
}

.carousel-inner {
    padding-bottom: 20px;
    width: 100% !important;
}

/* .home-page .carousel-control-prev,
.home-page .carousel-control-next {
    width: 5%;
    background: none;
}

.home-page .carousel-control-prev-icon,
.home-page .carousel-control-next-icon {
    background-color: #0d6dfd7c;
    border-radius: 50%;
} */

@media (min-width: 992px) {
    .carousel-item .row {
        display: flex;
        justify-content: center;
    }

    .testimonial-item {
        flex: 0 0 30%;
        /* max-width: 30%; */
    }
}

@media (max-width: 991px) {
   .testimonial-item {
        margin-bottom: 20px;
    }

    .carousel-item .row>div {
        display: none;
    }

    .carousel-item .row>div:first-child {
        display: block;
    }
}

.home-page .blog {
    background-color: #f8f8f8;
    padding: 20px 2px;
}

.home-page .blog .card {
    border: none;
    /* box-shadow: 2px 2px rgb(230, 230, 230); */
}

.home-page .blog .card .card-body {
    text-align: left;
    /* box-shadow: 2px 2px rgb(230, 230, 230); */
}

.map-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* HOME PAGE END*/


/* SERVICES PAGE */


        .services-page .bg-about {
            background-color: #f8f8f8;
        }

        /* Parent container */
        .services-page .image-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            /* Ensure parent has height */
        }

        /* Base styles for .image-inner */


        .services-page .card {
            border: none;
            text-align: left;
			
        }

   .services-page .card p {
    padding: 0;
    margin: 0;
	   font-size:18px;

    display: -webkit-box;
    -webkit-line-clamp: 3; /* change number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}




        .services-page .b-head {
            padding-left: 300px;
            padding-right: 300px;
            box-sizing: border-box;
        }

        .services-page .b-head h3 {
            color: black;
            font-weight: 400;
            font-size: 36px;
        }

        @media screen and (max-width: 991px) {
            .services-page .b-head {
                padding-left: 0.625rem !important;
                padding-right: 0.625rem !important;
            }


            .services-page .service-text h3 {
                font-size: 28px !important;
                padding-left: 0.625rem !important;
                padding-right: 0.625rem !important;
            }
        }

        /* @media screen and (max-width: 768px) {
  .service-text h3 {
                font-size: 20px;
                padding-left: 0.625rem !important;
                padding-right: 0.625rem !important;
            }
} */
        .services-page .main-header {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .services-page .header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            filter: brightness(50%);
            /* Lower value = darker */
        }


        .services-page .header-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #ffffff;

            /* padding: 2.5rem; */
            max-width: 100%;
            width: 90%;
            z-index: 2;
            border-radius: 8px;
            /* Subtle rounded corners */
        }

        .services-page .header-content h2 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            /* Text shadow for readability */
        }

        .services-page .header-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services-page .header-content {
                padding: 1.5rem;
                max-width: 90%;
            }

            .services-page .header-content h2 {
                font-size: 1.8rem;
            }

            .services-page .header-content p {
                font-size: 1rem;
            }

            .services-page .service-text-box h4 {
                font-size: 20px;
            }

            .services-page .service-text-box p {
                text-align: justify;
            }
        }

        .services-page .service-text h3 {
            font-size: 30px;
            padding-left: 250px;
            padding-right: 250px;
            font-weight: 400;
        }

        .services-page .card-text {
            margin-top: 20px !important;
        }

        .services-page .card-body h6 {
            font-family: "Optima", "Gill Sans", "Source Sans Pro", "Segoe UI", sans-serif;
            font-weight: 400;
            font-size: 16px;
            /* Adjust as needed */
            letter-spacing: 0.1em;
            /* Wide letter spacing */
            color: rgb(0, 35, 90);
            /* Approx. deep navy blue from image */
            text-transform: uppercase;
            margin: 0;
            padding: 0;
        }

        .services-page .service-text-box h4 {
            font-weight: 400;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .services-page .card {
            border: none;
            box-shadow: none;
        }
/* SERVICES PAGE END */
/* SERVICES DETAILS PAGE */
  .services-details .bg-about {
            background-color: #f8f8f8;
        }

        .services-details .image-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
        }

        .services-details .card {
            border: none;
            text-align: left;
            background-color: #fff;
            padding: 30px 20px;
			margin: 10px 30px !important;
            box-shadow: 4px 4px 4px 4px rgb(219, 219, 219) !important;
            flex: 0 1 auto;
            width: 100% !important;
            text-align: left;
            transition: transform 0.3s;
            border-radius: 10px !important;
            margin-top: 30px;
        }

        .services-details .card:hover {
            transform: translateY(-5px);
        }

        .services-details .card p {
            padding: 0;
            margin-top: 5px;
        }

        .services-details .b-head {
            padding-left: 300px;
            padding-right: 300px;
            box-sizing: border-box;
        }

        .services-details .b-head h3 {
            color: black;
            font-weight: 400;
            font-size: 36px;
        }

        .services-details .main-header {
            position: relative;
            display: flex;
            /* align-items: center; */
            justify-content: center;
            width: 100%;
            padding: 0 50px;
			object-fit:cover;
            height: 650px;
            overflow: hidden;
        }

        .services-details .header-image,
        .services-details .background-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            filter: brightness(50%);
        }

        .services-details .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
            width: 100%;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .services-details .text-content {
            text-align: left;
        }

        .services-details .form-container button {
            font-weight: 500;
        }

        .services-details .about-service img,
        .services-details .service-gallery img {
            width: 100%;
            border-radius: 20px;
        }
.services-details .service-faqs img {
			height:auto;
            width: 100%;
            border-radius: 20px;
        }
        .services-details .blog-detail-content h3 {
            font-size: 32px;
            font-weight: 400;
        }

        .services-details .blog-detail-content .container h5 {
            font-weight: 400;
        }

        .services-details .pricing-container {
            display: flex;
            gap: 0px;
            flex-wrap: wrap;
            margin: 0 auto;
        }

        .services-details .pricing-container h3 {
            font-size: 28px;
            font-weight: 400;
            color: #182955;
        }
.services-details .recommended p {
    color: white;
}


        .services-details .recommended {
            background-color: #002c6d;
            color: #fff;
            position: relative;
            padding-top: 30px;
            margin-top: -2px;
        }

        .services-details .recommended .tag {
    position: absolute;
    top: 10px;
    left: 20px;
    color: orange;
    font-size: 12px;
    padding-left: 18px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.8px;
    font-family: 'monserat';
}

        .services-details .recommended .tag::before {
            content: '';
            position: absolute;
            top: 55%;
            left: 0;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: orange;
            border-radius: 50%;
        }

        .services-details .price {
            font-size: 36px;
            font-weight: 400;
        }

        .services-details .desc {
            font-size: 14px;
            margin-bottom: 20px;
            color: inherit;
        }

        .services-details .btn {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    background-color: #002c6d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s;
}

        .services-details .recommended .btn {
            background-color: orange;
            color: #002c6d;
        }

        .services-details .btn:hover {
            background-color: #001e4d;
            border: 1px solid #FFA500;
            color: #fff;
        }

        .services-details .features {
            list-style: none;
            padding-left: 0;
            text-align: left;
            margin-top: 10px;
        }

        .services-details .features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .services-details .features li i {
            font-size: 15px;
            color: #2667ff;
            background-color: transparent;
            display: inline-block;
            width: auto;
            margin: 0 8px 0 0;
            padding: 0;
        }

        .services-details .pricing-boxes {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .services-details .service-gallery button {
            padding: 10px 60px;
            background-color: #FFA500;
            color: #001E4D;
            font-weight: 400;
        }

        .services-details .faq-section {
            font-family: Arial, sans-serif;
        }

        .services-details .faq-item {
            border-bottom: 1px solid #ccc;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .services-details .faq-question {
            background-color: #f7f7f7;
            padding: 15px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .services-details .faq-item.active .faq-question {
            background-color: #f6a623;
            color: white;
        }

        .services-details .faq-icon-container {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            border: 2px solid white;
            border-radius: 50%;
            margin-left: 10px;
            transition: transform 0.3s ease;
            background-color: transparent;
        }

        .services-details .faq-icon {
            color: black;
            transition: transform 0.3s ease;
        }

        .services-details .faq-item.active .faq-icon {
            transform: rotate(90deg);
        }

        .services-details .faq-answer {
            display: none;
            padding: 15px;
            background: #fff;
            color: #333;
        }

        .services-details .faq-item.active .faq-answer {
            display: block;
        }

        .services-details .service-faqs .faq-box p {
            font-size: 15px;
        }

        .services-details .service-faqs .faq-box h4 {
            font-weight: 400;
        }

        @media screen and (max-width: 991px) {
            .services-details .b-head {
                padding-left: 0.625rem !important;
                padding-right: 0.625rem !important;
            }

            .services-details .service-text h3 {
                font-size: 28px !important;
                padding-left: 0.625rem !important;
                padding-right: 0.625rem !important;
            }
        }

        @media (max-width: 768px) {

            .services-details .blog-detail-content p,
            .services-details .about-service p {
                text-align: justify;
                word-spacing: -2px;
            }

            .services-details .header-content {
                flex-direction: column;
                height: 100%;
                padding: 1.5rem;
                max-width: 100%;
                gap: 0px;
            }

            .services-details .main-header {
                padding: 0;
            }

            .services-details .card {
                width: 100% !important;
            }

            .services-details .header-content img {
                height: 500px;
            }

            .services-details .header-content h1 {
                font-size: 1.6rem;
            }

            .services-details .header-content p {
                font-size: 1rem;
                line-height: 20px;
            }

            .services-details .service-text-box h4 {
                font-size: 20px;
            }

            .services-details .service-text-box p {
                text-align: justify;
            }

            .services-details .text-content,
            .services-details .form-container {
                width: 100%;
                height: auto;
            }
        }

        .services-details .service-text h3 {
            font-size: 42px;
            padding-left: 250px;
            padding-right: 250px;
            font-weight: 400;
        }

        .services-details .card-text {
            margin-top: 20px !important;
        }

        .services-details .card-body h6 {
            font-family: "Optima", "Gill Sans", "Source Sans Pro", "Segoe UI", sans-serif;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: 0.1em;
            color: rgb(0, 35, 90);
            text-transform: uppercase;
            margin: 0;
            padding: 0;
        }

        .services-details .service-text-box h4 {
            font-weight: 400;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .services-details .services-page .card {
            border: none;
            box-shadow: none;
        }
/* SERVICES DETAILS PAGE END */

/*  BLOG PAGE */
       /* Custom styles for carousel */
.blog-page .main-slider .carousel-inner .carousel-item {
    height: 500px;
}

.blog-page .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    background-color: #000;
}

/* .carousel-caption {
    left: 5%;
} */

.blog-page .bg-about {
    background-color: #f8f8f8;
}

/* Parent container */
.blog-page .image-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Base styles for .image-inner */
.blog-page .image-inner {
    position: absolute;
    max-width: 70%;
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    opacity: 0.9;
    background-color: #25487f;
    color: white;
    box-sizing: border-box;
    text-align: left;
    bottom: 0;
    left: 0;
}

/* Text styles */
.blog-page .image-inner p {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: white;
    margin: 0;
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .blog-page .image-inner {
        max-width: 80%;
        padding: clamp(0.75rem, 1.8vw, 1rem);
        bottom: 0;
        left: 0;
    }
}

@media screen and (max-width: 768px) {
    .blog-page .image-inner {
        max-width: 90%;
        padding: clamp(0.5rem, 1.5vw, 0.75rem);
        bottom: 0;
        left: 0;
    }
}

@media screen and (max-width: 480px) {
    .blog-page .image-inner {
        max-width: 95%;
        padding: clamp(0.5rem, 1.5vw, 0.75rem);
        bottom: 0;
        left: 0;
    }

    .blog-page .image-inner p {
        font-size: clamp(0.625rem, 1.8vw, 0.75rem);
    }
}

.blog-page .card {
    border: none;
    text-align: left;
}

.blog-page .card p {
    padding: 6px;
    margin: 0;
}

.blog-page .blog button {
    padding: 3px 24px;
    background: #f5a623;
    color: #182955;
    font-weight: 500;
    margin-top: 8px;
}

.blog-page .blog button:hover {
    background: #e0951c;
    color: #182955;
}

.blog-page .blog-heading h1 {
    font-weight: 500;
    color: #182955;
}

.blog-page .text-justify {
    text-align: justify;
}

.blog-page .b-head {
    padding-left: 300px;
    padding-right: 300px;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .blog-page .b-head {
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
    }
}
/*  BLOG PAGE END */
/* CONTACT PAGE  */
  .contact-page .main-slider .carousel-inner .carousel-item {
    height: 500px;
}

.contact-page .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    background-color: #000;
}

.contact-page .bg-about {
    background-color: #f8f8f8;
}

.contact-page .contact h3 {
    font-size: 38px;
}

.contact-page .contact img {
    height: 220px;
}

.contact-page .contact-info h6 {
    font-size: 20px;
}

.contact-page .contact .contact-info span {
    background-color: white;
    border: 0.5px solid rgb(212, 212, 212);
    padding: 4px 10px;
    border-radius: 20px;
    color: #063276;
}

.contact-page .form-contact {
    background-color: #003087;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    color: white;
}

.contact-page .form-contact h2 {
    margin: 0 0 10px;
    font-size: 26px;
    text-align: center;
}

.contact-page .form-contact p {
    margin: 0 0 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.contact-page .form-group {
    margin-bottom: 15px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}


.contact-page .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-page .checkbox-group input {
    margin-right: 10px;
}

.contact-page .checkbox-group label {
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.contact-page .form-contact button {
    width: 100%;
    padding: 10px;
    background-color: #ffaa00;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-page button:hover {
    background-color: #e69900;
}

.contact-page .image-section img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    border-radius: 20px;
}


@media screen and (max-width: 768px) {
    .contact-page .contact h3 {
        font-size: 24px;
    }

    .contact-page .contact .contact-info span {
        border: none;
    }

    .contact-page .form-contact {
        margin-top: 20px;
    }
}
/* CONTACT PAGE END */

@media (min-width: 1400px) {
    .about h3 {
        font-size: 42px;
        font-weight: 400;
    }

    .about p {
        font-size: 18px;
        line-height: 34px;
    }

    .about button {
        padding: 6px 28px;
        background: #f5a623;
        color: #182955;
        font-size: 22px;
        font-weight: 500;
        margin-top: 5px;
    }

    .header{
        padding: 0px 45px !important;

    }
    .logo {
        display: flex;
        justify-content: center;
    }
    .logo img {
        height: 110px !important;
		object-fit:contain;
        max-width: 100%;
    }
    .home-page .choose-us .container{
        max-width: 100%;
    }
      .contact-buttons.desktop {
        display: flex;
        align-items: center;
        margin-right: 40px !important;
    }
	.services p{
	font-size: 20px;
	}
	 .home-page .choose-us h2 {
        font-size: 38px;
        line-height: 50px;
        font-weight: 400;
        padding-right: 20px;
    }

    .home-page .choose-us p {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .home-page .chooseEven i ,.home-page .chooseOdd i{
            padding: 12px;
            font-size: 22px;
    }
    .home-page .chooseEven h6 ,.home-page .chooseOdd h6{
            
            font-size: 22px;
    }

	.blogs img{
		    height: 240px;
	}

		.services-details .blog-detail-content p,.about-service p{
        font-size: 20px;
        line-height: 42px;
    }
    .services-details .blog-detail-content h3 {
        font-size: 45px;
    }
	.about-service h5 {
        font-size: 44px;
    }

	.contact-page .contact .contact-info {
        font-size: 20px !important;
    }

	.blog-page .text-justify{
	font-size: 22px !important;
	}
 .blog-page .heading-h h4{
            font-size: 28px !important;
            font-weight: 600;
            margin-bottom: 20px;
        }

.service-faqs p{
	font-size: 20px;
	}
	.faq-box {
	font-size: 20px;
	}

.blog-page .blog button {
	margin-top:20px;
	padding: 10px 28px;
}
	.blog-heading h3{
	font-size: 20px;
	}
	.b-head{
	font-size: 20px;
}
	
	.services-box .card-body p{
font-size: 18px;
}
	

	
	
    /* styles for large desktops, 4K monitors, or high-res screens */
}