:root {
    --primary-color: #2a78cc;
    --primary-dark: #0d478a;
    --primary-light: #e6f0ff;
    --secondary-color: #FF7200;
    --accent-color: #00d2ff;
    --text-main: #1a1e23;
    --text-muted: #5e6d7a;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Hero Slider Fix */
.carousel-item {
    height: 600px;
    background: #000;
}

.carousel-item img {
    height: 600px !important;
    width: 100%;
    object-fit: fill;
    /* Stretches the image to fill the area completely */
}

@media (max-width: 768px) {

    .carousel-item,
    .carousel-item img {
        height: auto !important;
        max-height: 400px !important;
    }
}




/* Styles for preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--primary-light);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-top {
    background: #1a1e23;
    padding: 10px 0;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.call-us {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    margin-right: 25px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.call-us i {
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 16px;
}

.call-us:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.social-icon {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.social-icon li a {
    color: rgba(255, 255, 255, 0.8);
    padding: 0 12px;
    transition: var(--transition);
    text-decoration: none !important;
}

.social-icon li a:hover {
    color: var(--secondary-color);
}

.navbar {
    background: var(--primary-color) !important;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.sticky-scrolled {
    background: rgba(42, 120, 204, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px !important;
    transition: var(--transition);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-top: 15px;
    background: var(--white);
    min-width: 250px;
    transform: translateY(10px);
    opacity: 0;
    display: block !important;
    visibility: hidden;
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    font-weight: 500;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition);
    margin-bottom: 5px;
    font-size: 14px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 25px;
}

#package_pricelist {
    background: #f8fafc;
    position: relative;
}

.card-pricing {
    background: var(--white);
    border: 1.5px solid #e2e8f0; /* Clear, visible border */
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-pricing:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(42, 120, 204, 0.15);
    border-color: #2a78cc; /* Change to Logo Blue on hover */
}


.card-pricing .package-header {
    background: linear-gradient(135deg, #2a78cc 0%, #1a237e 100%); /* Logo Blue Gradient */
    padding: 45px 20px 65px;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.card-pricing .package-name {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 0;
}

.card-pricing .package-header::before {
    content: 'ULTRA FAST';
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.card-pricing .price-section {
    margin-top: -55px;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
}

.card-pricing .price-wrap {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: block;
    width: 100%;
}

.card-pricing .price {
    font-size: 42px;
    font-weight: 900;
    color: #00a8cc; /* Logo Teal Blue */
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.card-pricing .price-wrap span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-pricing .card-body {
    background: #fbfdfe; /* Very subtle blue tint */
    padding: 35px 30px 40px;
    flex-grow: 1;
}

.card-pricing ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.card-pricing ul li {
    padding: 12px 0;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.card-pricing ul li:last-child {
    border-bottom: none;
}

.card-pricing ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 12px;
    color: #00a8cc; /* Logo Teal Accent */
    font-size: 18px;
}

.card-pricing .btn-buy {
    background: linear-gradient(135deg, #00a8cc 0%, #007c99 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 168, 204, 0.2);
}

.card-pricing .btn-buy:hover {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%); /* Logo Red on Hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.3);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
}




.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}



/* Section Title Premium UI */
.section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1a237e;
    text-transform: capitalize;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h4 span {
    color: #2a78cc;
}

.section-title h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e31e24;
    border-radius: 2px;
}

.section-title h4::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: calc(50% + 40px);
    transform: translateX(-50%);
    width: 15px;
    height: 4px;
    background: #2a78cc;
    border-radius: 2px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title h4 {
        font-size: 30px;
    }
}

.vector-pattern-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.services {
    background-color: #FBFBFB;
}

.single-service {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.single-service:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(42, 120, 204, 0.12);
    border-color: #2a78cc;
}

.single-service i {
    font-size: 36px;
    color: var(--white);
    background: linear-gradient(135deg, #2a78cc 0%, #00a8cc 100%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(42, 120, 204, 0.2);
}

.single-service:hover i {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.single-service h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.single-service p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* about us animation */
.holderCircle {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    margin: 0px auto;
    position: relative;
}


.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    background: #ffffff;
    color: #7d4ac7;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #7d4ac7;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #a733bb;
    right: -39px;
}

.dotCircle .itemDot.active .forActive {
    display: block;
}

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 410px;
    height: 410px;
    border: 2px dotted #a733bb;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #7d4ac7;
    /* Old browsers */
    background: -moz-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}

.dotCircle .itemDot {
    font-size: 40px;
}

.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        color: var(--text-main) !important;
        padding: 10px 0 !important;
    }

    .nav-link:after {
        left: 0;
        transform: none;
    }

    .nav-link:hover:after,
    .nav-link.active:after {
        width: 20px;
    }

    .dropdown-menu {
        box-shadow: none;
        padding-left: 15px;
    }

    .section-title h4 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .header-top {
        text-align: center;
    }

    .social-icon {
        justify-content: center;
        margin-top: 10px;
    }

    .call-us {
        margin: 5px 10px;
        font-size: 13px;
    }

    .carousel-item img {
        height: 400px !important;
        object-fit: cover;
    }

    .pt-100 {
        padding-top: 60px;
    }

    .pb-100 {
        padding-bottom: 60px;
    }

    .single-service {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .section-title h4 {
        font-size: 24px;
    }

    .carousel-item img {
        height: 300px !important;
    }
}

.title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
}

.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #640178;
}

.title-box p {
    font-size: 17px;
    line-height: 2em;
}


/*FOOTER START///////////////////*/

.footer {
    padding: 80px 0 30px;
    background-color: #1a1e23;
    color: #a0a4a9;
    font-size: 15px;
}

.footer .title {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #a0a4a9;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer p {
    line-height: 1.8;
}

.footer i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer .social-icon {
    justify-content: flex-start;
    margin-top: 20px;
}

.footer .social-icon a {
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.footer .social-icon a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* testimonial */

#customer-review {
    background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);

    margin: auto;

}

.carousel-caption {
    position: initial;
    z-index: 10;
    padding: 5rem 8rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    line-height: 2rem
}

@media(max-width:767px) {
    .carousel-caption {
        position: initial;
        z-index: 10;
        padding: 3rem 2rem;
        color: rgba(78, 77, 77, 0.856);
        text-align: center;
        font-size: 0.7rem;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5rem
    }
}

.carousel-caption img {
    width: 6rem;
    border-radius: 5rem;
    margin-top: 2rem
}

@media(max-width:767px) {
    .carousel-caption img {
        width: 4rem;
        border-radius: 4rem;
        margin-top: 1rem
    }
}

#image-caption {
    font-style: normal;
    font-size: 1rem;
    margin-top: 0.5rem
}

@media(max-width:767px) {
    #image-caption {
        font-style: normal;
        font-size: 0.6rem;
        margin-top: 0.5rem
    }
}

.carousel i {
    background-color: rgb(223, 56, 89);
    padding: 1.4rem
}

.carousel-control-prev {
    justify-content: flex-start
}

.carousel-control-next {
    justify-content: flex-end
}

.carousel-control-prev,
.carousel-control-next {
    transition: none;
    opacity: unset
}

/* team */


.our-team {
    padding: 30px 0 40px;
    margin-bottom: 30px;
    background-color: #f7f5ec;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.our-team .picture {
    display: inline-block;
    height: 130px;
    width: 130px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.our-team .picture::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
    height: 100%;
}

.our-team .picture::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-team .picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .title {
    display: block;
    font-size: 15px;
    color: #4e5052;
    text-transform: capitalize;
}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #1369ce;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.vector-pattern-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0.2;
    z-index: -1;
    filter: blur(50px);
    border-radius: 50%;
}

/* Floating Shapes */
.shape {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
}

.shape-2 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -2s;
}

.shape-3 {
    bottom: 15%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 10px;
    transform: rotate(45deg);
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Mobile Nav Refinement */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        color: var(--text-main) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link:after {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none !important;
    }

    .dropdown.show .dropdown-menu {
        display: block !important;
    }

    .dropdown-item {
        padding: 10px 15px;
    }
}


.bill-pay .single-option {
    height: 250px;
    width: 245px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
    border-radius: 25px 0 25px 0;
    box-shadow: 10px 15px 65px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.bill-pay .single-option h2 {
    font-size: 14px;
    line-height: 23px;
    padding-top: 10px;
    letter-spacing: 0px;
}

.bill-pay .single-option h2 span {
    font-weight: 900;
    letter-spacing: 0px;
}

.bill-pay .single-option h2 ul ol {
    float: left;
}

.bill-pay .single-option h2 ul span {
    font-size: 32px;
}

/* Membership & Partners Section */
.partners-section {
    background: #fbfdfe;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-item {
    text-align: center;
    flex: 0 0 160px;
    transition: var(--transition);
}

.partner-logo-box {
    background: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    margin-bottom: 15px;
    transition: var(--transition);
    font-size: 36px;
    color: #4e5052;
}

.partner-item h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a237e;
    margin: 0;
}

.partner-item:hover .partner-logo-box {
    transform: translateY(-8px);
    border-color: #2a78cc;
    box-shadow: 0 15px 30px rgba(42, 120, 204, 0.1);
    background: linear-gradient(135deg, #2a78cc 0%, #00a8cc 100%);
    color: var(--white);
}

.partner-item:hover h5 {
    color: #2a78cc;
}

@media (max-width: 768px) {
    .partner-grid {
        gap: 15px;
    }
    .partner-item {
        flex: 0 0 140px;
    }
    .partner-logo-box {
        height: 80px;
        font-size: 28px;
    }
} 
 / *   F o o t e r   S o c i a l   I c o n s   * /  
 . f o o t e r   . s o c i a l - i c o n   {  
         m a r g i n - t o p :   2 0 p x ;  
         p a d d i n g :   0 ;  
         l i s t - s t y l e :   n o n e ;  
         d i s p l a y :   f l e x ;  
         g a p :   1 2 p x ;  
 }  
  
 . f o o t e r   . s o c i a l   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         l i n e - h e i g h t :   4 0 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ;  
         c o l o r :   # f f f ;  
         d i s p l a y :   i n l i n e - b l o c k ;  
         t e x t - a l i g n :   c e n t e r ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s i t i o n :   0 . 3 s ;  
         f o n t - s i z e :   1 8 p x ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
 }  
  
 . f o o t e r   . s o c i a l : h o v e r   {  
         b a c k g r o u n d :   # 2 a 7 8 c c ;  
         c o l o r :   # f f f ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 4 2 ,   1 2 0 ,   2 0 4 ,   0 . 3 ) ;  
         b o r d e r - c o l o r :   # 2 a 7 8 c c ;  
 }  
  
 . f o o t e r   . s o c i a l   i   {  
         l i n e - h e i g h t :   4 0 p x ;  
 }  
 