:root{
    --primary-blue: #1F81AC;
    --primary-blue-5: #1B546C0D;
    --primary-green: #4BB881;
    --primary-green-25: #C3E7D540;
    --font-color: #0B3040;
    --secondary-blue: #3BABDC;
    --secondary-blue-10: #7DC7E81A;
    --secondary-blue-20: #7DC7E833;
}

@font-face {font-family: 'Aonik-Bold';src: url('../fonts/Aeonik-Bold.ttf');}
@font-face {font-family: 'Aonik-Medium';src: url('../fonts/Aeonik-Medium.ttf');}
@font-face {font-family: 'Aonik-Regular';src: url('../fonts/Aeonik-Regular.ttf');}

.ff-aeonik-bold {font-family: 'Aonik-Bold';}
.ff-aeonik-regular {font-family: 'Aonik-Regular';}
.ff-aeonik-medium {font-family: 'Aonik-Medium';}

.fs-10 {font-size: 10px;}
.fs-12 {font-size: 12px;}
.fs-14 {font-size: 14px;}
.fs-16 {font-size: 16px;}
.fs-18 {font-size: 18px;}
.fs-20 {font-size: 20px;}
.fs-22 {font-size: 22px;}
.fs-24 {font-size: 24px;}
.fs-26 {font-size: 26px;}
.fs-28 {font-size: 28px;}
.fs-30 {font-size: 30px;}
.fs-32 {font-size: 32px;}
.fs-34 {font-size: 34px;}
.fs-36 {font-size: 36px;}
.fs-38 {font-size: 38px;}
.fs-40 {font-size: 40px;}
.fs-48 {font-size: 48px;line-height: 1.1;}
.fs-60 {font-size: 60px;}
.fs-80 {font-size: 80px;}

*{box-sizing: border-box;margin: 0;padding: 0;transition: all 0.3s ease;}

/* Custom styles for Angel Care landing page */

/* Smooth scrolling offset */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--font-color);
    font-family: 'Aonik-Regular', sans-serif;
    overflow-x: hidden;
}

/* Typography line heights and colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--font-color);
    line-height: 1.1;
}
.text-primary-blue {
    color: var(--primary-blue);
}
.text-primary-green {
    color: var(--primary-green);
}

/* Custom spacing and helper classes */
.max-w-942 {
    max-width: 942px;
}
.py-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.bg-light-green{
    background-color: var(--primary-green-25);
}
.z-1{z-index: 1;}
.clr-primary-blue-80{color: #0B3040CC;}

/* Header & Nav custom designs */
header {
    transition: all 0.3s ease;
    z-index: 1030;
}
.navbar-brand img {
    max-height: 60px;
}
.nav-link {
    transition: color 0.3s ease;
    color: #272727;
    width: fit-content;
}
.nav-link::after{
    content: '';
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
}
.nav-link:hover::after, .nav-link.active::after{
    width: 100%;
}
.custom-cta-phone {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transition: all 0.3s ease;
}
.custom-cta-phone:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 40px;
    border-radius: 0px 0px 30px 30px;
    height: 785px;
}
.hero-section .overlay{
    background: linear-gradient(180deg, rgba(19, 80, 107, 0) 30.66%, rgba(19, 80, 107, 0.92) 80.93%);
    border-radius: 0px 0px 30px 30px;
    z-index: 0;
}
.hero-content h1 {
    position: relative;
    z-index: 1;
    font-size: 60px;
    line-height: 1;
}
.hero-content p{
    position: relative;
    z-index: 1;
}
.btn-hero-cta {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}
.btn-hero-cta:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: #ffffff;
}

.btn-white, .btn-blue, .btn-white-outline, .btn-outline-blue{
    border-radius: 40px;
    border: 1px solid var(--primary-blue);
    padding: 14px 24px;
    box-shadow: 0px 8px 24px 0px #0D32420F, 0px 1px 2px 0px #0D32420A;
    font-size: 14px;
    font-family: 'Aonik-Medium';
    position: relative;
    overflow: hidden;

    span, i {
        position: relative;
        z-index: 1;
    }
}
.btn-white{
    background-color: #fff;
    color: var(--primary-blue);
}
.btn-white:hover{
    color: #fff;
    border: 1px solid var(--primary-blue);
}
.btn-blue{
    background-color: var(--primary-blue);
    color: #fff;
}
.btn-blue:hover{
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}
.btn-white-outline{
    border: 1px solid #ffffff;
    color: #ffffff;
}
.btn-white-outline:hover{
    color: #fff;
    border: 1px solid var(--primary-blue);
}
.btn-outline-blue{
    border: 1px solid var(--font-color);
    color: var(--font-color);
}
.btn-outline-blue:hover{
    color: #ffffff;
    border: 1px solid var(--primary-blue);
}
.btn-white::before, .btn-blue::before, .btn-white-outline::before, .btn-outline-blue::before{
    content: '';
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
    opacity: 0;
}

.btn-white::before, .btn-white-outline::before, .btn-outline-blue::before{
    background-color: var(--primary-blue);
}
.btn-blue::before{
    background-color: #ffffff;
}

.btn-white:hover::before, .btn-blue:hover::before, .btn-white-outline:hover::before, .btn-outline-blue:hover::before{
    height: 280px;
    width: 280px;
    opacity: 1;
}

/* Floating Rotating Badge Animation */
.floating-badge-wrapper {
    z-index: 5;
    background: url('../images/rotating-badge-bg.png') no-repeat center;
    background-size: cover;
    scale: 1.5;
}
.rotating-badge {
    position: relative;
    width: 120px;
    height: 120px;
}
.rotating-badge svg {
    animation: rotate 15s linear infinite;
    transform-origin: center;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.title-badge{
    background-color: var(--secondary-blue-10);
    padding: 5px 8px;
    border: 1px solid var(--secondary-blue-20);
    width: fit-content;
    color: #272727;
    .dot{
        height: 8px;
        width: 8px;
        background-color: var(--primary-blue);
    }
}

/* About Us Section */
.about-section {
    .card{background-color: var(--primary-green);padding: 30px 40px 40px; i{height: 10px;width: 10px;background-color: #C3E7D5;}}
}
.about-img-wrapper img {
    border: 8px solid #ffffff;
}
.stats-pill {
    bottom: 20px;
    left: 20px;
    border-radius: 16px;
    background-color: #ffffff;
}

/* Service Card Hover Animations */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(27, 84, 108, 0.05);
    background-color: var(--primary-green-25);
    padding: 25px;
    border-radius: 20px;
    a{color: #ffffff00;}
}
.service-card span{color: #0B3040CC;}
.service-icon-wrapper {
    background-color: var(--primary-blue);
    transition: background-color 0.3s ease;
    height: 62px;
    width: 62px;
    img{filter: brightness(100);}
}
.service-card::before{content: '';position: absolute;top: 50%;left: 25%;transform-origin: center;transform: translateY(-50%);height: 50px;width: 50px;border-radius: 50%;background-color: var(--primary-blue);transition: all 0.5s ease;z-index: 0;opacity: 0;}
.service-card:hover::before{opacity: 1;transform: translateY(-50%) scale(20);}
.service-card:hover {h3{color: #fff;} span{color: #fff;} a{color: #ffffff;} .service-icon-wrapper{background-color: #fff; img{filter: none;}} .check-path-one{fill: #fff;} .check-path-two{fill: var(--primary-blue);}}

/* Why Choose Us Cards */
.why-section{background-color: var(--primary-blue); .dot{background-color: #3BABDC;}}
.reason-card {border-radius: 40px;padding: 32px; .reason-icon{height: 48px;width: 48px;background-color: var(--primary-green); img{filter: brightness(100);}} .fs-60{color: #1B546C0D;}}
.reason-card::before{content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);height: 50px;width: 50px;background-color: var(--primary-green);border-radius: 50%;transition: all 0.5s ease;opacity: 0;z-index: 0;}
.reason-card:hover{.reason-icon{background-color: #fff; img{filter: none;}} h3{color: #fff;} p{color: #fff;} .fs-60{color: #FFFFFF1A;}}
.reason-card:hover::before{opacity: 1;height: 500px;width: 500px;}

/* Who We Care For Cards */
.care-target-card {border-radius: 30px;padding: 25px; .target-icon{height: 48px;width: 48px;background-color: var(--primary-green); img{filter: brightness(100);}}}
.care-target-card::before{content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);height: 50px;width: 50px;background-color: var(--primary-green);border-radius: 50%;transition: all 0.5s ease;opacity: 0;z-index: 0;}
.care-target-card:hover{h3{color: #fff;} p{color: #fff;} .target-icon{background-color: #fff; img{filter: none;}}}
.care-target-card:hover::before{height: 500px;width: 500px;opacity: 1;}

/* Our Care Process Timeline Styling */
.process-steps {
    position: relative;
}
#step-img{
    transition: all 0.3s ease;
    height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.step-connector-line {
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-left: 3px dashed rgba(31, 129, 172, 0.3);
    z-index: 1;
}
.step-connector-progress {
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0%;
    border-left: 3px solid var(--primary-blue);
    transition: height 0.1s ease-out;
}
.step-icon-badge {
    width: 44px;
    height: 44px;
    background-color: var(--primary-green);
    img{filter: brightness(100);}
    transition: all 0.4s ease;
}
.process-step-item {
    border-radius: 40px;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.process-left-content{position: sticky;top: 100px;}

/* Testimonials Carousel Slider Styling */
.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}
.testimonials-slider-row {
    transition: transform 0.5s ease-in-out;
}
.testimonial-card{border-radius: 40px;padding: 25px; .avatar{background-color: var(--primary-blue);height: 44px;width: 44px;} p{color: var(--font-color);}}
.slider-controls{.btn{height: 60px;width: 60px;} .bi-chevron-right::before, .bi-chevron-left::before{font-weight: 900 !important;}}

/* Custom Accordion FAQ styling */
.custom-faq-accordion .accordion-item {
    border: 1px solid rgba(27, 84, 108, 0.08);
    background-color: #ffffff;
}
.custom-faq-accordion .accordion-button {
    background-color: #ffffff;
    box-shadow: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: var(--primary-blue-5);
}
.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B3040'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F81AC'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.newsletter-section{background-color: var(--primary-blue); input::placeholder{color: #fff;} .bg-primary-green{background-color: var(--primary-green);height: 50px;width: 50px;} .container{border-bottom: 1px solid #DFE6EB1A;padding-bottom: 35px;}}
.footer-section{background-color: var(--primary-blue);}
/* Footer Hover Effects */
.hover-white:hover {
    color: #ffffff;
    padding-left: 4px;
}
.border-white-20{border-color: #DFE6EB1A !important;}
.footer-section a {
    transition: all 0.3s ease;
}


@media screen and (max-width: 1400px) {
    .fs-10 {font-size: 8px;}
    .fs-12 {font-size: 10px;}
    .fs-14 {font-size: 12px;}
    .fs-16 {font-size: 14px;}
    .fs-18 {font-size: 16px;}
    .fs-20 {font-size: 18px;}
    .fs-22 {font-size: 20px;}
    .fs-24 {font-size: 22px;}
    .fs-26 {font-size: 24px;}
    .fs-28 {font-size: 26px;}
    .fs-30 {font-size: 28px;}
    .fs-32 {font-size: 30px;}
    .fs-34 {font-size: 32px;}
    .fs-36 {font-size: 34px;}
    .fs-38 {font-size: 36px;}
    .fs-40 {font-size: 38px;}
    .fs-48 {font-size: 40px;}
    .fs-60 {font-size: 50px;}
    .fs-80 {font-size: 60px;}
    .hero-content h1{font-size: 50px;}
    .hero-section .overlay{
        background: linear-gradient(180deg, rgba(19, 80, 107, 0) 5.66%, rgba(19, 80, 107, 0.92) 50.93%);
    }
    .floating-badge-wrapper{scale: 1;}
}
@media screen and (max-width: 576px) {
    .fs-18{font-size: 13px;}
    .fs-48{font-size: 30px;}
    .fs-60 {font-size: 40px;}
    .fs-80{font-size: 50px;}
    .hero-section{background-position: bottom !important;max-height: 90dvh;background-size: auto 800px;}
    .hero-section .overlay{
        background: linear-gradient(180deg, rgba(19, 80, 107, 0) 35.66%, rgba(19, 80, 107, 0.92) 50.93%);
    }
    .hero-content h1{font-size: 28px;}  
    .hero-section .gap-4{gap: 8px !important;} 
    .py-100{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .step-connector-line{left: 5px;}
    .slider-controls .btn{height: 50px;width: 50px;}
    #step-img{display: none;}
    #process .g-5{gap: 8px !important; .col-lg-6:has(.process-steps){margin-top: 0px !important;}}
}