.home-features p {
    text-align: left;
    height: 200px;
}

/* Section Styling */
.section.cloud-color-section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: auto;
}

.services-icons {
    width: 40px;
    fill: white;
}

.service-one-link {
    display: none;
}

.inner-footer {
    width: 100%;
    border-radius: unset;
}

.footer {
    padding-bottom: unset;
}

/* Title */
.section.cloud-color-section h2 {
    line-height: 1em;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2e2e2e;
}

/* Plans Row */
.plans-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 10px;
    width: 100%;
    margin-top: 20px;
}

/* Plan Card */
.worldwide-container.plans {
    flex: 0 0 320px; /* Fixed width for each card */
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f0f4f8); /* Soft gradient background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Allow the content to expand vertically */
    justify-content: space-between; /* Keep elements spread out */
    height: auto; /* Ensure height is auto-adjustable */
    min-height: 350px; /* Minimum height for consistency */
    overflow: hidden; /* Ensures content doesn't overflow */
}

/* Hover Effect for Plan Card */
.worldwide-container.plans:hover {
    transform: translateY(-5px); /* Slight elevation effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Plan Name */
.plan-name {
    font-size: 1.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    word-wrap: break-word; /* Allow long plan names to wrap correctly */
}

/* Plan Details (Layout) */
.plans-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-grow: 1; /* Allow the columns to grow and take full height */
}

/* Plan Details Individual Item */
.left-col3 {
    font-size: 1rem;
    color: #555;
    text-align: center;
}

.left-col3 p {
    margin: 0;
    padding: 0;
}

/* Strong labels in plan */
.left-col3 strong {
    font-weight: 600;
    color: #3a3a3a;
    display: block;
    margin-bottom: 8px;
}

/* Duration, Interest Rate, Loan Amount */
.left-col3 p {
    font-size: 1.1rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .plans-row {
        flex-direction: column;
        gap: 20px;
    }

    .worldwide-container.plans {
        width: 100%;
        padding: 20px;
        min-height: 380px; /* Ensure sufficient height on mobile */
    }

    .plan-name {
        font-size: 1.6rem;
    }

    /* Adjust the font size and spacing of plan details for mobile */
    .plans-columns {
        gap: 15px;
    }

    .left-col3 {
        font-size: 0.9rem;
    }

    .left-col3 p {
        font-size: 1rem; /* Increase text size for mobile */
    }
}


.left-col3 {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
}

.left-col3:last-child {
    border-bottom: none;
}

.left-col3 p {
    margin: 5px 0;
    font-size: 1rem;
    color: #444;
}

.left-col3 strong {
    font-weight: 600;
    color: #555;
}

.elementor-divider {
    display: none;
}

/* Responsive Design: Stacked Layout for Small Screens */
@media (max-width: 768px) {
    .section.cloud-color-section h2 {
        font-size: 1.5rem;
    }
}

/* Fancy Background for Section */
.section.no-padding-section.cloud-color-section {
    position: relative;
    padding: 100px 0; /* Add more space around the form */
    overflow: hidden;
    box-sizing: border-box;
}

/* Adding a subtle animated pattern effect on the background */
.section.no-padding-section.cloud-color-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 40%);
    opacity: 0.2;
    animation: movePattern 15s linear infinite;
    z-index: -1; /* Ensures it's behind the content */
}

/* Animation for background pattern movement */
@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

/* Apply slight blur effect to the background */
.section.no-padding-section.cloud-color-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(15px);
    z-index: -2; /* Behind everything */
}

/* New Form Container Styles */
.contact-form-wrapper {
    background: #f4f6f9; /* Bright gray background */
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid #e1e8f0; /* Subtle light border */
    color: #2c3e50; /* Dark text color */
}

/* Form Title */
.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #34495e; /* Dark slate color */
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

/* Input Fields */
.contact-form .form-control {
    width: 100%;
    padding: 18px 22px;
    margin: 12px 0;
    border-radius: 10px;
    border: 2px solid #dcdfe1; /* Light border */
    background-color: #ffffff; /* White background for inputs */
    font-size: 1.1rem;
    color: #2c3e50;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Roboto', sans-serif;
}

/* Focused Input Fields */
.contact-form .form-control:focus {
    border-color: var(--primary); /* Blue border on focus */
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

/* Fieldsets and Titles */
.contact-form fieldset {
    border: none;
    margin-bottom: 40px;
}

/* Section Titles */
.contact-form h3 {
    font-size: 1.4rem;
    color: #34495e;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Paragraphs */
.contact-form p {
    font-size: 14px;
    color: #7f8c8d; /* Medium gray */
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

/* Input Group */
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

/* Individual Form Group */
.input-group .form-group {
    flex: 1;
    min-width: 250px;
}

/* Fancy Select Dropdown */
.contact-form .drop-down {
    padding: 18px 20px;
    border-radius: 10px;
    border: 2px solid #dcdfe1; /* Light border */
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #ffffff;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .drop-down:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgb(201, 42, 42);
    outline: none;
}

/* Button Styles */
.button-primary-text {
    background-color: var(--primary);
    color: #fff;
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 30%;
    margin: auto;
}

.button-primary-text:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}

/* Button Layer */
.button-primary-layer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.button-primary-text:hover .button-primary-layer {
    opacity: 1;
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form h2 {
        font-size: 2.2rem;
    }

    .contact-form .form-control,
    .input-group .form-group input,
    .input-group .form-group select,
    .contact-form .drop-down {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .input-group {
        flex-direction: column;
        gap: 18px;
    }

    .input-group .form-group {
        width: 100%;
    }
}



/* Base container */
.shipping-types-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Shipping Types Section */
.shipping-types-cols {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 50px 20px;
    max-width: 1200px;
    width: 100%;
}

/* Individual Shipping Type Block */
.shipping-type {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 320px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Hover Effect: Transform and Fade */
.shipping-type:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

/* Dark Overlay for Readability */
.shipping-type .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Text Block Styling */
.shipping-type .text-block {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: background 0.3s ease;
}

/* Title Styling */
.shipping-type .text-block strong {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Paragraph Styling */
.shipping-type .text-block p {
    font-size: 14px;
    color: #dcdcdc;
    line-height: 1.5;
    margin: 0;
}

/* Hover Effect for Text Block */
.shipping-type:hover .text-block {
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
    .w-layout-grid {
        grid-template-columns: 1fr!important;
    }

    /* Stack the items vertically on small screens */
    .shipping-types-cols {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    /* Adjust the shipping type block size */
    .shipping-type {
        width: 90%;
        height: 350px;
        max-width: 450px;
        aspect-ratio: 1.2;
    }

    /* Adjust padding inside the text block */
    .shipping-type .text-block {
        padding: 15px;
    }

    /* Adjust font size for better mobile readability */
    .shipping-type .text-block strong {
        font-size: 16px;
    }

    .shipping-type .text-block p {
        font-size: 13px;
    }
}

/* Larger screens (extra-large screens or large desktops) */
@media (min-width: 1200px) {
    .shipping-type {
        width: 360px;
        height: 420px;
    }
}
