/* Heading Styles */
.heading {
    text-align: center;
    margin: 40px 20px;
}

.heading h1 {

    margin-top: 180px;

    font-size: 2.5em;
    color: #f34501;
}

.heading h2 {
    font-size: 1.3em;
    color: #555;
    margin: 10px 0;
}

/* Container Styles */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Box Styles */
.box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px); /* Adjusted for 3 boxes per row */
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.box i {
    font-size: 60px;
    color: #f34501;
    margin-bottom: 15px;
    display: inline-block;
    padding: 20px;
    border-radius: 50%; /* Makes the background circular */
    background: #f5f5f5; /* Light background color for the circle */
    border: 3px solid #f34501; /* Border color and width */
    transition: transform 0.3s; /* Smooth transition for the push effect */
}

.box:hover i {
    transform: translateY(-5px); /* Push effect on hover */
}

.box h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.box p {
    font-size: 1em;
    color: #666;
}

.box a {
    color: #f34501;
    text-decoration: none;
}

.box a:hover {
    text-decoration: underline;
}

/* Container Styles */
.price-container {
    margin: 40px 20px;
    text-align: center; /* Center align the content */
}

/* Price Heading Styles */
.price-heading h1 {
    font-size: 2.5em;
    color: #f34501;
    margin-bottom: 20px;
}

/* Price Plan Styles */
.price-plan {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Button Styles */
.h2-button {
    display: inline-block;
    padding: 10px 20px;
    background: #f34501;
    color: #fff;
    border-radius: 20px;
    font-size: 2em;
    margin-bottom: 20px;
    text-decoration: none;
    cursor: pointer;
}

/* Features Table Styles */
.features-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns per row */
    gap: 20px; /* Gap between cells */
    padding: 20px;
}

.feature-cell {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
}

.feature-cell i {
    color: #f34501;
    margin-right: 10px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .price-plan {
        width: 100%;
        max-width: 400px;
    }
}

/* Heading as Button Styles */
.h2-button {
    display: inline-block; /* Make the heading act like a button */
    padding: 10px 20px;
    border: 2px solid #f34501; /* Border color and width */
    color: #f34501; /* Text color */
    background-color: #fff; /* Background color */
    text-align: center; /* Center text */
    font-size: 1.5em; /* Adjust font size */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline for anchor tags */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.h2-button:hover {
    background-color: #f34501; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
        align-items: center; /* Center content vertically */
    }

    .service-left, .service-right {
        flex: 1;
        text-align: center; /* Center text for smaller screens */
    }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .box {
        flex: 1 1 calc(50% - 20px); /* 2 boxes per row on medium screens */
    }
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 calc(100% - 20px); /* Full width on smaller screens */
    }
}

@media (max-width: 480px) {
    .heading h1 {
        font-size: 2em;
    }
    .heading h2 {
        font-size: 1.1em;
    }
}




/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f34501;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Submit Button Styling */
button {
    padding: 12px 20px;
    background-color: #f34501;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #d93c01;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .distribution-container {
        padding: 20px; /* Less padding on smaller screens */
    }

    .distribution-container h1 {
        font-size: 1.5em; /* Smaller font size on smaller screens */
    }

    .distribution-container p {
        font-size: 1em; /* Smaller font size on smaller screens */
    }
}

/* Slider Container */
.slider-container {
    width: 50%; /* Full width of the parent container */
    max-width: 150px; /* Adjust as needed for your design */
    margin: auto;
    overflow: hidden;
}

/* Slider Wrapper */
.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

/* Slide Styling */
.slide {
    flex: 0 0 auto; /* Prevent shrinking or growing of slide */
    width: 100%; /* Adjust width as needed */
    box-sizing: border-box;
}

.slide img {
    width: 100%;
}


/* Dots Container */
.dots-container {
    bottom: 15px; /* Space from the bottom of the slider */
    width: 100%;
    scale: 60%;
    display: flex;
    gap: 10px; /* Space between dots */
}

/* Dot Styling */
.dot {
    height: 8px; /* Height of the dot */
    width: 8px; /* Width of the dot to make it circular */
    border-radius: 50%; /* Make the dot circular */
    background-color: #bbb; /* Light gray color for inactive dots */
    display: inline-block;
    transition: background-color 0.3s; /* Smooth color transition */
}

.active {
    background-color: #f34501; /* Primary color for the active dot */
}



/* Show New Price Effect */
@keyframes showNewPrice {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.centered-heading {
    text-align: center;
    color: #f34501;

}
