/* ========================================
   HOMEPAGE SPECIFIC STYLES
   Consolidated from inline styles in index.php
   ======================================== */

/* Consultation Modal */
#consultModal .modal-body::-webkit-scrollbar {
    width: 0px;
    display: none;
}

#consultModal .modal-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: #fff;
    border: none;
    border-radius: 5px !important;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    color: #6c757d;
    line-height: 1.6;
}

.accordion-button:hover {
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Remove scrollbars from Testimonial, Blog, and FAQ sections */
.testimonial-carousel,
.testimonial-carousel .owl-carousel,
.container-fluid:has(.testimonial-carousel),
.container-fluid:has(.section-title .text-uppercase:contains("Our Blog")),
.container-fluid:has(.section-title .text-uppercase:contains("FAQ")) {
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.testimonial-carousel,
.testimonial-carousel .owl-stage-outer {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.owl-carousel::-webkit-scrollbar,
.owl-carousel *::-webkit-scrollbar,
.testimonial-carousel::-webkit-scrollbar,
.testimonial-carousel *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Mobile testimonial visibility fix */
@media (max-width: 768px) {
    .testimonial-carousel,
    .owl-carousel.testimonial-carousel,
    .testimonial-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }
    .container-fluid:has(.testimonial-carousel) {
        display: block !important;
        visibility: visible !important;
    }
    .testimonial-item {
        margin: 15px 10px !important;
        background: #f8f9fa !important;
    }
    .testimonial-carousel .owl-stage-outer {
        overflow-x: visible !important;
    }
}

.container-fluid.py-5:not(.bg-dark) {
    overflow-x: visible !important;
}

.container-fluid.py-5 .container:not(.bg-dark .container) {
    overflow-x: visible !important;
}

.row.g-4 {
    overflow-x: visible !important;
}

img, video, canvas {
    overflow: hidden !important;
}

/* Disable WOW/animate scroll animations */
.wow,
[data-wow-delay],
.animate__animated,
.fadeInUp,
.fadeInLeft,
.fadeInRight,
.zoomIn {
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Consistent typography */
.about-title-block,
.about-title-block p,
.about-title-block h1 {
    text-align: left !important;
}

body {
    font-family: "Nunito", "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Rubik", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    color: #061429;
}

/* Transparent Background */
.transparent-bg {
    backdrop-filter: blur(10px);
}

/* Blog Card Styles */
.blog-card {
    transition: all 0.3s ease;
    border: 1px solid #e8e9f0;
    background: transparent;
}

.blog-card:hover {
    transform: none;
    box-shadow: none !important;
}

.blog-img-wrapper {
    overflow: hidden;
}

.blog-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: none;
}

.blog-card .btn-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-card .btn-link:hover {
    padding-left: 10px;
}

@media (max-width: 991px) {
    .blog-card h5 {
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 20px;
    }
}

/* Portfolio Overlay */
.portfolio-container .position-relative {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 250px;
    will-change: transform;
}

.portfolio-container .position-relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.portfolio-container .position-relative:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(6, 163, 218, 0.1), rgba(6, 20, 41, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    will-change: opacity;
    backface-visibility: hidden;
}

.portfolio-container .position-relative:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .btn {
    transform: translateY(-20px) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.portfolio-container .position-relative:hover .portfolio-overlay .btn {
    transform: translateY(0) translateZ(0);
}

.portfolio-overlay h5,
.portfolio-overlay p {
    transform: translateY(20px) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    will-change: transform;
}

.portfolio-container .position-relative:hover .portfolio-overlay h5,
.portfolio-container .position-relative:hover .portfolio-overlay p {
    transform: translateY(0) translateZ(0);
}

.section-title h1 {
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-title h5 {
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0582b8);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0582b8, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.3);
}

.btn-light {
    background: #fff;
    color: var(--dark);
    border: 2px solid #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 767px) {
    .portfolio-container .position-relative {
        margin-bottom: 20px;
    }
}

/* Navigation Menu - Black Text */
.navbar-dark .navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #06A3DA !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #06A3DA !important;
}

.navbar-dark .navbar-nav .dropdown-toggle {
    color: #000000 !important;
}

.navbar-dark .navbar-nav .dropdown-toggle:hover {
    color: #06A3DA !important;
}

/* Professional Slider Styles */
.container-fluid.position-relative.p-0 {
    position: relative;
}

.navbar.transparent-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider .slide.active {
    display: block;
}

.hero-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: #06A3DA;
    border-color: #06A3DA;
    transform: scale(1.2);
}

/* Slider arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(6, 163, 218, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: rgba(6, 163, 218, 1);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
    left: 30px;
}

.hero-slider-arrow.next {
    right: 30px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider-arrow {
        display: none;
    }
    .hero-slider-dots {
        bottom: 12px;
    }
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Section title centering */
@media (max-width: 991px) {
    .section-title {
        text-align: center !important;
    }
    .section-title.text-center {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        text-align: center !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .section-title h1,
    .section-title h5,
    .section-title p {
        text-align: center !important;
    }
    .section-title.text-center {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .section-title h1[style*="white-space: nowrap"] {
        white-space: normal !important;
        text-align: center !important;
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .section-title {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        margin-bottom: 10px !important;
    }
    .py-5 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .pt-3, .pt-5 {
        padding-top: 5px !important;
    }
    .mb-3, .mb-5 {
        margin-bottom: 10px !important;
    }
}

/* Comprehensive Responsive Fixes */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

.container-fluid {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    .section-title h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    .section-title h5 {
        font-size: 0.95rem !important;
    }
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    [class*="col-"] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .section-title {
        padding: 0 5px !important;
    }
    .section-title h1 {
        font-size: 1.4rem !important;
    }
}

/* Why Choose Us Cards */
.choose-card-small {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.choose-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    border-color: #06A3DA;
}

.icon-box i {
    font-size: 2rem;
}

.choose-card-small h6 {
    font-weight: 600;
    color: #061429;
}

@media (max-width: 991px) {
    .col-lg-6:last-child {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .choose-card-small {
        padding: 15px !important;
    }
    .icon-box i {
        font-size: 1.5rem;
    }
    .choose-card-small h6 {
        font-size: 0.9rem;
    }
    .choose-card-small p {
        font-size: 0.75rem;
    }
}

/* Professional Blog Card */
.professional-blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e9f0;
}

.professional-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 180px;
}

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

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

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #06A3DA;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content-wrapper {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-info {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.blog-meta-item i {
    margin-right: 5px;
    color: #06A3DA;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #06A3DA;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-footer-section {
    margin-top: auto;
}

.blog-read-more {
    color: #06A3DA;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #0582b8;
    gap: 8px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 16px;
    }
    .blog-image-container {
        height: 180px;
    }
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0 !important;
}

.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 7s linear infinite;
    width: fit-content;
    will-change: transform;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(6, 163, 218, 0.1);
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: rgba(6, 163, 218, 0.1);
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #64748b;
    margin-bottom: 20px;
    font-style: normal;
    position: relative;
    z-index: 1;
    min-height: 140px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06A3DA, #0582b8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(6, 163, 218, 0.3);
}

.client-details h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.client-details p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #06A3DA;
    font-weight: 600;
    line-height: 1.3;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}

.rating-stars i {
    margin-right: 2px;
}

@media (min-width: 1400px) {
    .testimonial-carousel-wrapper { max-width: 1400px; }
    .testimonial-card { width: 360px; min-width: 360px; max-width: 360px; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-carousel-wrapper { max-width: 1200px; }
    .testimonial-card { width: 360px; min-width: 360px; max-width: 360px; }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-carousel-wrapper { max-width: 900px; }
    .testimonial-card { width: 360px; min-width: 360px; max-width: 360px; padding: 30px; }
    .testimonial-text { font-size: 14.5px; min-height: 130px; }
}

@media (max-width: 991px) {
    .testimonial-section { padding: 50px 0 !important; }
    .testimonial-carousel-wrapper { max-width: 750px; }
    .testimonial-card { padding: 25px; width: 340px; min-width: 340px; max-width: 340px; }
    .testimonial-text { font-size: 14px; min-height: 120px; line-height: 1.7; }
    .client-avatar { width: 55px; height: 55px; font-size: 22px; }
    .client-details h5 { font-size: 16px; }
    .client-details p { font-size: 12px; }
    .quote-icon { font-size: 45px; top: 15px; right: 20px; }
    .testimonial-track { gap: 25px; }
}

@media (max-width: 767px) {
    .testimonial-section { padding: 40px 0 !important; }
    .testimonial-carousel-wrapper { padding: 15px 0; max-width: 100%; }
    .testimonial-card { width: 320px; min-width: 320px; max-width: 320px; padding: 22px; }
    .testimonial-text { font-size: 13.5px; min-height: 110px; margin-bottom: 20px; }
    .client-avatar { width: 50px; height: 50px; font-size: 20px; }
    .client-details h5 { font-size: 15px; }
    .client-details p { font-size: 11.5px; }
    .rating-stars { font-size: 13px; margin-bottom: 12px; }
    .quote-icon { font-size: 40px; top: 12px; right: 18px; }
    .testimonial-track { gap: 20px; animation: scrollTestimonials 6s linear infinite; }
}

@media (max-width: 575px) {
    .testimonial-section { padding: 35px 0 !important; }
    .testimonial-section .container { padding-left: 10px !important; padding-right: 10px !important; }
    .testimonial-section .section-title { padding: 0 10px !important; margin-bottom: 30px !important; }
    .testimonial-section .section-title h5 { font-size: 14px !important; }
    .testimonial-section .section-title h1 { font-size: 24px !important; margin-bottom: 10px !important; }
    .testimonial-section .section-title p { font-size: 13px !important; line-height: 1.5 !important; }
    .testimonial-card { width: 290px; min-width: 290px; max-width: 290px; padding: 20px; border-radius: 12px; }
    .testimonial-text { font-size: 13px; min-height: 100px; margin-bottom: 18px; line-height: 1.6; }
    .client-info { gap: 12px; }
    .client-avatar { width: 45px; height: 45px; font-size: 18px; }
    .client-details h5 { font-size: 14px; }
    .client-details p { font-size: 11px; }
    .rating-stars { font-size: 12px; margin-bottom: 10px; }
    .quote-icon { font-size: 35px; top: 10px; right: 15px; }
    .testimonial-track { gap: 18px; animation: scrollTestimonials 5s linear infinite; }
}

@media (max-width: 400px) {
    .testimonial-section { padding: 30px 0 !important; }
    .testimonial-section .section-title h1 { font-size: 22px !important; }
    .testimonial-section .section-title p { font-size: 12px !important; }
    .testimonial-card { width: 270px; min-width: 270px; max-width: 270px; padding: 18px; }
    .testimonial-text { font-size: 12.5px; min-height: 95px; margin-bottom: 15px; }
    .client-avatar { width: 42px; height: 42px; font-size: 17px; }
    .client-details h5 { font-size: 13.5px; }
    .client-details p { font-size: 10.5px; }
    .rating-stars { font-size: 11px; }
    .quote-icon { font-size: 32px; }
    .testimonial-track { gap: 15px; animation: scrollTestimonials 4s linear infinite; }
}

.testimonial-section,
.testimonial-section * {
    max-width: 100%;
}

.testimonial-carousel-wrapper {
    overflow-x: hidden !important;
}

@media (max-width: 767px) {
    .testimonial-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden;
    }
    .testimonial-section .section-title {
        padding: 0 5px;
        overflow: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track {
        animation: none;
    }
}

/* Trusted Section */
.trusted-section {
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
}

.trusted-left {
    flex: 1;
    padding-right: 20px;
}

.trusted-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin: 20px 0;
}

.trusted-title {
    font-size: 2.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #1a365d;
    line-height: 1.2;
}

.trusted-lead {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
    padding-right: 40px;
}

.trusted-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #06A3DA, #0582b8);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 26px rgba(6, 163, 218, 0.15);
    margin: 15px 0 25px;
    transition: all 0.3s ease;
}

.trusted-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 163, 218, 0.25);
}

.stats-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 10px 0;
}

.stat {
    flex: 1;
    background: rgba(255,255,255,0.9);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat .num-wrapper {
    display: block;
    margin-bottom: 8px;
}

.stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #06A3DA;
    display: inline;
}

.stat .num-plus {
    font-size: 2.2rem;
    font-weight: 800;
    color: #06A3DA;
    display: inline;
}

.stat .label {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 8px;
    font-weight: 500;
}

.trusted-card {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    transform: translateY(24px);
    opacity: 0;
    animation: floatUp .7s forwards;
    transition: all 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.trusted-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(180deg, #06A3DA, #0582b8);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.2);
}

.trusted-card h4 { margin:0 0 4px; font-size:0.95rem; color: #1a365d; font-weight: 600; }
.trusted-card p { margin:0; color: #64748b; font-size:0.8rem; line-height: 1.5; }

@keyframes floatUp { to { transform: translateY(0); opacity: 1; } }

.trusted-card:nth-child(1){ animation-delay: 0.12s; }
.trusted-card:nth-child(2){ animation-delay: 0.26s; }
.trusted-card:nth-child(3){ animation-delay: 0.40s; }
.trusted-card:nth-child(4){ animation-delay: 0.54s; }

.quote {
    margin-top:14px;
    font-style: italic;
    color: #091E3E;
    border-left:4px solid #06A3DA;
    padding-left:12px;
    background: rgba(255,255,255,0.5);
    padding: 12px;
    border-radius: 8px 8px 8px 8px;
}

@media (max-width: 992px) {
    .trusted-container { flex-direction: column; padding: 50px 20px; gap: 40px; }
    .trusted-left { width: 100%; padding-right: 0; }
    .trusted-right { width: 100%; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .trusted-title { font-size: 2rem; }
    .trusted-lead { padding-right: 0; font-size: 1rem; }
    .stats-row { gap: 15px; }
    .stat { padding: 20px 15px; }
    .stat .num { font-size: 2rem; }
}

@media (max-width: 768px) {
    .trusted-container { flex-direction: column; padding: 30px 16px; }
    .trusted-left { width: 100%; padding-right: 0; margin-bottom: 30px; }
    .trusted-right { grid-template-columns: 1fr; width: 100%; gap: 15px; }
    .trusted-title { font-size: 1.5rem; line-height: 1.3; }
    .trusted-lead { font-size: 0.95rem; }
    .stats-row { flex-direction: column; gap: 15px; }
    .stat { text-align: center; }
    .trusted-card { padding: 20px; gap: 15px; }
    .trusted-card .icon { width: 50px; height: 50px; font-size: 24px; }
    .trusted-card h4 { font-size: 1rem; }
    .trusted-card p { font-size: 0.85rem; }
}

@media (max-width: 576px) {
    .trusted-container { padding: 20px 12px; }
    .trusted-badge { font-size: 0.75rem; padding: 6px 12px; }
    .trusted-title { font-size: 1.3rem; }
    .trusted-lead { font-size: 0.9rem; }
    .stat .num { font-size: 2rem; }
    .stat .label { font-size: 0.85rem; }
    .quote { font-size: 0.9rem; padding: 10px; }
    .trusted-card { padding: 15px; }
}

/* Misc styles from commented-out sections */
.rounded-4 {
    border-radius: 20px !important;
}

.input-group-text {
    border-radius: 10px 0 0 10px !important;
}

.input-group .form-control {
    border-radius: 0 10px 10px 0 !important;
}

.form-select {
    border-radius: 10px !important;
}

textarea.form-control {
    border-radius: 10px !important;
}

.bg-white.rounded-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.4) !important;
}

.bg-white.rounded-4.shadow-sm:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.fa-chart-line:before { content: "\f201" !important; }
.fa-clock:before { content: "\f017" !important; }
.fa-headset:before { content: "\f590" !important; }
.fa-tag:before { content: "\f02b" !important; }

.bg-primary.bg-opacity-10 i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 991px) {
    .display-5 { font-size: 2rem !important; }
    .bg-white.rounded-4 { margin-bottom: 2rem; }
}

@media (max-width: 768px) {
    .display-5 { font-size: 1.75rem !important; }
    .bg-white.rounded-4 { padding: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    h5 { font-size: 1.1rem !important; }
}

@media (max-width: 576px) {
    .bg-white.rounded-4 { padding: 1.5rem !important; }
    .display-5 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #061429 0%, #0a1e3d 100%);
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    width: 80px;
    height: auto;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    color: #06A3DA;
    transform: rotate(90deg);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-link:hover,
.sidebar-menu-link.active {
    background: rgba(6, 163, 218, 0.1);
    border-left-color: #06A3DA;
    color: #06A3DA;
    padding-left: 30px;
}

.sidebar-menu-link i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-dropdown.active {
    max-height: 500px;
}

.sidebar-dropdown-link {
    display: block;
    padding: 12px 25px 12px 60px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-dropdown-link:hover {
    background: rgba(6, 163, 218, 0.1);
    color: #06A3DA;
    padding-left: 65px;
}

.sidebar-menu-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.sidebar-menu-link.has-dropdown.active::after {
    transform: rotate(180deg);
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.sidebar-consult-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #06A3DA, #0582b8);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.3);
}

.sidebar-consult-btn:hover {
    background: linear-gradient(135deg, #0582b8, #06A3DA);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.4);
    color: #fff;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background: #06A3DA;
    transform: translateY(-3px);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: none !important;
    }
}

/* Scrollbar styling for sidebar */
.mobile-sidebar::-webkit-scrollbar {
    width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: rgba(6, 163, 218, 0.5);
    border-radius: 3px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #06A3DA;
}
