:root {
    --primary-color: #0072bb;
    --secondary-color: #009e9d;
    --gradient-color: linear-gradient(90deg, #0072bb, #009e9d);
}

/* Breadcrumb Section */
.breadcrumb-section {
    height: 40vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(70%);
    transform: scale(1.1);
    animation: zoomBanner 12s ease-in-out infinite alternate;
}

@keyframes zoomBanner {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 114, 187, 0.8), rgba(0, 158, 157, 0.8));
    z-index: 2;
}

.breadcrumb-section .container {
    z-index: 3;
}

.breadcrumb-section h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    color: #fff;
    animation: fadeInDown 1s ease;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #fff;
    padding: 0 8px;
}

.breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ffb703;
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-heading {
    animation: fadeInDown 1.2s ease forwards;
}

/* Section Style */
.services-page-section {
    background: linear-gradient(135deg, #f7fbff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.divider {
    width: 90px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Gradient Heading */
.text-gradient {
    background: linear-gradient(90deg, #0072bb, #009e9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Card */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.service-card:hover {
    transform: translateY(-10px);
    border-image: linear-gradient(45deg, #0072bb, #00c2a9) 1;
    box-shadow: 0 10px 35px rgba(0, 114, 187, 0.3);
}

/* Service Image */
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    border-bottom: 4px solid var(--secondary-color);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
    filter: brightness(70%);
}

/* Service Content */
.service-content {
    padding: 25px 20px;
    text-align: left;
    color: #333;
    transition: all 0.4s ease;
}

.service-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.service-card:hover .service-content {
    color: #fff;
    background: var(--gradient-color);
    transform: translateY(-10px);
}

.service-card:hover .service-content h4,
.service-card:hover .service-content p {
    color: #fff;
}

/* Hover Glow */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, #00c2a9, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* Animation */
@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

[data-aos="zoom-in"] {
    animation: zoomFade 0.8s ease forwards;
}


/* Section */
.contact-details-section {
    background: linear-gradient(135deg, #f7fbff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-image: linear-gradient(45deg, #0072bb, #00c2a9) 1;
    box-shadow: 0 8px 35px rgba(0, 114, 187, 0.25);
}

/* Icon */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 158, 157, 0.3);
}

.contact-card:hover .icon-wrapper {
    transform: rotateY(360deg);
    box-shadow: 0 0 25px rgba(0, 158, 157, 0.5);
}

/* Text */
.contact-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.contact-card.active {
    background: var(--gradient-color);
    color: #fff;
    transform: scale(1.05);
}

.contact-card.active h4,
.contact-card.active p {
    color: #fff;
}

/* Hover Glow Border */
.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, #00c2a9, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::after {
    opacity: 1;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeUp 0.8s ease forwards;
}


