html{
scroll-behavior: smooth;
}
/* login forms style */
.login {
    background: linear-gradient(90deg, rgb(255, 47, 47), rgba(255, 188, 88, 0.416), rgb(255 188 88 / 0%)), url(../images/banner.png);
    background-size: cover;
    background-position: center;
    height: fit-content;
    justify-content: center;
    align-items: center;
  }
  .form-check {
    min-width: 150px !important;
    background: #ffdfc3 !important;
    padding: 4px 44px !important;
    border: 1px solid orange !important;
    border-radius: 8px !important;
    margin-bottom:2px !important;
}
  
.login-card {
    background-color: white;
    padding: 4rem;
    margin: 4rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
  }
  .login-card input {
    margin-bottom: 1rem;
  }
  .login-card a {
    color: red;
    text-decoration: none;
  }
  .login-card a:hover {
    text-decoration: underline;
  }
  .login-btn {
    background-color: #ffa500;
    border: none;
    color: white;
    width: 100%;
  }
  .login-btn:hover {
    background-color: #ff9000;
  }
/* Header styles */
header {
    border-bottom: 1px solid #f5f5f5;
}

header .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #ff5f5f; /* Red color */
}
.bg-primary {
    background: #f39c12 !important;
}

header .navbar-nav .nav-link:hover {
    color: #ff3b3b;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

header .btn-danger {
    background-color: #ff1e56; /* Bright red for button */
    border: none;
}

header .btn-danger:hover {
    background-color: #e60042; /* Darker red on hover */
}
header.bg-white.py-3.border-bottom-warning {
    border-bottom: 3px solid #ffbc58;
}
ul.dropdown-menu {
    background: white;
    border: none;
    box-shadow: -2px 2px 2px #80808045;
    border-radius: 1px;
}

ul.dropdown-menu li a {
    color: red;
    padding: 12px 16px;
}

.anchor {
    color: #ff3030 !important;
}

.anchor:hover {
    color: orange !important;
    background: transparent !important;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, rgb(255, 47, 47), rgba(255, 188, 88, 0.416), rgb(255 188 88 / 0%)), url(../images/banner.png);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.innerhero-section {
    background: linear-gradient(90deg, #ff2f2f91, #ff2f2f91), url(../images/inner.png);
    background-size: cover;
    background-position: center;
    padding: 124px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-text h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 71px;
}

.hero-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow:0 8px 20px rgb(0 0 0 / 64%);
    width: 510px;
}

.hero-form .form-label {
    font-weight: 400;
    color: #7c7e82;
}

.hero-form .form-control {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.hero-form button {
    background-color: #ffbf3c;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    width: 100%;
}

/* Footer styles */
footer ul li a:hover {
    text-decoration: underline;
}
/* Service section heading */
.section-heading {
    font-weight: bold;
    font-size: 2.5rem;
    color: #ff3b3b;
}

/* Service card styling */
.service-card {
    padding: 40px;
    /* border-radius: 12px; */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

/* Icon size */
.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Service button styling */
.service-card h5 {
    font-size: 20px;
    font-weight: 500;
}
.red {
    color: #ff3030 !important;
}
.service-btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 24px;
}
/* Hover effect for service cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: -3px 3px 9px rgb(0 0 0 / 11%);
}
.bg-danger {
    background: #ff3030 !important;
}

.bg-warning {
    background: #ffbc58 !important;
}

/* Icon hover effect */
.service-card:hover .card-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
    /* Fade and slide up animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the animation to the service cards */
.service-card {
    animation: fadeSlideUp 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    /* border-radius:10px; */

}
h2.mb-4.section-heading {
    color: red;
    font-weight: 700;
    font-size: 42px;
}

/* Delay the animation for each card */
.service-card:nth-child(1) {
    animation-delay: 0.2s;
}
.service-card:nth-child(2) {
    animation-delay: 0.4s;
}
.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* News section heading */
.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* News card styling */
.card {
    border: 1px solid #00000021;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* padding: 20px; */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Card image styling */
.card-img-top {
    /* height: 200px; */
    object-fit: cover;
}

/* Card body */
.card-body {
    padding: 20px;
    text-align: left;
}

/* Card button */
.btn-danger {
    margin-top: 10px;
}

/* News section background */
.bg-light {
    background-color: #f9f9f9;
}
.subscription {
    background-image: url('path_to_your_image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 0;
}

.subscription .overlay {
    background-color: rgba(255, 0, 0, 0.7); /* Red with opacity for overlay */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.subscription h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.input-group {
    max-width: 600px;
    margin: auto;
}

.input-group .form-control {
    border: none;
    border-radius: 0;
}

.input-group .btn {
    border-radius: 0;
}
.subscription {
    background-image: linear-gradient(0deg, #ff0000a8, #ff0000a8), url(../images/old.webp); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 0;
}

.subscription .container {
    position: relative;
    z-index: 2;
}

.text-md-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    margin: auto;
}

footer {
    background-color: #ffffff;
}

footer h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    color: #ff7f50;
}

footer .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

footer .btn-warning:hover {
    background-color: #e0a800;
}

.copyright-bar {
    background-color: #ff4d4d; /* Matches reddish-orange theme */
    color: #ffffff;
}

.copyright-bar a {
    color: #ffc107;
    text-decoration: none;
}
li.nav-item {
    padding: 0 33px;
    text-transform: uppercase;
}


.services-provided {
    background-color: #F3C88E; /* Yellowish background */
    padding: 50px 0;
}

.services-provided h2 {
    font-size: 2.5rem;
    color: #FF3A30; /* Red text color */
    margin-bottom: 40px;
}

.service-box {
    background-color: #FFFFFF; /* White background */
    border-radius: 5px; /* Rounded corners */
    text-align: start; /* Centering content */
    padding: 20px;
    position: relative; /* Position elements inside */
    transition: all 0.3s ease;
    height: auto !important;
}
.service-box img {
    max-width: 100%; /* Make images responsive */
    margin-bottom: 15px; /* Space below the image */
    height: 130px !important;
    object-fit: cover !important;
}

.service-box:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

.service-box h5 {
    font-size: 25px;
    color: #FF3A30; /* Theme red for heading */
    margin-bottom: 15px;
}

.service-box a {
    font-size: 1rem;
    color: #FFA500 !important; /* Orange color for Read More */
    text-decoration: none;
    display: inline-block;
}


@media (max-width: 768px) {
    .service-box {
        margin-bottom: 20px;
    }
}

.container.container-fluid.services-grid {
    width: 80%;
}
.red-bg {
    background: #ff3030;
}

.red-bg h5 {color: white;}

.how-we-work-section {
    padding: 50px 0px;
}

.text-content h4 {
    color: #f5b945;
    font-size: 18px;
}

.text-content h2 {
    color: #ff3c2f;
    font-size: 33px;
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.steps {
    margin-top: 20px;
}

.step {
    margin-bottom: 15px;
}

.step .icon {
    background-color: #f5b945;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    margin-right: 10px;
    font-size: 24px;
}

.step p {
    color: #ff3c2f;
    font-size: 18px;
    margin: 0;
}

.images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.large-image {
    width: 100%;
}

.small-image {
    width: 21%;
    position: absolute;
    bottom: -29%;
    right: 30%;
    border: white 10px solid;
}


/* How We Work Section */
.how-we-work-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.how-we-work-section h4 {
    color: #ff6f61;
    margin-bottom: 10px;
    font-weight: bold;
}

.how-we-work-section h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
}

.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.step {
    text-align: center;
    width: 22%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 40px;
    background-color: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.step p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

/* Image Section */
.images {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.large-image {
    width: 60%;
    border-radius: 10px;
    margin-right: 20px;
}

.heading {
    font-size: 34px;
}

/* Statistics Section */
.statistics-section {
    background-color: #ffeadb;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.statistic h2 {
    font-size: 2.5em;
    color: #ff6f61;
    margin-bottom: 10px;
}

.statistic p {
    font-size: 1.1em;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
    color: #555;
}
img.large-images {
    width: 50%;
    box-shadow: 15px 13px 0px 0px orange;
    border-radius: 13px;
}

img.small-images {
    width: 37%;
    border: 8px solid white;
    position: absolute;
    left: 46%;

}

/* about */

.statement-box {
    border: 2px solid #f39c12;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 200px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statement-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.statement-box h5 {
    font-size: 35px;
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 15px;
}

.statement-box p {
    color: #555;
    font-size: 16px;
}
.red{
        color: #ff3634;
}
.profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.profile-card img {
    width: 30% !important;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-card h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .profile-card img {
        width: 120px;
        height: 120px;
    }

    .statement-box {
        margin-bottom: 20px;
    }

    .profile-card {
        padding: 20px;
    }
}


h6 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: bold;
    color: #f0ad4e; /* Same as 'How We Work' section */
}

.main-heading {
    font-size: 2.75rem;
    line-height: 1.3;
    color: #d9534f; /* Red color for the main heading */
}

ul.steps-list {
    padding-left: 0;
    margin-top: 1rem;
}

ul.steps-list li {
    font-size: 1.25rem;
    color: #d9534f; /* Red text for the list items */
    font-weight: bold;
    display: flex;
    align-items: center;
}

ul.steps-list li .icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0ad4e; /* Background color for the icons */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Slightly rounded corners */
    margin-right: 15px;
}

ul.steps-list li i {
    font-size: 24px;
    color: #fff; /* White color for the icons */
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 2rem;
    }

    ul.steps-list li {
        font-size: 1.1rem;
    }

    ul.steps-list li .icon-box {
        width: 40px;
        height: 40px;
    }
}
form {
    width: 100%;
}
.btn-primary{
    background-color:#f39c12;
    border: none;
}
.btn-primary:hover{
    background-color: #e74c3c;
}
.btn-secondary{
    background-color: #e74c3c;
    border: none;
}
.btn-secondary:hover{
    background-color:#f39c12;
}


/* pricing */
.card {
    height: 100%;
}
.pricing-section {

    background-color: #f8f9fa70;
    margin: 50px;
    border-radius: 40px;
}
.card-header{
    padding: 40px;
}
.card-header h4 {
    font-size: 1.5rem;
    font-weight: bold;
}
.card-header h5 {
    font-size: 1.2rem;
    font-weight: bold;
}
.recommended {
    background: linear-gradient(45deg, #ff0080, #ff80bf);
    padding: 10px;
    color: #fff;
}
.bronze-plan {
    border-top: 4px solid #a0522d;
}
.silver-plan {
    border-top: 4px solid #c0c0c0;
}
.premium-plan {
    border-top: 4px solid #ffd700;
}
.platinum-plan {
    border-top: 4px solid #add8e6;
}
.diamond-plan {
    border-top: 4px solid #da70d6;
}
.btn-brown {
    background-image: linear-gradient(90deg, #a0522d, #ffb38f, #a0522d);
    color: beige;
}
.btn-gray {
    background-image: linear-gradient(90deg, #c0c0c0, #efefef, #c0c0c0);
    color: #363636;
}
.btn-yellow {
    background-image: linear-gradient(90deg, #ffc200, #ffe9c8, #ffc200);
    color: #161616;
}
.btn-lightblue {
    background-image: linear-gradient(90deg, #add8e6, #edfbff, #add8e6);
    color: #161616;
}
.btn-pink {
    background-image: linear-gradient(90deg, #ff369a, pink,#ff369a);
    color: #fff;
}
.btn:hover {
    opacity: 0.8;
}
/* pricing */
.card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    position: relative;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.03); /* Subtle zoom effect */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); /* Smooth shadow */
}

.card-header {
    transition: background-color 0.4s ease, color 0.4s ease;
    border-radius: 10px 10px 0 0;
}

.card:hover .btn-brown {
    background-color: #a0522d; /* Subtle darker brown */
}

.card:hover .btn-gray {
    background-color: #5a6268; /* Subtle darker gray */
}

.card:hover .btn-yellow {
    background-color: #ffdd57; /* Softer yellow */
}

.card:hover .btn-lightblue {
    background-color: #4682b4; /* Softer blue */
}

.card:hover .btn-pink {
    background-color: #ff69b4; /* Softer pink */
}

.card-body {
    transition: color 0.4s ease;
}

.card:hover .card-body {
    color: #555; /* Slightly darker text on hover */
}
