@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins" !important;
    cursor: default;
}

:root {
    --primary-color: #f1f7fd;
    /* Light Blue */
    --secondary-color: #fff;
    /* White */
    --heading-color: #333;
    /* Dark Gray */
    --text-color: #777;
    /* Light Gray */
    --cta-color: #28a745;
    /* Green */
    --cta-hover-color: #218838;
    /* Darker Green for Hover */
    --footer-bg-color: #102a71;
    /* Dark Blue for Footer */
}


/* General Body Styling */

body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    /* Light Blue Background */
    color: var(--heading-color);
    /* Set default text color */
}

h2 {
    font-weight: 600;
}

.cta-btn2 {
    background: linear-gradient(360deg, rgba(39, 74, 89, 0.89) 0%, rgba(122, 189, 220, 1) 100%);
    /* Green CTA Button */
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    animation-duration: 3s;
}

@keyframes pulseBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 85, 135, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(25, 135, 84, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
        transform: scale(1);
    }
}

.blink-btn {
    animation: pulseBlink 1.4s infinite;
}

.cta-btn2:hover {
    background-color: var(--cta-hover-color);
    /* Darker Green on Hover */
}


/********* Icon ***********/

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background 0.3s ease;
}

.feature-card:hover .icon-circle {
    background: radial-gradient(at center, #7ABDDC, #203C48);
    /* bootstrap primary or change as you wish */
}

.icon-circle img {
    width: 60px;
    height: 60px;
    transition: filter 0.3s ease;
}

.feature-card:hover .icon-circle img {
    filter: brightness(0) invert(1);
}

.feature-card h5 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
}


/* Services Section Styling (Owl Carousel) */

.owl-carousel .item {
    margin: 0 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.owl-carousel .item:hover {
    transform: translateY(-10px);
}

.owl-carousel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}


/*************** Why Choose Sec *************/

.why-choose-section .how-card {
    background: #ffffff;
    border-radius: 16px;
    min-height: 300px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-section .how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.why-choose-section .how-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: radial-gradient(at center, #7ABDDC, #203C48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-section .how-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    /* white icon effect */
}

.why-choose-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-section p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .why-choose-section .how-card {
        padding: 20px 15px;
    }
}


/*************** How It Works *************/

.how-it-works .icon-card {
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.how-it-works .icon-card:hover {
    transform: translateY(-8px);
}

.how-it-works .icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-color: #7ABDDC;
    transition: border-color 0.3s ease;
}

.how-it-works .icon-card:hover .icon-circle {
    border-color: #7ABDDC;
}

.how-it-works .icon-circle img {
    width: 50px;
    height: 50px;
}

.how-it-works h5 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.arrow-icon {
    transform-origin: center;
}

@media (max-width: 767.98px) {
    .arrow-icon {
        transform: rotate(90deg);
    }
}


/* FAQ Section Styling */

.faq {
    margin-top: 50px;
}

.faq .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background-color: var(--secondary-color);
    /* White */
}

.faq .card-header {
    background-color: var(--secondary-color);
    /* White Header */
    border-bottom: 2px solid var(--primary-color);
    /* Light Blue Border */
    padding: 15px;
}

.faq .btn-link {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--heading-color);
    /* Dark Gray */
    text-decoration: none;
}

.faq .btn-link:hover {
    color: #007bff;
    /* Blue on hover */
}


/* Footer Styling */

footer {
    background: linear-gradient(360deg, rgba(32, 60, 72, 0.94) 0%, rgba(122, 189, 220, 1) 92%);
    color: var(--secondary-color);
    /* White text color */
    padding: 30px 0;
    text-align: center;
}

footer img {
    width: 100px;
    margin-bottom: 20px;
    border-radius: 10px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* Responsive Design */

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }
    .about-us img {
        width: 80%;
    }
    .icon-section {
        display: flex;
        flex-direction: column;
    }
    .icon-section .col-md-3 {
        margin-bottom: 20px;
    }
    .cta-btn {
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    .owl-carousel {
        margin-top: 20px;
    }
}


/************** Faq ***************/

.accordion-header button b {
    color: #000;
}

.accordion-button:not(.collapsed) {
    background-color: white;
}

.accordion-button {
    border: 2px solid #eee;
    border-radius: 10px !important;
    margin: 10px 0px;
    /* margin-bottom: 6px !important; */
}

.accordion-button:focus {
    color: black;
    border: 1px solid #eee;
    box-shadow: none !important;
}


/************ Call Button*************/

.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 2rem;
    bottom: 3rem;
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    -webkit-animation: 0.6s linear infinite cc-calto-action-ripple;
    animation: 0.6s linear infinite cc-calto-action-ripple;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 2.2rem;
}

.call-btn .cc-calto-action-ripple {
    right: 2rem;
    left: auto;
    background-color: #dc3545;
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}