:root {
    --primary-color: #2196f3;
}

/* ============================================================
   APPLICATIONS PAGE - HERO SECTION
   ============================================================ */
.application-hero {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #021024;
    background-image:
        linear-gradient(
            to right,
            rgba(2, 16, 36, 0.95) 0%,
            rgba(2, 16, 36, 0.75) 50%,
            rgba(2, 16, 36, 0.3) 100%
        ),
        url("../images/photoreactor_hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Kicker Badge */
.application-hero__kicker {
    display: inline-block;
    background-color: #38e9bb; /* Cyan */
    color: #021a0f; /* Very dark green/black */
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 15px;
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Title */
.application-hero__title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.application-hero__title .text-cyan {
    color: #38e9bb !important;
}

/* Description Text */
.application-hero__text {
    font-size: 1.25rem;
    color: #a8b2c1; /* Light grey */
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Action Buttons */
.application-hero__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cyan {
    background-color: #38e9bb;
    color: #021a0f !important;
    border: none;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cyan:hover {
    background-color: #1fd6a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 233, 187, 0.2);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991.98px) {
    .application-hero {
        background-image:
            linear-gradient(
                to bottom,
                rgba(2, 16, 36, 0.95) 0%,
                rgba(2, 16, 36, 0.8) 100%
            ),
            url("../images/photoreactor_hero.png");
    }
}

/* ============================================================
   APPLICATIONS PAGE - CORE METHODOLOGIES SECTION
   ============================================================ */
.core-methodologies {
    background-color: #fbfcff; /* very light cool background */
    padding: 80px 0;
}

.methodologies-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #041a35; /* Navy */
    margin-bottom: 5px;
}

.methodologies-subtitle {
    font-size: 1.15rem;
    color: #8a99af; /* Light slate */
}

.header-kicker {
    font-size: 0.85rem;
    font-weight: 800;
    color: #8ca39f; /* Greyish green */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.methodologies-divider {
    border-color: #e2e8f0;
    opacity: 1;
}

/* CARDS */
.methodology-card {
    border-radius: 12px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.methodology-card--grey {
    background: linear-gradient(135deg, #f2f5f9 0%, #e8eef3 100%);
}

.methodology-card--white {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

.methodology-card__icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.methodology-card__icon i {
    font-size: 1.1rem;
    color: #38e9bb; /* Cyan */
}

.methodology-card__icon--navy {
    background-color: #041a35;
}

.methodology-card__icon--teal {
    background-color: #0b3128; /* Very dark teal/green */
}

.methodology-card__title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 20px;
}

.methodology-card__text {
    font-size: 1.05rem;
    color: #4a5a77;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 40px;
}

.methodology-card__link {
    font-weight: 800;
    color: #041a35;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom if text varies */
}

.methodology-card__link:hover {
    color: #1fd6a3;
}

.methodology-card__link i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.methodology-card__link:hover i {
    transform: translateX(5px);
}

.methodology-card__divider {
    border-color: #f0f2f5;
    opacity: 1;
    margin: 20px -40px 25px; /* Negative margins to stretch to container edges */
    margin: 20px 0 25px; /* Or zero to stay inside padding as standard */
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #8a99af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a5c48; /* Dark green/teal */
}

@media (max-width: 991.98px) {
    .methodology-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    .methodology-card__title {
        font-size: 1.5rem;
    }
    .methodologies-title {
        font-size: 2.25rem;
    }
}

/* ============================================================
   APPLICATIONS PAGE - SCALABILITY FOCUS SECTION
   ============================================================ */
.scalability-focus-section {
    background-color: #fbfcff; /* Match previous section background */
}

.scalability-focus-card {
    background-color: #051024; /* Very dark navy */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(4, 26, 53, 0.15);
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px
    );
    background-size: 24px 24px; /* Subtle dotted pattern */
    overflow: hidden;
}

.focus-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    color: #38e9bb; /* Cyan */
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.focus-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.focus-text {
    font-size: 1.15rem;
    color: #a8b2c1;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 95%;
}

.btn-portfolio {
    background-color: #162a42; /* Dark blue-grey for button */
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-portfolio:hover {
    background-color: #1f3b5c;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-portfolio i {
    font-size: 1.1rem;
}

.focus-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: inline-block;
    width: 100%;
    /* Create a gradient edge overlay inside the wrapper to mimic the dark fading look on the left edge */
}

.focus-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(5, 16, 36, 0.8) 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.focus-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Apply a deep blue technical filter if original image is not styled */
    filter: sepia(100%) hue-rotate(180deg) saturate(300%) brightness(0.7)
        contrast(1.2);
}

@media (max-width: 991.98px) {
    .scalability-focus-card {
        padding-bottom: 1rem;
    }
}

/* ============================================================
   APPLICATIONS PAGE - DEEP DIVE CASE STUDY SECTION
   ============================================================ */
.case-study-section {
    background: radial-gradient(circle at 70% 30%, #ecf7f5 0%, #f0f4f8 100%);
    padding: 100px 0;
}

.case-study-line {
    width: 60px;
    height: 2px;
    background-color: #1a5c48; /* Dark green */
}

.case-study-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a5c48;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.case-study-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #041a35; /* Navy */
    line-height: 1.15;
    letter-spacing: -1px;
}

.case-study-text {
    font-size: 1.1rem;
    color: #5c6b81;
    line-height: 1.7;
    font-weight: 500;
}

.case-study-metrics {
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.metric-label-group .metric-label {
    color: #8a99af;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.text-navy {
    color: #041a35 !important;
}

.text-success-dark {
    color: #117855 !important; /* adjust green darker */
}

.text-letter-spacing-tight {
    letter-spacing: -1.5px;
}

/* Base Chart Box */
.chart-wrapper {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #041a35;
}

.chart-id {
    color: #a8b2c1;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

/* Bar Chart */
.bar-chart {
    height: 230px;
    padding-top: 20px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}

.bar {
    width: 100%;
    max-width: 45px;
    transition: height 1s ease-out;
}

.bar-label {
    margin-top: 15px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #a8b2c1;
    text-transform: uppercase;
    text-align: center;
    height: 20px;
    white-space: nowrap;
}

.bg-light-grey {
    background-color: #e2e8f0;
}

.bg-navy {
    background-color: #041a35;
}

.bg-cyan {
    background-color: #38e9bb;
}

/* Bar Heights */
.h-25 {
    height: 25%;
}
.h-40 {
    height: 40%;
}
.h-35 {
    height: 35%;
}
.h-70 {
    height: 70%;
}
.h-100 {
    height: 100%;
}

/* Mini Cards */
.mini-card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.mini-card-label {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
    opacity: 0.7;
}

.mini-card-value {
    letter-spacing: -1px;
}

.bg-grey {
    background-color: #e2e8f0;
}

@media (max-width: 991.98px) {
    .case-study-title {
        font-size: 2.25rem;
    }
    .bar-chart {
        height: 180px;
    }
    .bar {
        max-width: 25px;
    }
    .bar-label {
        font-size: 0.5rem;
    }
}

/* ============================================================
   APPLICATIONS PAGE - ALGORITHMIC PRECISION SECTION
   ============================================================ */
.algorithmic-precision-section {
    background-color: #f8f9fc; /* Very faint cool grey/white */
    padding: 100px 0;
}

.precision-icon i {
    font-size: 2.5rem;
    color: #0b3128; /* Dark teal/forest green */
}

.precision-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: #041a35; /* Navy */
    letter-spacing: -1px;
}

.precision-subtitle {
    font-size: 1.25rem;
    color: #64748b; /* Slate grey text */
    line-height: 1.8;
    font-weight: 400;
}

.precision-divider {
    border-color: #e2e8f0;
    opacity: 1;
}

.precision-feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #041a35;
    letter-spacing: -0.5px;
}

.precision-feature-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Contact Page */
#contact-section {
    background-color: whitesmoke;
}

.contact-form-card,
.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-header h4 {
    font-weight: 700;
    color: #2196f3;
    font-size: 2rem;
}

.custom-input {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 0.2rem rgba(6, 43, 137, 0.1);
}

.contact-info-title {
    font-weight: 800;
    color: #2196f3;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-info-desc {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-icon-box {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f1f1;
}

.contact-icon-box i {
    color: #2196f3;
    font-size: 1.2rem;
}

.contact-text h6 {
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-listing-section {
    background-color: #f8f9fa;
}

.blog-listing-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #f0f2f5;
    display: flex;
    flex-direction: column;
}

.blog-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-listing-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-listing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-listing-card:hover .blog-listing-image {
    transform: scale(1.05);
}

.blog-listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #041a35; /* Navy */
    color: #38e9bb; /* Cyan */
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
}

.blog-listing-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-listing-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-listing-title a {
    color: #041a35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-listing-title a:hover {
    color: #2196f3;
}

.blog-listing-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-listing-readmore {
    font-weight: 700;
    color: #2196f3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.blog-listing-readmore:hover {
    color: #041a35;
}

.blog-listing-readmore i {
    transition: transform 0.3s ease;
}

.blog-listing-readmore:hover i {
    transform: translateX(4px);
}

/* Blog Details Page */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.blog-featured-img img {
    transition: transform 0.6s ease;
}
.blog-featured-img:hover img {
    transform: scale(1.03);
}

.blog-content-body h1,
.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4,
.blog-content-body h5,
.blog-content-body h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-body p {
    margin-bottom: 1.5rem;
}

.blog-content-body ul,
.blog-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content-body li {
    margin-bottom: 0.5rem;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-content-body blockquote {
    border-left: 5px solid var(--primary-color);
    background-color: rgba(6, 43, 137, 0.03);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #555;
    border-radius: 0 10px 10px 0;
}

/* Social Share Buttons */
.social-share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn.fb {
    background-color: #3b5998;
}
.social-share-btn.tw {
    background-color: #00acee;
}
.social-share-btn.in {
    background-color: #0072b1;
}
.social-share-btn.wa {
    background-color: #25d366;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

/* ============================================================
   CERTIFICATE MODERN CARD SECTION
   ============================================================ */
.cert-modern-section {
    background-color: #fbfcff; /* Matches the site's light cool background */
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cert-modern-card {
    background: linear-gradient(
        135deg,
        #041a35 0%,
        #062b89 100%
    ); /* Navy to deep blue gradient */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(4, 26, 53, 0.15);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(4, 26, 53, 0.25);
}

.cert-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Aspect ratio 4:3 */
    background-color: rgba(
        255,
        255,
        255,
        0.03
    ); /* very subtle light background behind image */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.cert-modern-card:hover .cert-image {
    transform: translate(-50%, -50%) scale(1.05);
}

.cert-title-layer {
    padding: 30px;
    text-align: center;
    background: rgba(4, 26, 53, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-title-text {
    color: #38e9bb; /* Cyan accent color */
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .cert-title-text {
        font-size: 1.25rem;
    }
}

/* ============================================================
   BROCHURE HUB SECTION
   ============================================================ */
.brochure-hub-section {
    background-color: #f8f9fa; /* Matches standard light backgrounds */
    min-height: 60vh;
}

.brochure-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(4, 26, 53, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.brochure-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 26, 53, 0.12);
    border-color: rgba(56, 233, 187, 0.3); /* Cyan accent */
}

.brochure-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #041a35 0%, #062b89 100%);
    color: #38e9bb; /* Cyan accent */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.25rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(4, 26, 53, 0.15);
    transition: transform 0.4s ease;
}

.brochure-card-modern:hover .brochure-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.brochure-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.brochure-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 25px;
    line-height: 1.4;
    flex-grow: 1;
}

.btn-brochure-download {
    background-color: #f4f7fb;
    color: #041a35;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.btn-brochure-download:hover {
    background-color: #041a35;
    color: #38e9bb; /* Cyan on dark bg */
    border-color: #041a35;
    box-shadow: 0 5px 15px rgba(4, 26, 53, 0.2);
    transform: translateY(-2px);
}

.btn-brochure-download i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-brochure-download:hover i {
    transform: translateY(2px);
}

#btn-cover {
    left: -43px;
    transform: rotate(-90deg);
    z-index: 999;
}

#floating-btn {
    /* transform: rotate(-90deg); */
    background-color: #ff4137;
}

/* Floating Icons */
.float-icon-container {
    position: fixed;
    right: 10px;
    bottom: 10%; /* Center vertically or adjust as needed */
    transform: translateY(50%);
    z-index: 1050;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.emergency-btn {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    animation: pulse-red 2s infinite;
}

.whatsapp-float-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Tooltip on Hover */
.float-tooltip {
    position: absolute;
    right: 60px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================================
   CUSTOMIZED QUOTE MODAL CSS
   ============================================================ */
.custom-quote-content {
    background-color: #e9e8e8;
    border-radius: 12px;
    position: relative;
    padding: 30px 40px 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.custom-quote-body {
    padding: 0;
}

.quote-title {
    font-size: 2rem;
    font-weight: 500;
    color: #000;
}

.btn-close-custom {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-close-custom:hover {
    background-color: #333;
}

.btn-close-custom i {
    font-size: 1.25rem;
}

.quote-input,
.quote-textarea {
    border: 1px solid #999;
    color: #333;
    padding: 12px 15px;
    font-size: 1rem;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s;
}

.quote-input:focus,
.quote-textarea:focus {
    border-color: #006dae;
    outline: none;
    box-shadow: none;
}

.quote-textarea {
    resize: vertical;
}

.quote-input::placeholder,
.quote-textarea::placeholder {
    color: #6c757d;
}

.btn-quote-send {
    background-color: #005689;
    color: #fff !important;
    border: none;
    padding: 12px;
    transition: background-color 0.2s;
}

.btn-quote-send:hover {
    background-color: #00426b;
}

@media (max-width: 767.98px) {
    .custom-quote-content {
        padding: 20px;
    }
    .quote-title {
        font-size: 1.5rem;
    }
}

/* ============================================================
   PARTNERSHIP PAGE CSS
   ============================================================ */

.partnership-intro {
    padding: 100px 0;
    background-color: #ffffff;
}

.partner-kicker {
    display: inline-block;
    background-color: rgba(56, 233, 187, 0.15); /* Light cyan */
    color: #0b3128;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.partner-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #041a35; /* Navy */
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.partner-text {
    font-size: 1.1rem;
    color: #5c6b81;
    line-height: 1.7;
    margin-bottom: 30px;
}

.partner-benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.partner-benefits-list li {
    font-size: 1.05rem;
    color: #041a35;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.partner-benefits-list li i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.partner-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
}

.partner-why-us {
    padding: 90px 0;
    background-color: #f8f9fc;
}

.why-kicker {
    font-size: 0.85rem;
    font-weight: 800;
    color: #8ca39f;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.why-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 15px;
}

.why-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.partner-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f2f5;
}

.partner-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.partner-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.partner-feature-card .feature-icon i {
    font-size: 1.5rem;
}

.partner-feature-card .feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 15px;
}

.partner-feature-card .feature-text {
    font-size: 1rem;
    color: #5c6b81;
    line-height: 1.6;
    margin-bottom: 0;
}

.partner-form-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom right, #f4f8fc 0%, #ffffff 100%);
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.partner-form-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(4, 26, 53, 0.08);
    border: 1px solid rgba(4, 26, 53, 0.05);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
}

.form-label {
    font-weight: 700;
    color: #041a35;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.partner-input,
.partner-textarea,
.partner-form .form-select {
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #333;
    background-color: #fbfcff;
    transition: all 0.3s ease;
}

.partner-input:focus,
.partner-textarea:focus,
.partner-form .form-select:focus {
    border-color: #38e9bb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(56, 233, 187, 0.15);
    outline: none;
}

.partner-textarea {
    resize: vertical;
}

.btn-partner-submit {
    background-color: #041a35; /* Navy */
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-partner-submit:hover {
    background-color: #0a2e5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 26, 53, 0.15);
}

@media (max-width: 767.98px) {
    .partner-form-wrapper {
        padding: 30px 20px;
    }
    .partner-title {
        font-size: 2rem;
    }
    .why-title {
        font-size: 2.2rem;
    }
}
