/* Custom CSSS */

:root, [data-bs-theme=light] {
	--brand-darkBlue-Text:#0d2643;
	--brand-darkBlue-Bg:#0d2643;
	--brand-darkRed-Text:#d70724;
	--brand-darkRed-Bg:#d70724;
}

.brand-darkBlue-text{
	color:#0d2643;
}
.brand-darkBlue-bg{
	background-color:#0d2643;
	color:#FFF;
}
.brand-darkRed-text{
	color:#d70724;
}
.brand-darkRed-bg{
	background-color:#d70724;
}

.btnStyle-darkRed{
	padding:10px 40px;
	background-color: var(--brand-darkRed-Bg);
	border-radius:50px;
	color:#FFF;
}
.btnStyle-darkRed:hover{
	padding:10px 40px;
	background-color: var(--brand-darkRed-Bg);
	border-radius:50px;
	color:#FFF;
}
.btnStyle-darkBlue{
	padding:10px 40px;
	background-color: var(--brand-darkBlue-Bg);
	border-radius:50px;
	color:#FFF;
}
.btnStyle-darkBlue:hover{
	padding:10px 40px;
	background-color: var(--brand-darkBlue-Bg);
	border-radius:50px;
	color:#FFF;
}

.service-card:hover .btn {
    color: #FFF;
    background-color: var(--brand-darkBlue-Bg);
    border-color: var(--brand-darkBlue-Text);
}


/* Dark Red: #d70724, Dark Blue: #0d2643; */
/* Dark Red: #d70724, Dark Blue: #0d2643; */


 /* Start: preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Rotating spinner icon */
#spinner {
	width: 50px;
	height: 50px;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Animation for rotating the spinner */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Hide the preloader once the page is loaded */
#preloader.hidden {
	display: none;
}

#preloader .spinSection{
	position: absolute;
	margin-bottom: -210px;
}
 /* end: preloader */
 
 

/* Parallax effect */
.parallax {
	background-image: url('your-image-url.jpg'); /* Add your background image */
	min-height: 500px; 
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
/* Body padding to prevent content from being hidden under the navbar */
.bannerSection   {
	padding-top: 45px !important;
}

.bannerSection-ContentArea   {
	padding: 60px 0px;
}

 /* Section styling */
.section {
	padding:30px 0;
	scroll-margin-top: 30px;
	overflow: clip;
}

/* Fixed header */
.navbar {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0px;
}


/* General Navbar Styles */
.navbar .nav-link {
   font-size: 16px;
    color: #2c3e50;
    margin-right: 15px;
    position: relative;
    text-decoration: none;
   /* transition: color 0.2s ease-in-out;*/
}
.navbar .nav-link.active {
    color: #d70724 !important;
	font-size:16px;
}
.navbar .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d70724;
    visibility: hidden;
    /* transition: all 0.2s ease-in-out;*/
}

.navbar .nav-link:hover::before {
    visibility: hidden;
    width: 100%;
}



.navbar .nav-link.active::before {
    visibility: visible;
    width: 100%;
}

/* Animation for smooth transition of underline between active states */
.navbar-nav {
    display: flex;
    position: relative;
}

.navbar-nav::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d70724;
    transition: all 0.4s ease-in-out;
}

.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar .nav-item {
    position: relative;
}

        /* App-like buttons for mobile navigation */
        @media (max-width: 768px) {
            .navbar .nav-link {
                text-align: center;
                font-size: 14px;
                padding: 10px;
                color: #2c3e50;
            }

            .navbar .nav-link.active {
                color: #d70724;
            }
        }

       

        /* Heading style */
        .section-heading {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        /* Service cards */
        .service-card {
            transition: all 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }

        /* Mobile specific adjustments */
        @media (max-width: 768px) {
           /*  header, .parallax {
                min-height: 350px;
            } */

            .section {
                padding: 60px 20px;
				scroll-margin-top: 60px;
			overflow: clip;
            }

            .section-heading {
                font-size: 1.75rem;
            }

            /* Service card spacing */
            .service-card {
                margin-bottom: 20px;
            }
        }
		
		
		
		
		
/* CSS for Flexbox and Enhanced Rollover Animation */
    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        display: flex; 
        flex-direction: column; 
        overflow: hidden; /* Prevents content overflow during animations */
		background-color: #f8f9fa; 
		box-shadow:none !important;
    }

    .service-card:hover {
        transform: scale(1.05); /* Slightly scale and rotate */
		box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35) !important;
		background-color: #d70724;
    border: 1px solid #d70724;
    color: #FFF;
	}

    .card-body {
        flex-grow: 1; /* Allows the card body to take up remaining space */
        position: relative; /* Allows absolute positioning of inner elements */
    }

    .service-icon {
        display: flex;
        justify-content: center; /* Center the icon */
        margin-bottom: 1rem; /* Margin below the icon */
        transition: color 0.3s ease; /* Transition for icon color */
		 border-radius: 50%;
		width: 70px;
		height: 70px;
		margin: auto;
		border: 2px dotted color-mix(in srgb, var(--brand-darkBlue-Text), transparent 40%);
		border-color:var(--brand-darkBlue-text);
		padding: 16px;
    }

    .service-card:hover .service-icon {
        border-radius: 50%;
		width: 70px;
		height: 70px;
		margin: auto;
		border: 2px dotted color-mix(in srgb, var(--brand-darkRed-Text), transparent 40%);
		background-color:#FFF;
		color:var(--brand-darkBlue-text);
		padding: 16px;
    }

    .card-title, .card-text {
        transition: color 0.3s ease; /* Transition for text color */
    }

    .card-title{
        color: var(--brand-darkBlue-Text); 
    }
	
    .service-card:hover .card-title{
        color: #FFF !important; 
    }
	
	
	.whyChooseUs .accordion-button:focus{
		box-shadow:none;
	}
	.whyChooseUs .accordion-button:not(.collapsed){
		background-color:#0d2643;
		color:#FFF;
	}
	.whyChooseUs .accordion-button:not(.collapsed)::after{
		/* background-color:#0d2643; */
		color:#FFF;
	}
	
	
	
	
	
	
	
	
	
	
	#header {
    /* background: rgba(0, 0, 0, 0.1); */
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
}
.navbar {
    padding: 0;
	    height: 60px;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    /* align-items: center; */
    align-items: top;
}

.navbar>ul>li {
    top: 4px;
    position: relative;
    white-space: nowrap;
    padding: 16px 0px 25px 14px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    color: var(--brandTextColor);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-weight: 600;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--brandBgColor);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .dropdown ul a {
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #032e54;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
    margin-top: 1px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus {
    /* color: #fff; */
    color: var(--brandTextColor) !important;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  border-bottom: 1px solid #ddd;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background-color:var(--brandBgColor);
  color:#FFF;
}

#footer .footer-top .social-links a:hover {
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
	font-size: 8px;
	padding-right: 10px;
	line-height: 1;
	color: var(--brandTextColor);
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
}

#footer .credits a {
}



/* Custom dropdown styling */
.navbar-nav .dropdown-menu {
    background-color: #0d2643; /* Dark background for dropdown */
    border: none;
    box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-nav .dropdown-menu a {
    color: #fff; /* White text for links */
    padding: 10px 20px;
}

.navbar-nav .dropdown-menu a:hover {
    background-color: #d70724; /* Red background on hover */
    color: #fff;
}

/* -------- */

.offcanvas-header {
    background-color: var(--brand-darkBlue-Bg);
	color:#FFF;
}

.offcanvas-header .btn-close{
    background-color: #FFF;
    opacity: 1;
}
.navbar-toggler-icon{
	color: var(--brand-darkBlue-Bg);
}





/* ---- */

.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}
.contact .info-item i {
    font-size: 20px;
    color: var(--brand-darkBlue-Text);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--brand-darkBlue-Text), transparent 40%);
	margin-bottom:10px;
}

.contact .php-email-form {
    background-color: #FFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px 30px 0 30px;
}

.contact h3{
	color: var(--brand-darkBlue-Text);
}