:root {
    --primary: #071013;
    --accent: #015b90;
    --secondary: #F5F6F5;
    --text: #1F2A44;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --shadow: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --spacing-unit: 8px;
    --text: #1F2A44;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

#inner-process.fixed {
    z-index: 1000;
}

.clearfix {
  overflow: auto;
}

.visible-xs{
    display: none!important;
}

.hidden-xs{
    display: block!important;
}
.text-justify{
    text-align: justify;
}

/*breadcrumbs css*/
.breadcrumbs1 {position: absolute;top: 57%; left: 50%; transform: translate(-50%, -50%);padding: 7px 11px 0px 11px;background: rgba(0, 0, 0, 0.3);}

.breadcrumbs2 {position: absolute;top: 58%;left: 50%;transform: translate(-50%, -50%);padding: 7px 11px 0px 11px;background: rgba(0, 0, 0, 0.3);}
/*end breadcrumbs css*/

/* Common CSS */
.theme-color{
    color: #015b90;
}

.title {
    font-size: 40px;
    line-height: 1.2;
    color: #555;
}

.title_title {
    font-size: 32px;
    color: #555;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sub_title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #555;
}

h1,h2,h3 {
 color: #555;
}

p{
 color: #555;
}

.h-100 {
    height: 90% !important;
}

.bg-warning{
    background: #ffc107!important;
}
/* Utility Classes */
.modern-card {
    border-radius: 16px;
    background: #fff;
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.8;
}



.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text);
    line-height: 1.8;
    opacity: 0.9;
}

.text-accent {
    color: var(--accent);
}

.section-padding {
   padding: 50px 0;
}



/* Header */
.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}



.header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header-nav-logo img {
    height: 100px;
    width: 100%;
    transition: all 0.3s ease;
}

.header-nav-right ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.button-cta {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}



.button-cta:hover {
    transform: translateY(-2px);
    border-radius: 25px;
}

.button-light,
.button-dark,
.button-service {
    position: relative;
}

.button-light {
    background: linear-gradient(135deg, rgb(1 91 144), rgb(243 234 19));
    color: #ffffff;
    backdrop-filter: blur(5rem);
}

.button-light:hover {
    background-color: #e9ecef;
    color: #fff;
}

.button-dark {
    background: #015b90;
    color: #fff;
    backdrop-filter: blur(5rem);
}

.button-dark:hover {
    background-color: #015b90;
    color: #fff;
}

.button-service {
    color: aliceblue;
    background: none;
    border: none;
    padding: 0;

}

.text-wrapper i {
    border: none;
    font-size: 40px;
}

/* Dynamic Gradient Backgrounds */
.button-cta.banner-bg {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.7), rgba(44, 62, 80, 0.9));
}

.button-cta.service-bg {
    background: linear-gradient(135deg, rgba(233, 236, 239, 0.7), rgba(255, 255, 255, 0.9));
}

.button-cta.info-bg {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7), rgba(233, 236, 239, 0.9));
}

.button-cta.gallery-bg {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.7), rgba(44, 62, 80, 0.9));
}

/* Offcanvas General */
.offcanvas {
    min-width: 400px; 
    background-color: #f8f9fa;
}

.offcanvas-header {
    background: #015b90; 
    color: #fff;
    padding: 1rem 1.5rem;
}

.offcanvas-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.offcanvas-body {
    padding: 15px;
    color: #333;
    overflow-y: scroll; 
}

.offcanvas-body h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50; 
}

.offcanvas-body p,
.offcanvas-body span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555; 
}

.offcanvas-body a {
    color: #007bff; 
    text-decoration: none;
    transition: color 0.2s ease;
}
.offcanvas-body a:hover {
    color: #0056b3; 
    text-decoration: none;
    font-size: 15px;
}



.contact-info li {
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #2c3e50;
    font-size: 1.1rem;
}

.social-icons i {
    font-size: 1.5rem;
    color: #2c3e50;
    transition: color 0.2s ease;
}

.social-icons a:hover i {
    color: #007bff; 
}

/*end header css*/


/* Banner Slider */
.banner-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    height: 100%;
}

.banner-image {
    background-size: cover;
    background-position: center;
    height: 100vh;

}

/*.banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}*/

.banner-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 600px;
}

.banner-caption h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
}




/* Service Section */
.service-nav {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 10px;
}

.service-nav-list {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 9px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    width: 85%;
}

.service-nav-list li {
    cursor: pointer;
}

.w-100 {
    width: 100%;
}

.nav-item.service-nav {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    padding-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav .nav-item.is-active {
    background-color: #34495e; 
    color: #fff; 
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.service-nav:hover {
    color: #ddd;
}

.service-container {
    width: 100%;
    height: 100vh; 
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.service-caption-title {
    font-size: 22px;
}

.service-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: white;
    max-width: 40%;
}

.right-overlay {
    position: absolute;
    right: 3%;
    top: 18%;
    bottom: 5%;
    width: 37%;
}

.inner_content {
    margin-top: 40px;
    padding: 20px;
}

.inner_content p{
    margin-bottom: 10px;
}


/* Information Section */
.information-hero {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.info_left img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.info_right {
    padding: 20px;
    flex-direction: column;
    justify-content: center;
}

.info_description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 700px;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.rhombus-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr); 
    padding-bottom: 160px;
}

.gallery-item {
    grid-column: span 2;
    margin-bottom: -50%;
    clip-path: polygon(50% 2%, 98% 50%, 50% 98%, 3% 50%);
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    z-index: 3;
}

.rhombus-gallery .gallery-item:nth-child(6n+1) {
    grid-column: 2 / span 2;
}


.p-200{padding: 0px 100px;}


/*pricess hero css*/


/*.process-hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
   
}
*/
.process-heading{
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.process-sub-heading{
    padding: 12px 0 8px;
}
.text-size-medium {
    font-size: 18px;
}


.process-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    padding: 10px;
    box-sizing: border-box;

}

.margin-xxsmall {
    margin: .5rem;
}
.counter-number {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

/*end pricess hero css*/

/*review css*/
.testimonials-section {
    padding: 20px 0;
    position: relative;
}


.testimonial-title {
    background-color: #015b90;
    border-radius: 4px;
    padding: 20px 50px;
    color: white;
    display: inline-block;
    max-width: 350px;
    margin: 0 auto; 
    box-sizing: border-box;
}


.medal-card {
    position: relative;
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    box-shadow: 0 6px 12px #ffffff, inset 0 0 8px #2c3e503d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: sway 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.medal-card:hover {
    background: #e9ecef00;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgb(253 254 255 / 25%), inset 0 0 12px #2c3e50;
    animation-play-state: paused;
}

.medal-ribbon {
    position: absolute;
    top: -25px;
    left: 50%;
    width: 40px;
    height: 50px;
    background: #015b90;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    transform: translateX(-50%);
    z-index: 1;
    font-weight: bold;
}

.review-number{
    margin-left: 8px;
    font-size: 23px;
}


.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 0; 
    object-fit: cover;
}

.testimonial-header h3 {
    font-weight: 600;
    margin: 0;
}

.testimonial-position {
    font-style: italic;
    margin: 0;
}

.testimonial-description {
    line-height: 1.4;

    margin: 0 0 10px;
}

.rating {
    color: #555
    text-align: center;
}

.rating i {
    color: #555;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
}


@keyframes sway {
    0%, 100% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
}

/*end review css*/

/*footer css*/
.footer-hero{
    background: #34495e
}
.p-40{
    padding: 40px;
}
.foot-border{
    padding: 12px 0;
    border-bottom: 1px solid #7e7e7e;
}
.newsletter-section{
    margin-top: 20px;
}
/*end footer css*/



/*scrollbar css*/
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    color: #ffc107;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}
.show {
    display: block !important;
}
.scroll-top-inner i{
    font-size: 40px;
}
/*end secollbar css*/




/* Why Choose Us Section */
.why-choose-section {
    background: var(--light-gray);
}

.benefit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 196, 180, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--accent);
    color: white;
    transform: rotate(10deg);
}

.benefit-card p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px 12px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.9;
}



/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-item.active .faq-question {
    background: var(--accent);
    color: var(--white);
}

.faq-toggle {
    margin-left: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: var(--light-gray);
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.9;
}

/*cobtract us page css*/

.contact-page-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    border-radius: 50px 50px 50px 0;
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.contact-page-info::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -8px;
    background: var(--accent);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    height: 20px;
    z-index: -1;
}

.contact-info-icon{
    font-size: 35px;
    color: var(--white);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    background: var(--accent);
}


.contact-info-icon::before {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
    border: 3px solid var(--accent);
    border-radius: 40px;
}


.contact-info-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}


.contact-info-content p {
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
}


.contact-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.contact-img {
    position: relative;
    padding-left: 20px;
}

.contact-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: var(--accent);
    border-radius: 20px 0 0 20px;
    clip-path: polygon(100% 0, 20% 50%, 100% 100%, 0 100%, 0 0);
    z-index: -1;

}

.contact-img img {
    width: 100%;
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0);
}

.align-self-center {
    align-self: center !important;
}
.contact-form {
    padding: 25px;
}
.contact-form-header {
    margin-bottom: 30px;
}


.contact-form-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}
.contact-map {
    margin-bottom: -9px;
}


/* Process Section */
.inner-process-section {
    padding: 50px 0;
    cursor: pointer;
}
.process-list{
   background: rgba(0, 0, 0, 0.6);
   padding:15px;
}

.process-list li {
    transition: all 0.3s ease;
    padding: 1px 10px;
    width: 100%;
}

.process-list li:hover {
    transform: translateX(10px);
}

.innenr-process-number{
   width: 50px; height: 50px; line-height: 50px; text-align: center; font-size: 25px;background: #015b90;
}

.innenr-process-number1{
    width: 50px; height: 50px; line-height: 50px; text-align: center; font-size: 25px;background: #015b90;display: inline-block;
}
.activeItem{
    margin-bottom: 16px;
}
.active_process{
    color:#fff;
}
.activeItem .active .innenr-process-number{
   background: #ffc107;
}

.activeItem .active .active_process{
   color: #ffc107;
}

.autoHeight {
    padding: 15px;
    min-height: 436px;
    background: rgba(0, 0, 0, 0.6);
}
.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
/* Service Section */
.about-services-section {
    padding: calc(var(--spacing-unit) * 6) 0;
    background: var(--white);
    position: relative;
}
.service-card-about {
    position: relative;
    background: var(--white);
    border: 2px solid var(--accent);
    padding: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
}

.service-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(1, 91, 144, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card-about:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: calc(var(--spacing-unit) * 2);
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-about:hover .service-icon {
    transform: scale(1.2);
}
.service-card-about h3 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}
.service-card-about p {
    color: var(--text);
    font-size: 1rem;
}

/*gallery page csss*/
.inner-gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.inner-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inner-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.inner-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.inner-gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.inner-gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.zoom-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.inner-gallery-item:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.baguetteBox-figure figcaption {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}


/*about us process css*/
.about-process-section {
    padding: calc(var(--spacing-unit) * 6) 0;
    background: #34495e;
    position: relative;
}

.process-roadmap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    border: 1px solid #ffc107;
    position: relative;
    flex: 0 0 18%;
    text-align: center;
    padding: calc(var(--spacing-unit) * 2);
    z-index: 1;
}



.process-step:first-child::before {
    width: 50vw;
    left: 50%;
}

.process-step:last-child::before {
    width: 50vw;
    left: -50%;
}

.process-marker {
    width: 110px;
    height: 110px;
    background: #ffffff;
    color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto calc(var(--spacing-unit) * 2);
    box-shadow: 0 0 10px var(--shadow);
    transition: var(--transition);
}

.process-step:hover .process-marker {
    background: var(--text);
    transform: scale(1.1);
}

.process-step h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 1);
}


.process-icon {
    font-size: 3rem;
}


.booking-info {
    background: #fff;
    border: 2px solid #f3ea13;
    box-shadow: rgb(255, 255, 255) 0px 6px 12px, rgba(44, 62, 80, 0.24) 0px 0px 8px inset;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    padding: 10px;
}
.booking-divider {
    width: 25%;
    height: 2px;
    background: #015b90;
    margin: 1rem auto;
}

/*booking form css*/


.form-check-input {
    margin-top: -1px;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    cursor: pointer;
}

.form-check-input:checked {
  background-color: #015b90;
  border-color: #015b90;
}

.form-check-label {
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}

.form-check-inline {
  margin-right: 20px;
}

fieldset {
  border: none;
  padding: 10px 0;
}

legend {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}


 .form-control, .form-select {
    height: 3.125rem;
    border-radius: 0.625rem;
    border: 1px solid #1f2521;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ede4d8!important;
    color: #1f2521;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0.625rem rgba(255, 215, 0, 0.5);
    border-color: #1f2521;
}





 /* Section Styling */
    .service-process-section1 {
      background: var(--light-gray);
      padding: 3rem 0;
      position: relative;
    }

    /* Section Header */
    .section-title {
      font-size: clamp(2rem, 5vw, 2.5rem);
      font-weight: 700;
      color: #212529;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Step Card */
    .service-step1 {
      border: none;
      border-left: 4px solid rgb(1, 91, 144);
      border-radius: 0.5rem;
      background: linear-gradient(45deg, transparent 50%, rgba(1, 91, 144, 0.2) 100%);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      padding: 2rem;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-step1:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    /* Step Number */
    .step-number {
      position: absolute;
      top: -20px;
      left: -20px;
      background: rgb(1, 91, 144);
      color: #ffffff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 600;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Step Title and Content */
    .step-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #212529;
      margin-bottom: 0.75rem;
    }

    .step-content {
      font-size: 0.95rem;
      color: #6c757d;
      line-height: 1.6;
    }

    /* Connector Line (Desktop) */
    @media (min-width: 992px) {
      .service-step1:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -25px;
        width: 25px;
        height: 2px;
        background: rgb(1, 91, 144);
        z-index: -1;
      }
    }

    /* Animation */
    .service-step1 {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .service-step1:nth-child(1) { animation-delay: 0.1s; }
    .service-step1:nth-child(2) { animation-delay: 0.2s; }
    .service-step1:nth-child(3) { animation-delay: 0.3s; }
    .service-step1:nth-child(4) { animation-delay: 0.4s; }
    .service-step1:nth-child(5) { animation-delay: 0.5s; }
    .service-step1:nth-child(6) { animation-delay: 0.6s; }