/* ==========================================================================
   Icon font (used for the nav caret and phone icon)
   ========================================================================== */

/* Import BPG Nino Medium & Fira GO fonts */
@import url('https://fonts.cdnfonts.com/css/bpg-nino-medium');
@import url('https://fonts.googleapis.com/css2?family=Fira+GO:wght@700;800;900&display=swap');
/* Apply globally */
body {
    font-family: 'BPG Nino Medium', 'Fira GO', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apply to all section titles and hero text */
h1, h2, h3,
.hero-title,
.why-title,
.services-title,
.why-label {
    font-family: 'BPG Nino Medium', 'Fira GO', sans-serif; !important;
    font-weight: 1000; !important
    letter-spacing: 0.1px;
}

body, p, a, span, .service-description, .step-description, .faq-question {
    font-family: 'Fira GO', 'BPG Nino Medium', sans-serif;
    font-weight: 900;
}

a {
    text-decoration: none;
}

.hero-wrap {
    position: relative;
}

/* ==========================================================================
   Navbar — transparent bar sitting on top of the hero image
   ========================================================================== */

.navbar {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 685px;
    width: auto;
    z-index: 10;
    background-color: rgba(190, 190, 190, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 0 0;
}



.nav-inner {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
    gap: 750px;
    padding: 26px 40px;
}

.btMainLogo {
    height: 58px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links li:not(:last-child)::after {
    content: "/";
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-weight: 300;
}

.nav-links li a {
    color: #d6d6d6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links li a:hover {
    color: #ffffff;
    border-bottom-color: #4aa3f5;
}

.nav-links li a.active {
    color: #ffffff;
    border-bottom-color: #4aa3f5;
}

/* Services dropdown */
.nav-links li.dropdown {
    position: relative;
    /* extends the hoverable hit-area down through the visual gap above
       the menu, so moving the mouse from the link to the menu doesn't
       briefly leave .dropdown and close it */
    padding-bottom: 26px;
    margin-bottom: -26px;
}

.nav-links li.dropdown .caret {
    display: inline-block;
    margin-left: 8px;
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 1;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links li.dropdown .caret::before {
    content: "\f107";
}

.nav-links li.dropdown:hover .caret {
    opacity: 0.6;
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    min-width: 260px;
    list-style: none;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    position: relative;
    display: block;
    padding: 14px 22px;
    color: #333333;
    font-size: 14px;
    border-bottom: 1px solid #eeeeee;
    transition: color 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #4aa3f5;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-menu li a:hover {
    color: #4aa3f5;
    border-bottom-color: transparent;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.nav-links li a:hover {
    color: #ffffff;
}

/* ==========================================================================
   Carousel / hero
   ========================================================================== */

#carouselExampleInterval {
    position: relative;
}

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(15, 15, 15, 0.55);
    pointer-events: none;
    z-index: 1;
}

.carousel-item img {
    height: 88vh;
    min-height: 620px;
    object-fit: cover;
    filter: grayscale(0.15);
}

/* Headline block, centered over the hero image */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: max-content;
    max-width: 90vw;
    text-align: center;
    padding: 0 20px;
}

.caption-frame {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 10px solid rgba(255, 255, 255, 0.35);
    z-index: 1;
    pointer-events: none;
}

.hero-caption h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 75px;
    font-weight: 600;
    letter-spacing: 0px;
    white-space: nowrap;
}

.hero-caption h1 .highlight {
    color: #4aa3f5;
}

.hero-caption .subtitle {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    color: #f0f0f0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-caption .btn-request {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 34px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-caption .btn-request:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Carousel controls — thin chevrons, no background */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    z-index: 10;
    opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.25rem;
    height: 2.25rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* ==========================================================================
   Parallax section — fixed background photo, content scrolls over it
   ========================================================================== */

.parallax-section {
    position: relative;
    overflow: hidden;
    padding: 140px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 15, 15, 0.55);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.parallax-title {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #ffffff;
}

.parallax-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e8e8e8;
    max-width: 640px;
    margin: 0 auto;
}
/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #3c9ed1;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #4aa3f5;
    margin: 20px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
    column-gap: 5px;
}

.service-card {
    padding: 0 5px;
    text-align: center;
}

.service-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.service-icon svg,
.service-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    transition: filter 0.2s ease;
}

.service-icon:hover svg,
.service-icon:hover img {
    filter: invert(53%) sepia(84%) saturate(1002%) hue-rotate(178deg) brightness(101%) contrast(93%);
}

.service-icon img.icon-sm {
    width: 150px;
    height: 150px;
}

.service-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.service-description {
    font-size: 17px;
    color: #666666;
    line-height: 1.3;
    max-width: 320px;
    margin: 0 auto;
}

.dot-pattern {
    height: 70px;
    margin-top: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Cpath d='M13 9v8M9 13h8' stroke='%23d9d9d9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
}

/* ==========================================================================
   Why Solvery Section
   ========================================================================== */

.why-section {
    padding: 60px 0 50px; /* Normal vertical section padding */
    background-color: #ffffff;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    background-position: top;
    background-repeat: repeat-x;
    background-attachment: local;
}

.why-title .highlight {
    color: #4aa3f5;
}

.why-title{
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 36px; /* Normal vertical title spacing */
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px; /* Normal vertical gap between rows */
    column-gap: 20px; /* Tight horizontal gap between columns */
    max-width: 850px; /* Narrowed width to pull columns horizontally closer */
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 24px 10px; /* Full vertical padding, tight horizontal padding */
    border-radius: 8px;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 10px; /* Normal vertical space below icon */
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease;
}

.why-item:hover .why-icon {
    color: #4aa3f5;
}

.why-icon-img {
    display: inline-block;
    width: 90px;
    height: 90px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 75px;
    mask-size: 75px;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
}

.why-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.why-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-item:hover .why-label {
    color: #4aa3f5;
}

/* ==========================================================================
   Service Steps Section
   ========================================================================== */

.steps-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    background-position: bottom;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 20px;
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 2px solid #4aa3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.step-icon:hover {
    background-color: #4aa3f5;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(74, 163, 245, 0.4);
}

.step-icon-img {
    display: inline-block;
    width: 68px;
    height: 68px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.step-description {
    font-size: 13px;
    color: #4aa3f5;
    margin: 0;
}

/* ==========================================================================
   Bottom contact strip
   ========================================================================== */

.contact-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    z-index: 15;
}

.contact-inner {
    background-color: rgba(35, 35, 35, 0.95);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-inner .question {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: 480px;
}

.contact-inner .contact-info {
    text-align: right;
}

.contact-inner .contact-info .availability {
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.5;
    margin: 0 0 6px;
}

.contact-inner .contact-info .phone {
    font-size: 26px;
    font-weight: 700;
    color: #3c9fd0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-inner .contact-info .phone .icon {
    font-family: 'FontAwesome';
    color: #4aa3f5;
    font-size: 20px;
    display: inline-block;
}

.contact-inner .contact-info .phone .icon::before {
    content: "\f095";
}

/* ==========================================================================
   FAQ Section — photo background, accordion on the left
   ========================================================================== */

.faq-section {
    position: relative;
    overflow: hidden;
    background-color: #4a5568;
    padding: 90px 20px;
}

.parallax-bg {
    position: absolute;
    top: -35%;
    left: 0;
    right: 0;
    height: 170%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.faq-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 25, 0.55) 0%, rgba(10, 15, 25, 0.25) 55%, rgba(10, 15, 25, 0.1) 75%);
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px;
}

.faq-title span {
    color: #4aa3f5;
}

.accordion {
    max-width: 620px;
}

.faq-item {
    margin-bottom: 4px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #0d1117;
    border-left: 5px solid #4aa3f5;
    color: #8fc4f5;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #161b22;
}

.faq-question:not(.collapsed) {
    background-color: #ffffff;
    color: #1a1a1a;
}

.faq-icon {
    flex: 0 0 auto;
    color: #4aa3f5;
    font-size: 18px;
    font-weight: 700;
}

.faq-answer {
    background-color: #ffffff;
    border-left: 5px solid #4aa3f5;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.8;
    padding: 4px 24px 22px;
}

/* ==========================================================================
   Contact info strip — below the FAQ section
   ========================================================================== */

.contact-info-strip {
    position: relative;
    background-color: #ffffff;
    padding: 40px 0;
}

.contact-info-strip::before,
.contact-info-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1.2px, transparent 1.2px);
    background-size: 10px 6px;
}

.contact-info-strip::before {
    top: 0;
}

.contact-info-strip::after {
    bottom: 0;
}

.contact-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-inner .contact-info-block {
    flex: 1 1 0;
    justify-content: center;
}

.contact-info-divider {
    width: 1px;
    align-self: stretch;
    background-color: #e5e5e5;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.contact-info-value {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.contact-info-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #4aa3f5;
    transition: color 0.2s ease;
}

.contact-info-phone:hover {
    color: #1a1a1a;
}

.contact-info-phone .icon {
    font-family: 'FontAwesome';
    color: #4aa3f5;
    font-size: 18px;
}

.contact-info-phone .icon::before {
    content: "\f095";
}

.contact-info-icon {
    color: #4aa3f5;
    flex: 0 0 auto;
}

.contact-info-block.hours {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .hero-caption h1 {
        font-size: 32px;
        white-space: normal;
    }

    .caption-box {
        padding: 18px 30px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 18px 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-caption h1 {
        font-size: 24px;
    }

    .contact-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-inner .contact-info {
        text-align: left;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .faq-question span:first-child {
        font-size: 14px;
    }

    .contact-info-inner {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-divider {
        display: none;
    }
     /* Isolated Phone Icon Fix */
.phone i,
.contact-info-phone i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: #4aa3f5 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px;
    background: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}
}