.main-frame-bg-cover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/bg_image.jpg');
    height: 100%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.navbar .navbar-brand .navbar-logo {
    height: 100px;
    width: auto;
}

.nicetomeetyou {
    display: flex;
    align-items: center;
    font-size: 9px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nicetomeetyou:before {
    content: '';
    width: 50px;
    height: 3px;
    margin-right: 10px;
    background-color: #fff;
}

.main-section .section-inner {
    padding: 20px 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.main-section .btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    width: 200px;
    margin: 10px 8px;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    padding: 12px 20px;
}

.main-section .btn:hover {
    color: #212529;
    background-color: #f8f9fa;
}

/* center the blockquote in the page */

.blockquote-wrapper {
    display: flex;
    max-width: 600px;
    height: 100px;
    padding: 0 10px 0 0;
    margin: 50px 0;
}

/* Blockquote main style */

.blockquote {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    padding: 10px 0;
    width: 100%;
    max-width: 500px;
    z-index: 1;
    margin: 10px 0;
    align-self: center;
    border-top: solid 1px;
    border-bottom: solid 1px;
}

/* Blockquote header */

.blockquote .content {
    font-size: 24px;
    line-height: 1;
    margin: 0;
    font-style: italic;
}

/* Blockquote right double quotes */

.blockquote:after {
    position: absolute;
    content: "”";
    color: rgba(255, 255, 255, 1);
    font-size: 60px;
    line-height: 0;
    bottom: -10px;
    right: 3px;
}

/* increase header size after 600px */

@media all and (min-width: 700px) {
    .blockquote {
        max-width: 600px;
    }
    .blockquote .content {
        font-size: 30px;
    }
}

/* Blockquote subheader */

.blockquote .author {
    position: relative;
    color: #8facca;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding-top: 10px;
    z-index: 1;
}
.message {
    font-style: italic;
    font-size: 20px;
}

/* Services Section Styling */
.subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 15px;
    opacity: 0.9;
}

/* Tech Services Section - Vertical Centering */
[data-section="techServices"] .section-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 30px;
}

.services-list {
    width: 100%;
}

.service-card {
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-card .service-box {
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-tagline {
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0;
    opacity: 0.9;
}

.service-card .btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .btn.btn-outline {
    background: transparent;
    color: #4096ee;
    border-color: #4096ee;
}

.service-card:hover .btn.btn-outline:hover,
.service-card:hover .btn.btn-outline:focus {
    background: #4096ee;
    color: #fff;
    border-color: #4096ee;
}

.service-card:hover .btn i {
    transform: translateX(5px);
}

/* Explore More Card Styling */
.explore-more {
    background-color: rgba(64, 150, 238, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.explore-more:hover {
    background-color: rgba(64, 150, 238, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.scroll-hint {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-hint i {
    font-size: 24px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Coaching Section Styling */
.coaching-card {
    max-width: 700px;
    margin: 0 auto;
}

.coaching-box {
    text-align: center;
    min-height: auto;
    padding: 50px 40px;
}

.large-icon {
    font-size: 80px !important;
}

.coaching-pillars {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pillar i {
    font-size: 32px;
}

.pillar span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Services */
@media (max-width: 991px) {
    .service-card .service-box {
        min-height: auto;
        padding: 40px 30px;
    }

    .coaching-pillars {
        gap: 20px;
    }

    .pillar {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .services-list .col-md-4 {
        margin-bottom: 20px;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .coaching-box {
        padding: 40px 20px;
    }

    .large-icon {
        font-size: 60px !important;
    }

    .coaching-pillars {
        gap: 15px;
    }

    .main-section .btn {
        width: 160px;
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* Floating Footer */
.floating-footer {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    z-index: 999;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-footer:hover {
    background: rgba(0, 0, 0, 0.85);
    color: rgba(255, 255, 255, 1);
}

.floating-footer .footer-content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.floating-footer .divider {
    opacity: 0.5;
}

.floating-footer .build-number {
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 767px) {
    .floating-footer {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        padding: 6px 12px;
    }

    .floating-footer .footer-content {
        gap: 6px;
    }
}