/* @import url('ttps://fonts.googleapis.com/css2?family=Josefin+Sans:400,500,600,700&display=swap'); */

* {
    margin: 0px;
    box-sizing: border-box;

    padding: 0px;
}

body {
    overflow-x: hidden;
    font-family: 'Josefin Sans', sans-serif !important;
}

.section-padding {
    padding: 50px 0px;
}

p {
    margin: 0px;
}

a {
    text-decoration: none !important;
}

li {
    list-style: none;
}

.grey-text {
    color: #747474;
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.black-text {
    color: #202020;
}

.bg-black {
    background: #161E2E;
}

.white-text {
    color: #ffffff;
}

.bg-grey {
    background: #f5f5f5;
}


@media (max-width:768px) {
    .section-padding {
        padding: 30px 0px;
    }
    .hero-section {
        margin-top: 30px;
    }
}

/* header-csss========== */
/* body {

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    overflow-x: hidden;
} */

/* Header Section */
.header {
    background-color: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo/Company Name Section */
.header-logo-section {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}



.header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-left: 0.5rem;
}

.header-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

/* Menu Toggle Section */
.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
}

.menu-toggle:hover {
    background-color: #f3f4f6;
}

.menu-text {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 9999px;
    /* Rounded ends for the bars */
    transition: all 0.3s ease-out;
}

/* Animation for close icon */
.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay for when menu is open */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 16rem;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;

    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.side-menu.active {
    transform: translateX(0);
}

/* Close button inside side menu */
.side-menu-close-button-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.close-menu-button {
    color: #6b7280;
    font-size: 1.875rem;
    font-weight: 700;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease-in-out;
}

.close-menu-button:hover {
    color: #374151;
    background-color: #f3f4f6;
}

.close-menu-button:focus {
    outline: none;
}

/* Side Menu Items */
.side-menu a {
    display: block;
    color: #374151;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.side-menu a:hover {
    color: #2563eb;
    background-color: #eff6ff;
}




/* hero-section---css--- */
.hero-section-text p {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;

}

.header-sub-title p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-btn button {
    border: none;
    background-color: #fff;
    font-size: 18px;
    border: 1px solid #000080;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
}



/* about-us-css----------------------- */
.about-title h2 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-sub-title p {
    font-size: 16px;
    font-weight: 500;
    width: 50%;
    margin: auto;
}

@media (max-width: 768px) {
    .about-title h2 {
        font-size: 30px;
    }

    .about-sub-title p {
        width: 90%;
    }
}




/* about-us-css------------- */
.about-box {
    width: 70%;
    margin: auto;
    border-radius: 20px;
    padding: 50px;
}

.about-box p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.vision-text {
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 500;
}

.vision-sub-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 400px;
    margin: auto;
}

.vision-mision {
    border-radius: 40px;
    padding: 5rem;
}

.vision-border {
    border-right: 2px solid #9c9c9c;
}

@media (max-width: 768px) {
    .about-box {
        width: 100%;
        margin: auto;
        border-radius: 20px;
        padding: 20px;
    }

    .about-box p {
        font-size: 16px;
        margin-top: 10px;
    }

    .about-details {
        justify-content: space-around !important;
    }

    .vision-sub-title {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        width: 100%;
        margin: auto;
    }

    .vision-border {
        border-right: none;
    }

    .vision-mision {
        border-radius: 40px;
        padding: 2rem;
    }

    .row-gap {
        row-gap: 30px;
    }
}



/* working-section-csss----------- */
.working-title h2 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.working-title p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}



.process-container {
    position: relative;
    padding: 1rem 0 3rem;
}

.process-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2d3748;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.process-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #1C283E;
    border-radius: 2px;
}

.step {
    padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    margin: 0.75rem 0;
    border-left: 4px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #1C283E;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    background-color: #f0f7ff;
    transform: translateX(8px);
}

.step.active {
    border-left-color: #3182ce;
    background-color: #ebf5ff;
    color: #2c5282;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.1);
}

.step.active::before {
    transform: scaleY(1);
}

.step-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a0aec0;
    margin-right: 1.5rem;
    min-width: 30px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    color: #3182ce;
    font-size: 1.2rem;
}

.step-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-content {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
    height: 100%;
    padding: 2rem;
    border-radius: 12px;
    background: #1C283E;
    box-shadow: 0 10px 25px -5px rgba(49, 130, 206, 0.3);
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-content img:hover {
    transform: translateY(-5px);
}

.step-content h3 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #90cdf4;
    border-radius: 3px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ebf8ff;
    margin-top: 1.5rem;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(15px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .process-container {
        padding: 0 0 2rem;
    }
    
    .step {
        padding: 1rem 1.25rem 1rem 2rem;
        margin: 0.5rem 0;
    }
    
    .step-content {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

/* Process Steps - Mobile View */
.process-mobile {
    margin-top: 30px;
}

.process-step {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.step-header.active {
    background-color: #3E7DFC;
    color: white;
}

.step-header.active .step-number {
    color: white;
    border-color: white;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #3E7DFC;
    color: #3E7DFC;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content {
    padding: 20px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.step-description {
    color: #555;
    line-height: 1.6;
}

/* Active step styling */
.process-step.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-step.active .step-content {
    display: block;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop styles - hide mobile view */
@media (min-width: 992px) {
    .process-mobile {
        display: none;
    }
}

/* Mobile styles - hide desktop view */
@media (max-width: 991.98px) {
    .process-desktop {
        display: none;
    }
}

/* Ensure proper spacing on mobile */
@media (max-width: 767.98px) {
    .process-step {
        margin-bottom: 15px;
    }
    
    .step-header {
        padding: 12px 15px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 10px;
        display: block;
    }
}

/* services-css-------- */
.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: fit-content;
    margin: auto;
}

.search-input {
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    outline: none;
    width: 300px;

}

.search-button {
    background-color: #0f1a2c;
    padding: 18px 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.search-button i {
    color: white;
    font-size: 18px;
}

.service-title h2 {
    font-size: 70px;
}

.position-vector {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    /* Optional: Send it behind text */
}

.position-vector img {
    width: 700px;
    height: auto;
}

.services-border {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.service-details p {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
}

.service-item-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.service-item {
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
}

.service-item:hover {
    background-color: #f5f7ff;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item p {
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: #2563eb !important;
}

.arrow-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.service-item:hover .arrow-icon {
    transform: translateX(5px);
    opacity: 1;
}

@media (max-width:768px) {
    .service-title h2 {
        font-size: 35px;
    }

    .arrow-top {
        margin-top: 60px !important;
    }

    .services-border {
        padding-bottom: 10px;
    }
}



/* success-section---------- */

.success-section {
    background: #F2F8FC;
}

.success-title h2 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.success-title p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}

.logo-box {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #999;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.logo-box img {
    max-width: 100px;
    height: auto;
}

.logo-box:hover {
    transform: scale(1.05);
    border-color: #000;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .success-title h2 {
        font-size: 30px;
    }
}




.our-strength {
    text-align: center;
    /* padding: 60px 20px; */
    /* background: linear-gradient(to right, #0d1117, #0d1117); */
    position: relative;
    background-color: #1C283E;
}

.our-strength h1 {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 0;
}

.our-strength .subtitle {
    font-size: 16px;
    margin-top: -40px;
    margin-bottom: 40px;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.card {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 40px 30px;
    width: 300px;
    border-radius: 8px;
}

.card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 32px;
    margin: 0;
    font-weight: bold;
    color: #ffffff;
}

.card p {
    margin-top: 8px;
    font-size: 16px;
    color: #c0c0c0;
}



.industry-card {
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}




.testimonials {
    background-color: #F5F5F5;
}

.testimonial-container {
    /* background-color: #f9f9f9; */
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
    margin: auto;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #d6d6d6;
    margin: 0 auto 20px;
}

.name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.text {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 20px;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.right {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}





.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cards {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    background-color: #fff;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cards:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 20px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
    color: white;
    /* box-sizing: border-box; */
}

.card-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.card-date {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.8;
}






/* Section scroll/fade-in animation */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section opening animation (on page load) */
.section-opening {
    opacity: 0;
    transform: translateY(40px);
    animation: sectionFadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* laudary-care-section----------- */
.launndry-care-section {
    margin: 180px 0px;
}

.get-in-touch-btn button {
    border: none;
    background-color: #1C283E;
    padding: 10px 80px;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
}

.laundry-title p {
    color: #212121;
    font-size: 40px;
}

.circle-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle-img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 400px;
    margin: auto;
    /* prevents overflow on small screens */
}

@media (max-width:768px) {
    .launndry-care-section {
        margin: 70px 0px;
    }

    .get-in-touch-btn button {
        border: none;
        background-color: #1C283E;
        padding: 10px 80px;
        color: #fff;
        border-radius: 10px;
        font-size: 18px;
    }

    .laundry-title p {
        color: #212121;
        font-size: 30px;
    }

    .circle-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .circle-img img {
        display: block;
        width: auto;
        height: auto;
        max-width: 300px;
        margin: auto;
        /* prevents overflow on small screens */
    }

    .btn-responsive {
        margin-top: auto;
        margin-left: auto; /* Added left margin for mobile */
    }
    
    .laundry-title {
        margin-left: 0 !important;
        text-align: center;
    }

    .get-in-touch-btn {
        margin-left: 12px;
    }

}



/* footer.css */
.footer {
    background-color: #22262F;
    color: #ffffff;
    padding: 60px 20px;
}

.footer-border {
    border: 1px solid #ffffff;
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    border-bottom: 1px solid #ffffff;
}

/* Footer responsive styles */
@media (max-width: 992px) {
    .footer {
        padding: 40px 15px;
    }
    
    .footer-column.newsletter {
        grid-column: 1 / -1;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 20px;
        padding-top: 30px !important;
    }
    
    .footer-column.logo-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-column {
        padding: 20px 15px !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .footer-column.newsletter,
    .footer-column.logo-col {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom div {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-column {
        padding: 15px 10px !important;
        text-align: center;
    }
    
    .footer-column.newsletter form {
        max-width: 100%;
    }
    
    .footer-links div {
        padding: 12px 0;
    }
}

/* Newsletter Form Styles */
.footer .footer-column.newsletter form {
    display: flex !important;
    margin: 20px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.footer .footer-column.newsletter form input[type="email"] {
    flex: 1 !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    border: 1px solid #3E7DFC !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 4px 0 0 4px !important;
    min-height: 55px !important;
    height: 55px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.footer .footer-column.newsletter form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

.footer .footer-column.newsletter form button[type="submit"] {
    background-color: #3E7DFC !important;
    color: white !important;
    border: none !important;
    padding: 0 25px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    border-radius: 0 4px 4px 0 !important;
    transition: background-color 0.3s ease !important;
    min-height: 55px !important;
    height: 55px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
}

.footer .footer-column.newsletter form button[type="submit"]:hover {
    background-color: #2a65d4 !important;
}

/* Original footer styles */
.footer-column h4 {
    font-size: 18px;
    color: #3E7DFC;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #0af;
}

.footer-column.newsletter p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-column.newsletter form {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-column.newsletter input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #22262F;
    border: 1px solid #ffffff;
    opacity: 40%;
}

input::placeholder {
    font-size: 20px;
}

.footer-column.newsletter button {
    background-color: #0af;
    color: #000;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.footer-column.logo-col {
    display: flex;
    /* align-items: center; */
    /* width: 100px; */
    justify-content: end;
}


.footer-column.logo-col img {
    max-width: 60px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: 20px; */
    /* padding-top: 20px; */
    /* border-top: 1px solid #333; */
}

.footer-links div {
    /* margin: 10px 0; */
    width: 25%;
    border: 1px solid #ffffff;
    border-top: none;
    padding: 15px 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #0af;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: 20px; */
    padding: 30px 30px;
    font-size: 16px;
    color: #fff;
    opacity: 40%;
}

.footer-bottom a {
    color: #fff;
    opacity: 40%;
    font-size: 16px;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links div {
        margin: 5px 0;
    }
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* Adjust this percentage based on your preferred aspect ratio */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.hero-slide.next {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.slider-dots {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: #333;
    transform: scale(1.2);
}

/* Ensure the slider is responsive */
@media (max-width: 768px) {
    .hero-slider-container {
        width: 95%;
    }
    
    .hero-slider {
        padding-bottom: 60%; /* Taller aspect ratio for mobile */
    }
}


/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    position: relative;
    background-color: #F5F5F5;
    text-align: center;
    overflow: hidden;
}

.testimonial-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-bg-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 100px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 2;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    padding: 0 15px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0.4; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.testimonial-avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    transition: all 0.3s ease;
}

.testimonial-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f51b5 60%, #2196f3 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.testimonial-avatar-initials:hover {
    transform: scale(1.05);
}

.testimonial-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #3f51b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 15px 0 5px;
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-role {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-text {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0 auto 20px;
    max-width: 700px;
    position: relative;
    font-style: italic;
    padding: 0 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 18px;
    margin: 20px 0 5px;
    letter-spacing: 2px;
    line-height: 1;
}

.rating-stars i {
    margin: 0 1px;
}

.rating-stars .fa-star-half-alt,
.rating-stars .far.fa-star {
    color: #e5e7eb;
}

.rating-stars .fas.fa-star-half-alt {
    background: linear-gradient(to right, #ffc107 50%, #e5e7eb 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 10;
    outline: none;
    color: #4b5563;
}

.testimonial-nav:hover {
    background: #3f51b5;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    border-color: #3f51b5;
}

.testimonial-nav.prev {
    left: 10px;
}

.testimonial-nav.next {
    right: 10px;
}

.testimonial-nav i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonial-nav:hover i {
    transform: scale(1.2);
}

/* Add subtle animation to the quote icon */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

testimonials:hover .testimonial-icon i {
    animation: pulse 1.5s infinite;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    outline: none;
}

.testimonial-dots .dot.active {
    background-color: #3f51b5;
    transform: scale(1.2);
}

.testimonial-dots .dot:hover:not(.active) {
    background-color: #93c5fd;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-bg-text {
        font-size: 80px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-bg-text {
        font-size: 60px;
    }
    
    .testimonial-subtitle {
        font-size: 22px;
        margin-top: -15px;
    }
    
    .testimonial-content {
        padding: 30px 15px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .testimonial-nav {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-nav img {
        width: 12px;
        height: 12px;
    }
    
    .testimonial-dots {
        margin-top: 25px;
    }
    
    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .testimonial-bg-text {
        font-size: 50px;
    }
    
    .testimonial-subtitle {
        font-size: 20px;
        margin-top: -10px;
    }
    
    .testimonial-slider {
        padding: 30px 10px;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
    
    .testimonial-nav {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-nav.prev {
        left: 5px;
    }
    
    .testimonial-nav.next {
        right: 5px;
    }
}

/* Smooth Scroll Reveal Animations */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay for staggered animations */
.section-animate.delay-1 { transition-delay: 0.1s; }
.section-animate.delay-2 { transition-delay: 0.2s; }
.section-animate.delay-3 { transition-delay: 0.3s; }
.section-animate.delay-4 { transition-delay: 0.4s; }
.section-animate.delay-5 { transition-delay: 0.5s; }

/* Add this to your existing media query for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .section-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
