:root {
    --primary-color: #27408B;
    --secondary-color: #f8f9fa;
    --royal-blue: #4169E1;
    --royal-blue-dark: #27408B;
    --accent-color: #FFD700;
}

/* Preload fonts */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/merriweather/v22/u-440qyriQwlOrhSvowK_l5-fCZM.woff2) format('woff2');
  }
  
  @font-face {
    font-family: 'Satisfy';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/satisfy/v11/rP2Hp2yn6lkG50LoCZOIHQ.woff2) format('woff2');
  }
  /* Set explicit dimensions for hero section */
  .hero-section {
      height: 100vh; /* or a fixed height, e.g., 600px */
      min-height: 400px; /* Ensure a minimum height */
  }
  
  /* Ensure images have explicit dimensions */
  img {
      max-width: 100%;
      height: auto;
  }
  
  /* Set explicit dimensions for logo */
  .navbar-brand img {
      width: 52px;
      height: 57px;
  }
  
  /* Reserve space for dynamic content */
  .hero-title {
      min-height: 1.2em;
  }
  .hero-subtitle {
      min-height: 2.4em;
  }
.navbar-brand .brand-text {
    display: inline-block;
    line-height: 1.2;
}
.larger-text {
    font-size: 1.5em;
}
.navbar-brand .larger {
    font-size: 1.9em; /* Adjust font size as needed */
    white-space: nowrap;
}

.navbar-brand .smaller {
    font-size: 1rem; /* Adjust font size as needed */
    white-space: nowrap;
}

@media (max-width: 576px) {
    .navbar-brand .larger, .navbar-brand .smaller {
        font-size: 1.1rem; /* Adjust size for mobile if needed */
    }
}
@media (max-width: 576px) {
.larger {
    font-size: 1.4rem !important;
}
}
body {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.hero-title,
.section-title,
.service-title,
.contact-title {
    font-family: 'Satisfy', cursive;
    font-weight: normal;
    color: #27408B;
}

/* Adjust specific heading styles */
.hero-title {
    font-size: 4.5rem;
}

.section-title {
    font-size: 3.5rem;
}

.service-title {
    font-size: 2rem;
}

/* Add some paint splash effect to headings */
h1, h2, h3, .hero-title, .section-title {
    position: relative;
    display: inline-block;
}

@keyframes moveSquiggly {
0% {
background-position: 0 0;
}
100% {
background-position: 100px 0;
}
}

h1::after, h2::after, h3::after, .hero-title::after, .section-title::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 10px;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="%234169E1" stroke-width="2"/></svg>') repeat-x;
background-size: 100px 10px;
animation: moveSquiggly 2s linear infinite;
}

/* Additional styles for better readability */
p {
    margin-bottom: 1.5em;
}

.navbar .nav-link {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 400;
}

.btn {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
}
.btn {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.btn:hover {
transform: translateY(-3px);
box-shadow: 0 7px 14px rgba(65, 105, 225, 0.3), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background: rgba(255, 255, 255, 0.5);
opacity: 0;
border-radius: 100%;
transform: scale(1, 1) translate(-50%);
transform-origin: 50% 50%;
}

.btn:hover::after {
animation: ripple 1s ease-out;
}

@keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 0.5;
}
100% {
transform: scale(40, 40);
opacity: 0;
}
}

.btn:hover .btn-text {
animation: colorChange 0.5s ease-in-out;
}

@keyframes colorChange {
0% {
opacity: 1;
}
50% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}

.btn:active {
transform: translateY(-1px);
box-shadow: 0 3px 8px rgba(65, 105, 225, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bg-primary {
    background: var(--primary-color) !important;
}

body {
   
    background-color: #f8f9fa;
    /* Remove overflow-x: hidden from here */
}

/* Add a wrapper to handle horizontal overflow */
.site-wrapper {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.top-bar {
    background-color: var(--royal-blue-dark);            
    color: white;
    padding: 5px 0;
    font-size: 0.9rem;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand img {
    height: 100px;
    width: 92px;
}

.nav-link {
    color: #333;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--royal-blue);
    border-color: var(--royal-blue-dark);
}

.hero-section {
    position: relative;
    height: 100vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-bottom: 11em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;

}


.service-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.service-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}
.service-subtitle::after {
    content: none !important; /* Disable the squiggly line */
    background: none !important; /* Ensure no background is applied */
    animation: none !important; /* Disable any animation */
    height: 0 !important; /* Remove the height if there’s a defined height */
}
h3::after {
    content: none !important; /* Disable the squiggly line */
    background: none !important; /* Ensure no background is applied */
    animation: none !important; /* Disable any animation */
    height: 0 !important; /* Remove the height if there’s a defined height */
}
.cu-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="%234169E1" stroke-width="2"/></svg>') repeat-x;
    background-size: 100px 10px;
    animation: moveSquiggly 2s linear infinite;
}

.service-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.feature i {
    font-size: 1.5rem;
    color: #23608a;
    margin-right: 0.5rem;
}

.cta-button {
    background-color: var(--royal-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.service-images {
position: relative;
height: 0;
padding-bottom: 75%; /* Maintains a 4:3 aspect ratio */
overflow: hidden;
}

.service-image {
position: absolute;
width: 60%;
height: auto;
border: 5px solid white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.service-image:nth-child(1) {
top: 0;
right: 0;
z-index: 2;
}

.service-image:nth-child(2) {
bottom: 0;
left: 0;
z-index: 1;
}

.service-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background-color: #23608a;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
}

.service-icon i {
font-size: 2.5rem;
color: white;
}

@media (max-width: 767px) {
.service-images {
padding-bottom: 150%; /* Increase height to accommodate both images */
margin-bottom: 2rem;
}

.service-image {
width: 90%; /* Increase width to make images more visible */
}

.service-image:nth-child(1) {
top: 0;
right: 5%; /* Slight offset from the right edge */
}

.service-image:nth-child(2) {
bottom: 0;
left: 5%; /* Slight offset from the left edge */
}

.service-icon {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px; /* Slightly smaller icon on mobile */
height: 60px;
}

.service-icon i {
font-size: 2rem; /* Slightly smaller icon size on mobile */
}

.cta-button {
margin-bottom: 2em;
}
.service-icon {
display: none !important;
}
}

/* Service cards */
.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
    z-index: -1;
}

.section-title {
    font-size: 2.5rem;
    color: var(--royal-blue-dark);
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.service-icon {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--royal-blue-dark);
}

.service-title {
    color: var(--royal-blue-dark);
    font-weight: bold;
    margin-top: 30px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Lead capture section */

/* .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413 7.07-7.07 7.07 7.07zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: rotate 240s linear infinite;
} 
.contact-section::before {
content: '';
position: absolute;
top: 70px; 
left: -50%;
width: 200%;
height: calc(100% - 70px);
background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413 7.07-7.07 7.07 7.07zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
background-color: var(--royal-blue);
animation: rotate 240s linear infinite;
} */
.contact-section {background: var(--royal-blue-dark);padding-top: 4em;}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 5em;
}

.contact-title {
    color: var(--royal-blue-dark);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.form-label {
    color: var(--royal-blue-dark);
    font-weight: 600;
}

.form-control,
.select2-container--default .select2-selection--multiple {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #4169E1;
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    outline: none;
}

.btn-submit {
    background-color: var(--royal-blue);
    border: none;
    color: var(--accent-color);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--royal-blue-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--accent-color);
    border: 1px solid var(--royal-blue);
    color: var(--royal-blue-dark);
    border-radius: 4px;
    padding: 2px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--royal-blue-dark);
    margin-right: 5px;
}

/* New and enhanced styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 2px rgb(60 97 208);
}



.hero-cta {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    background-color: var(--royal-blue);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-cta:hover {
    background-color: var(--royal-blue-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cu-contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cu-section-title {
    color: #27408B;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.cu-contact-info,
.cu-form-wrapper {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cu-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.cu-contact-item i {
    font-size: 1.5rem;
    color: #4169E1;
    margin-right: 15px;
    margin-top: 5px;
}

.cu-contact-item h3 {
    font-size: 1.2rem;
    color: #27408B;
    margin-bottom: 5px;
}

.cu-contact-item p {
    margin-bottom: 0;
    color: #666;
}

.cu-contact-image {
    margin-top: auto;
}

.cu-contact-image img {
    width: 100%;
    border-radius: 10px;
}

.cu-contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cu-contact-form .cu-form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.cu-contact-form .cu-form-control:focus {
    border-color: #4169E1;
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    outline: none;
}
.cu-contact-section .cu-form-wrapper h-100 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cu-contact-section .cu-contact-form {
    flex-grow: 1;
}

.cu-contact-section .cu-form-control {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.cu-contact-section #cuMessage {
    height: 150px; /* Adjust height to fit better */
}

.cu-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.cu-btn-primary {
    color: #fff;
    background-color: #4169E1;
    border-color: #4169E1;
}

.cu-btn-primary:hover {
    background-color: #27408B;
    border-color: #27408B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

.cu-btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.cu-payment-info {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cu-contact-info,
    .cu-form-wrapper {
        height: auto;
    }
}

/* Remove horizontal overflow on mobile */
.modal-open {
    overflow: hidden !important;
}

@media (min-width: 992px) {
.modal-dialog {
max-width: 50%;
margin: 1.75rem auto;
}
}

.modal-content {
width: 100%;
}

@media (max-width: 991px) {
.modal-dialog {
margin: 1rem;
max-width: calc(100% - 2rem);
}
}

.modal-content {
    width: 100%;
}
footer h5 {
color: white;
}



/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, #27408B, #4169E1);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #FFD700, #FFA500, #FF6347);
}

footer h4 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #FFD700;
}

footer p, footer ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer ul {
    list-style-type: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFD700;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #FFD700;
    color: #27408B;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Additional website enhancements */
body {
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
    position: relative;
}

.hero-content {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 30px;
    border-radius: 10px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4169E1;
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #4169E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.contact-form .form-control {
    border-radius: 5;
    border: none;
    border: 2px solid #e9ecef;
    padding: 15px 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #4169E1;
}

.btn-submit {
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(65, 105, 225, 0.3);
}
.text-yellow {color: var(--accent-color);margin: 3px;}
.text-yellow {
    position: relative;
    display: inline-flex; /* Allows for proper alignment */
    justify-content: center;
    align-items: center;
    padding: 8px; /* Adds some space around the icon */
    font-size: 16px; /* Keep the icon size small */
    text-align: center;
    border-radius: 50%;
    line-height: 1; /* Ensures vertical centering */
}
footer h4 {
    color: var(--accent-color);
    font-size: 1.3em;
}
.text-yellow::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 48px;  /* Minimum tap target width */
    height: 48px; /* Minimum tap target height */
    background: transparent; /* No visual change */
    border-radius: 50%;
}

.text-yellow:hover {
    background-color: #FFD700; /* Add hover effect for visual feedback */
}


/* Custom CSS to trigger mobile view at 1399px */
@media (max-width: 1399px) {
.custom-show-mobile {
display: flex !important;

}
.navbar-brand img {
    height: 57px;
    width: 52px;
}
.custom-hide-desktop {
display: none !important;
}
}



/* CSS to enable dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
display: block;
margin-top: 0; /* Optional: Adjust if there's a gap */
}

/* Optional: Add a transition for smooth appearance */
.dropdown-menu {
transition: opacity 0.3s ease;
opacity: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
opacity: 1;
}

/* Adjust caret icon rotation on hover */
.nav-item.dropdown:hover .dropdown-toggle .fa-caret-down {
transform: rotate(180deg);
transition: transform 0.3s ease;
}
.dropdown-toggle::after {
display: none;
}
.logo-animate img {
width: 100px; /* Adjust the size as needed */
animation: wiggle-scale 2s infinite;
}
.logo-img {
    max-width: 52px;
    max-height: 57px;
    object-fit: contain;
}


@keyframes wiggle-scale {
0%, 100% {
transform: scale(1) rotate(0deg);
}
25% {
transform: scale(1.1) rotate(5deg);
}
50% {
transform: scale(0.9) rotate(-5deg);
}
75% {
transform: scale(1.05) rotate(3deg);
}
}
.icon-pulse {
animation: pulse 1.5s infinite;
}
.btn-pulse {
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 rgba(0, 123, 255, 0.7);
}
50% {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 rgba(0, 123, 255, 0.7);
}
}
.heading-pulse {
display: inline-block;
animation: heading-pulse 1.5s infinite;
}

@keyframes heading-pulse {
0% {
transform: scale(1);
text-shadow: 0 0 0 rgba(0, 123, 255, 0.7);
}
50% {
transform: scale(1.05);
text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}
100% {
transform: scale(1);
text-shadow: 0 0 0 rgba(0, 123, 255, 0.7);
}
}

/* Hero SVG */

.hero-section {
position: relative;
height: 100vh;
overflow: hidden;
}

.hero-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
color: white;
padding: 2rem;
}

.hero-title {
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 1rem;
}



.hero-cta {
display: inline-block;
padding: 10px 20px;
background-color: var(--royal-blue);
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-size: 1.2rem;
}

.hero-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
z-index: 2;
}

.hero-divider svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 200px;
}

.hero-divider path {
fill: var(--royal-blue-dark); /* Match the lead capture section background */
}

.bg-light {
background: #4169e126 !important;
}
.bg-dark-blue {
    background:  var(--royal-blue-dark);
}
.bg-light-gray {
background: #f8f9fa !important;
}


/* Highlighted Service sections */

.highlights-section {
    padding: 80px 0;
}

.highlight-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background-color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-icon i {
    font-size: 30px;
    color: #ffffff;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: var(--royal-blue-dark);
    margin-bottom: 20px;
    text-align: center;
}

.highlight-card ul {
    list-style-type: none;
    padding-left: 0;
}

.highlight-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.highlight-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--royal-blue);
}

.hero-title, .hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.zoom-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Default shadow */
}

.zoom-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.4); /* More prominent shadow on hover */
}

.custom-container {
    max-width: 1500px;
}

.accordion-header h2::after,
.accordion-header h3::after,
.accordion-header h4::after {
    content: none !important;
    background: none !important;
    animation: none !important;
    height: 0 !important; /* Remove the height if there’s a defined height */
}

/* Ensuring no squiggly line effect on accordion headers */
.accordion-button {
    font-size: 2rem !important;
}

.text-decoration-none {
    text-decoration: none;
}

/* GALLERY */

.gallery-section {
    padding: 60px 0;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    aspect-ratio: 2 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-title {
    color: #fff;
    text-align: center;
    padding: 10px;
}
.before-after-container {
position: relative;
width: 90%; 
margin: 0 auto; 
overflow: hidden;
padding-top: 120%; 
}


.before-after-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.slider-handle {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 40px; 
background: transparent;
cursor: ew-resize;
transform: translateX(-50%);
}

.slider-handle::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 0 3px rgba(0,0,0,0.5);
}

.after-container {
position: absolute;
top: 0;
right: 0; /* Change this from left to right */
width: 50%;
height: 100%;
overflow: hidden;
}

.slider-handle::after {
content: '↔';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #000;
font-size: 20px;
}

.page-title-section {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 60px 0;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    color: #27408B;
    position: relative;
}


.page-title, .lead {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);

}
.lead {
    font-size: 1.25rem;
    color: var(--royal-blue-dark);
}

.gallery-categories {
    margin-top: 2rem;
}

.gallery-categories .btn {
    transition: all 0.3s ease;
}

.gallery-categories .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Reduce opacity to make content more visible */
    z-index: -1; /* Keep this negative to stay behind content */
}
.gallery-content {
    position: relative;
    z-index: 2;
}