.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;
}

.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: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100%;
}

/* Hide scrollbars on WebKit */
.plans-row::-webkit-scrollbar {
    display: none;
}

.plans-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Plan Card */
.worldwide-container.plans {
    flex: 0 0 auto;
    width: 320px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fafafa;
    transition: box-shadow 0.2s ease;
}

.worldwide-container.plans:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Plan Name */
.plan-name {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #3a3a3a;
}

/* Plan Details */
.plans-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.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;
    }

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

    .plans-row {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center the cards */
    }

    .worldwide-container.plans {
        width: 90%; /* Makes sure the cards are not too wide */
        margin-bottom: 20px; /* Adds space between cards */
    }
}

/* 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: #e6ebf0; /* Light grey-blue background */
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid #e1e8f0;
}

/* Form Title */
.contact-form h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    text-align: left;
    color: #1a1f36; /* Dark slate */
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Input Fields */
.contact-form .form-control {
    width: 100%;
    padding: 18px 20px;
    margin: 12px 0 18px 0;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: #ffffff;
    font-size: 1.1rem;
    color: #2c3e50;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 12px rgba(52, 102, 242, 0.4);
}

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

.contact-form h3 {
    font-size: 1.5rem;
    color: #1a1f36;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Paragraphs */
.contact-form p {
    font-size: 15px;
    color: #4a5568; /* Medium gray */
    margin-bottom: 22px;
    line-height: 1.7;
}

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

.input-group .form-group {
    flex: 1;
}

.input-group .form-group input,
.input-group .form-group select {
    width: 100%;
    border-radius: 8px;
    padding: 18px 20px;
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #fff;
    border: 2px solid transparent;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-group .form-group input:focus,
.input-group .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(52, 102, 242, 0.4);
    outline: none;
}

/* Fancy Select Dropdown */
.contact-form .drop-down {
    padding: 18px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form .drop-down:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(52, 102, 242, 0.4);
    outline: none;
}

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

    .contact-form h2 {
        font-size: 2rem;
        text-align: center;
    }

    .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;
}

/* Flex container */
.shipping-types-cols {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* Individual shipping type block */
.shipping-type {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 350px;
    height: 450px;
    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;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.shipping-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Dark overlay for readability */
.shipping-type .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Text block */
.shipping-type .text-block {
    position: relative;
    z-index: 2;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4); /* Optional soft dark background */
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Headline */
.shipping-type .text-block strong {
    font-size: 20px;
    color: white;
    display: block;
    margin-bottom: 10px;
}

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

/* Responsive layout for smaller screens */
@media screen and (max-width: 768px) {
    .shipping-types-cols {
        flex-direction: column;
        align-items: center;
    }

    .shipping-type {
        width: 90%;
        max-width: 400px;
    }
}