
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Martian+Mono:wght@300&family=Monsieur+La+Doulaise&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:wght@300&family=Ubuntu:wght@700&display=swap');

:root {
    --brand-navy: #08172e;
    --brand-blue: #0d6efd;
    --brand-red: #dc3545;
    --brand-surface: #f4f7fb;
    --brand-text: #142033;
}

body {
    background-image: url('https://www.toptal.com/designers/subtlepatterns/patterns/symphony.png');
    background-repeat: repeat;
    background-color: #f9f9f9;
    color: var(--brand-text);
    font-family: "Open Sans", sans-serif;
}

.bg-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}


.stylish-logo {
    font-size: 2rem; /* Larger text */
    font-weight: 800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .stylish-logo .biz-blue {
    color: #007bff;
  }

  .stylish-logo .biz-red {
    color: #dc3545;
  }
       .navbar {
            background: white!important;
        }
        .navbar-brand {
            font-weight: bold;
            color: #FF3C3C !important;
        }
        .nav-link {
            color: rgb(9, 9, 9) !important;
            font-weight: 500;
        }
        .dropdown-menu {
            border: none;
            box-shadow: 0px 4px 6px rgba(245, 243, 243, 0.1);
        }
        .contact-btn {
            background: #FF3C3C;
            color: white;
            border-radius: 20px;
            padding: 5px 15px;
        }
        .contact-btn:hover {
            background: #e63232;
            color: white;
        }
        .navbar-nav .nav-item {
            margin-right:20px;/* Adds spacing between navbar items */
        }
        .navbar-brand img {
            height:100px;
        }
        .hero-section {
            background: linear-gradient(to right, #f8f9fa, #ffffff);
            padding: 50px 0;
        }
        .hero-text h1 {
            font-weight: bold;
        }
        .hero-text .highlight {
            color: #007bff;
        }
        .hero-text .highlight-red {
            color: #dc3545;
        }
	        .hero-image img {
	            max-width: 100%;
	            border-radius: 10px;
	        }
            .btn-custom {
                background: var(--brand-navy);
                border: 1px solid var(--brand-navy);
                color: white;
                border-radius: 999px;
                padding: 0.85rem 1.4rem;
                font-weight: 700;
                transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
            }
            .btn-custom:hover {
                background: #0f274c;
                border-color: #0f274c;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 10px 24px rgba(8, 23, 46, 0.18);
            }
	        .service-card {
	            border: none;
	            border-radius: 15px;
	            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: linear-gradient(135deg, #acd4f7, #efc5c7);
            color: rgb(13, 13, 13);
            cursor: pointer;
            height: 100%;
          }
        
          .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          }
        
          .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: rgb(21, 20, 20);
          }
        
          .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
          }
        
          .service-desc {
            font-size: 0.95rem;
          }
        
          .quote-box {
            border-radius: 15px;
            background: linear-gradient(135deg, #acd4f7, #efc5c7);
            color: #333;
            text-align: center;
            padding: 30px 20px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          }
        
          .quote-box i {
            font-size: 2rem;
            color: #007bff;
            margin-bottom: 15px;
          }
        .about-section {
            padding: 50px 0;
        }
        .about-section img {
            max-width: 100%;
            border-radius: 10px;
        }
        .icon-box i {
            transition: transform 0.3s ease-in-out;
        }
        .card:hover .icon-box i {
            transform: scale(1.2);
        }
        .blog-item {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
        }
        .blog-item:hover {
            transform: translateY(-5px);
        }
        .blog-img {
            width: 100%;
            max-width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }
        .blog-content {
            flex: 1;
            text-align: center;
        }
        .read-more {
            color: #007bff;
            font-weight: bold;
            text-decoration: none;
        }
        .read-more:hover {
            text-decoration: underline;
        }
    
        @media (min-width: 768px) {
            .blog-item {
                flex-direction: row;
                text-align: left;
                border-radius: 10px;
            }
            .blog-img {
                border-radius: 10px 0 0 10px;
            }
        }
        .contact-info, .contact-form {
            background: #f8f9fa;
        }
        .contact-form input, .contact-form textarea {
            border-radius: 8px;
        }
        .contact-form button {
            border-radius: 8px;
            transition: 0.3s ease-in-out;
        }
        .contact-form button:hover {
            background-color: #0056b3;
        }
        .list-unstyled i {
            margin-right: 10px;
        }
        .testimonial {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            max-width: 600px;
            margin: auto;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .carousel-control-prev, .carousel-control-next {
            filter: invert(100%);
        }
        footer {
            position: relative;
        }
    
        #scrollTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
            padding: 10px 15px;
            font-size: 20px;
            border-radius: 50%;
            box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
        }
    
	        .social-icons a {
	            margin-right: 5px;
	            color: white;
	        }
            .footer-quick-links a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-width: 38px;
            }
	    
	        .bi {
	            margin-right: 5px;
	        }
        .faq-section {
            background-color: #f8f9fa;
            padding: 50px 0;
        }
        .faq-header {
            text-align: center;
            font-weight: bold;
        }
        .faq-icon {
            margin-right: 8px;
        }
        .accordion-button {
            font-weight: bold;
        }

        /*testmonial*/
        .scrolling-wrapper {
            display: flex;
            overflow: hidden;
            position: relative;
        }
    
        .scrolling-track {
            display: flex;
            animation: scroll-left 30s linear infinite;
        }
    
        .testimonial {
            flex: 0 0 auto;
            width: 400px;
            margin-right: 30px;
        }
    
        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }


        @media (max-width: 576px) {
            .carousel-caption h1 {
              font-size: 1.5rem;
            }
            .carousel-caption p {
              font-size: 0.9rem;
            }
          }
	          .custom-curved-image {
	            width: 80%;
	            height: auto;
	           
	          }

.section-kicker {
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 1rem auto 0;
    max-width: 820px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 1.6rem;
}

.hero-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.hero-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 600;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
}

.hero-chip i {
    color: #8dd8ff;
}

.carousel-slide-title {
    color: white;
    font-size: clamp(1.45rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

.trust-strip {
    margin-top: -2.5rem;
    position: relative;
    z-index: 3;
}

.trust-card,
.process-card,
.service-highlight-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 23, 46, 0.08);
    border-radius: 1.2rem;
    box-shadow: 0 16px 40px rgba(8, 23, 46, 0.08);
    height: 100%;
    padding: 1.4rem;
}

.trust-card h3,
.process-card h3,
.service-highlight-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.trust-card p,
.process-card p,
.service-highlight-card p {
    color: #5c6b82;
    margin-bottom: 0;
}

.trust-card .icon-wrap,
.process-card .icon-wrap,
.service-highlight-card .icon-wrap {
    align-items: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 0.9rem;
    color: var(--brand-blue);
    display: inline-flex;
    font-size: 1.15rem;
    height: 2.9rem;
    justify-content: center;
    margin-bottom: 1rem;
    width: 2.9rem;
}

.process-step {
    color: var(--brand-blue);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.contact-subtitle {
    color: #5c6b82;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 auto 1.5rem;
    max-width: 720px;
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-link {
    align-items: center;
    border: 1px solid rgba(8, 23, 46, 0.1);
    border-radius: 999px;
    color: var(--brand-text);
    display: inline-flex;
    font-weight: 700;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
    box-shadow: 0 10px 24px rgba(8, 23, 46, 0.1);
    color: var(--brand-blue);
    transform: translateY(-1px);
}

.contact-info-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-info-list .contact-link {
    justify-content: flex-start;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-badges span {
    background: rgba(8, 23, 46, 0.06);
    border-radius: 999px;
    color: var(--brand-text);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
}

.consultation-note,
.service-form-note {
    color: #5c6b82;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 0.85rem;
}

.service-quick-facts {
    margin-top: -2.25rem;
    position: relative;
    z-index: 2;
}

.service-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-link-card {
    align-items: center;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 999px;
    color: var(--brand-navy);
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
}

.service-link-card:hover {
    background: rgba(13, 110, 253, 0.14);
    color: var(--brand-blue);
}

.floating-cta-bar {
    background: rgba(8, 23, 46, 0.96);
    bottom: 0;
    display: none;
    gap: 0.75rem;
    left: 0;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 1040;
}

.floating-cta-bar a {
    align-items: center;
    border-radius: 999px;
    color: white;
    display: inline-flex;
    flex: 1 1 0;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.45rem;
    justify-content: center;
    padding: 0.8rem 1rem;
    text-decoration: none;
}

.floating-cta-bar .floating-call {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-cta-bar .floating-consult {
    background: var(--brand-red);
}

@media (max-width: 992px) {
    .trust-strip,
    .service-quick-facts {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-actions,
    .hero-chip-list,
    .contact-quick-actions {
        justify-content: flex-start;
    }

    .floating-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 5.75rem;
    }
}
          
