/* ==========================================
   DESKTOP FIXES (all screens)
   ========================================== */

/* Typography baseline improvements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.7;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 600;
}

p {
    line-height: 1.75;
    color: var(--color-paragraph);
}

/* Consistent section spacing */
.site-heading {
    margin-bottom: 35px;
}

.site-heading .title {
    margin-bottom: 20px;
}

/* Service cards equal height */
.service-style-one-item {
    /* height: 100%; */
    display: flex;
    /* flex-direction: column; */
}

.service-style-one-item p {
    flex: 1;
}

/* Solution listing cards */
.award-style-one-item {
    transition: all 0.3s ease;
}

.award-style-one-item:hover {
    border-color: var(--color-primary);
}

/* Feature section improvements */
.team-single-area .about {
    padding-bottom: 20px;
}

.team-single-area .about h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-single-area .about p {
    font-size: 15px;
}

/* CTA section */
.cta-padding {
    padding: 50px;
    /* border-radius: 16px; */
}

.cta-padding h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* Process cards consistent height */
.service-style-one-single {
    margin-bottom: 0;
}

.service-style-one-single .service-style-one-item {
    height: 100%;
}

/* Blog cards */
.blog-style-two .thumb img {
    width: 100%;
    object-fit: cover;
}

/* Project gallery images */
.project-grid img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Button consistency */
/* .btn-style-one {
    font-size: 15px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 8px;
} */

/* Card Link - Full clickable cards */
a.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}
a.card-link:hover {
    text-decoration: none;
    color: inherit;
}
a.card-link:hover h4 {
    color: var(--color-primary);
}
a.card-link.service-style-one-item {
    /* display: flex; */
    flex-direction: column;
}
a.card-link.award-style-one-item {
    display: grid;
}
a.card-link.award-style-one-item:hover {
    border-color: var(--color-primary);
}

/* Process Icons */
.process_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    margin-bottom: 15px;
}
.process_icon i {
    font-size: 24px;
    color: #fff;
}

/* Feature Icons */
.feature-icon {
    font-size: 22px;
    color: var(--color-primary);
    margin-right: 10px;
    width: 28px;
}

/* Custom Flutter Icon */
.fa-flutter {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='12 0 400 480'%3E%3Cpath fill='%237aab42' d='M250.716 0L44.678 206.038l69.38 69.38 275.418-275.418H250.716zM250.734 191.478l-118.56 118.56 118.56 118.56h138.76l-118.56-118.56 118.56-118.56H250.734z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-icon.fa-flutter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='12 0 400 480'%3E%3Cpath fill='%237aab42' d='M250.716 0L44.678 206.038l69.38 69.38 275.418-275.418H250.716zM250.734 191.478l-118.56 118.56 118.56 118.56h138.76l-118.56-118.56 118.56-118.56H250.734z'/%3E%3C/svg%3E");
}

.process_icon .fa-flutter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='12 0 400 480'%3E%3Cpath fill='%23ffffff' d='M250.716 0L44.678 206.038l69.38 69.38 275.418-275.418H250.716zM250.734 191.478l-118.56 118.56 118.56 118.56h138.76l-118.56-118.56 118.56-118.56H250.734z'/%3E%3C/svg%3E");
}

/* Related Project Cards */
.rp-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}
.rp-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(11, 28, 45, 0.1);
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}
.rp-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--color-primary);
}
.rp-card-icon i {
    font-size: 20px;
    color: #fff;
}
.rp-card-body {
    flex: 1;
}
.rp-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    background: rgba(11, 28, 45, 0.06);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}
.rp-card-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: var(--color-heading);
    line-height: 1.3;
}
.rp-card:hover .rp-card-title {
    color: var(--color-primary);
}
.rp-card-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 28, 45, 0.06);
    transition: all 0.3s ease;
}
.rp-card-arrow i {
    font-size: 13px;
    color: var(--color-primary);
}
.rp-card:hover .rp-card-arrow {
    background: var(--color-primary);
}
.rp-card:hover .rp-card-arrow i {
    color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    color: #fff;
    text-decoration: none;
}

/* Footer improvements */
footer .f-item h4.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .f-item ul li a {
    font-size: 14px;
    line-height: 2;
}

/* Inline links in content */
.about-style-five-left-info p a,
.project-details-main-info p a {
    color: var(--color-primary);
    /* text-decoration: underline; */
    text-underline-offset: 3px;
}

.about-style-five-left-info p a:hover,
.project-details-main-info p a:hover {
    opacity: 0.8;
}


/* ==========================================
   TABLET (768px - 1024px)
   ========================================== */

@media only screen and (max-width: 1024px) {
    h1 { font-size: 34px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }

    .main-page-banner-padding {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .page-banner-padding {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .banner-one-content h1 {
        font-size: 34px;
    }

    .about-style-five-area {
        margin-top: 80px !important;
    }

    .team-single-area {
        margin-top: 50px !important;
    }

    /* Process grid: 2 cols on tablet */
    .service-style-one-single.col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .cta-padding {
        padding: 35px;
    }

    /* Industry grid */
    .project-style-one-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* ==========================================
   MOBILE (max-width: 767px)
   ========================================== */

@media only screen and (max-width: 767px) {


	.solution_arrow{
		display:none;
	}
	
	.project-details-items img {
		border-radius: 10px;
	}

	.site-heading {
		margin-bottom: 0px;
	}

	.our-work-heading {
		margin-bottom: 20px;
	}

	.mb-40{
		margin-bottom: 20px;
	}

	.site_heading_mobile{
		margin-bottom: 15px !important;
	}

	.service-style-one-items h2{
			text-align: center;
	}
		
	.feature-style-one {
		padding: 20px;
	}

    .service-style-one-items {
        padding: 0;
    }

    .card-style-one-item {
        padding: 20px;
        margin-top: 0;
    }
	
	.process-style-two-item {
        padding: 20px;
    }
	
	.testimonial-style-four-item {
    padding: 16px;
	}
	
	.blog-style-two-box {
        padding: 20px;
    }
	
	.banner-bottom-info {
        bottom: -10px;
    }

	.community-card-two {
        padding: 20px;
		width: 100%;
    }

	.mobile_bg_about{
		background-image: url(../../assets/img/shape/3.webp) !important;
	}
	
	.mobile_text_about{
		width: 100% !important;
	}		

	.project-style-one-items {
        margin-top: 20px;
    }
	
	.service-style-one-single {
        margin-top: 0;
    }
	
	.right-info b{
		font-size: 15px;
	}

	.contact-style-one-info li i {
		height: 30px;
		width: 30px;
		line-height: 30px;
		font-size: 15px;
	}
	
	.home_project a:not(.home_prj_btn){
		font-size: 24px !important;
        font-weight: 400;
	}
	
	.home_prj_title{
		margin-bottom:0;
	}
	
	.home_prj_btn{
		margin-top: 20px;
	}	
	
	ul.project-info-list ul li {
		margin-top: 0px;
	}


    /* === TYPOGRAPHY === */
    h1 {
        font-size: 32px !important;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    h3 {
        font-size: 22px !important;
        line-height: 1.25;
    }

    h4 {
        font-size: 19px !important;
        line-height: 1.3;
    }

    h5 {
        font-size: 16px !important;
    }

    body, p {
        font-size: 15px;
        line-height: 1.75;
    }

    .title {
        font-size: 28px !important;
    }

    /* === NAVIGATION === */
    .navbar .container {
        padding: 0 15px;
    }

    .navbar-brand img.logo {
        max-height: 50px;
    }

    .navbar-toggle {
        padding: 8px 12px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .navbar-toggle .fa-bars {
        font-size: 24px;
    }

    /* Mobile side menu - Cheval-inspired animated overlay */
    .navbar-collapse {
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    .navbar-collapse.collapse-mobile {
        background: #0b1c2d !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
    }

    .mobile_bar {
        padding: 15px 20px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile_bar img {
        max-height: 40px;
    }

    .mobile_bar .navbar-toggle {
        margin: 0;
        padding: 5px;
    }

    .navbar-collapse .nav {
        padding: 30px 15px !important;
    }

    /* Menu links: green accent, animated stagger */
    .navbar-collapse .nav > li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navbar-collapse.show .nav > li {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-collapse.show .nav > li:nth-child(1) { transition-delay: 0.08s; }
    .navbar-collapse.show .nav > li:nth-child(2) { transition-delay: 0.14s; }
    .navbar-collapse.show .nav > li:nth-child(3) { transition-delay: 0.20s; }
    .navbar-collapse.show .nav > li:nth-child(4) { transition-delay: 0.26s; }
    .navbar-collapse.show .nav > li:nth-child(5) { transition-delay: 0.32s; }
    .navbar-collapse.show .nav > li:nth-child(6) { transition-delay: 0.38s; }
    .navbar-collapse.show .nav > li:nth-child(7) { transition-delay: 0.44s; }

    .navbar-collapse .nav > li > a {
        font-size: 22px !important;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        padding: 16px 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--color-accent-green) !important;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .navbar-collapse .nav > li > a:hover,
    .navbar-collapse .nav > li > a:focus {
        color: #fff !important;
        padding-left: 28px !important;
    }

    .navbar-collapse .nav > li:last-child > a {
        border-bottom: none;
    }

    .navbar-collapse .dropdown-menu {
        /* background: rgba(255,255,255,0.04) !important; */
        border-radius: 8px;
        margin: 0 10px;
        padding: 5px 0 !important;
        border: none !important;
    }

    .navbar-collapse .dropdown-menu li a {
        font-size: 17px !important;
        font-weight: 500;
        padding: 12px 25px !important;
        border-bottom: none !important;
        color: #7aab42d6 !important;
        text-transform: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .navbar-collapse .dropdown-menu li a:hover {
        color: var(--color-accent-green) !important;
        /* padding-left: 32px !important; */
    }

    /* Close button glow on hover */
    .mobile_bar .navbar-toggle img {
        transition: transform 0.3s ease;
    }

    .mobile_bar .navbar-toggle:hover img {
        transform: rotate(90deg);
    }

    /* Get Quote button in mobile */
    .attr-nav {
        display: none;
    }

    /* === BANNERS === */
    .main-page-banner-padding {
        padding-top: 165px;
        padding-bottom: 40px;
    }

    .page-banner-padding {
        padding-top: 165px;
        padding-bottom: 35px;
    }

    .banner-one-content h4 {
        font-size: 14px !important;
        padding: 10px 18px;
    }

    .banner-one-content h1 {
        font-size: 30px !important;
        margin-bottom: 14px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .banner-one-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .banner-one-content .button {
        margin-top: 20px !important;
    }

    .banner-one-content .btn-style-one {
        font-size: 13px;
        padding: 10px;
    }

    /* Service detail page banner */
    .page-banner-padding h1 {
        font-size: 24px !important;
        margin-bottom: 10px;
    }

    .page-banner-padding p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* === SECTIONS SPACING === */
    .about-style-five-area {
        margin-top: 0px !important;
    }

    .team-single-area {
        margin-top: 30px !important;
    }

    .services-style-one-area.mt-80 {
        margin-top: 30px !important;
    }
	
    .mb-30 {
		margin-bottom: 0px;
	}

	.mt-140 {
        margin-top: 40px !important;
    }

    .mt-120 {
        margin-top: 0px !important;
    }

    .mt-80 {
        margin-top: 30px !important;
    }

    .mb-80 {
        margin-bottom: 30px !important;
    }

    .mt-60 {
        margin-top: 20px !important;
    }

    .mb-60 {
        margin-bottom: 60px !important;
    }

	.pt-xs-70 {
        padding-top: 40px;
    }
	
	.pt-40 {
		padding-top: 20px !important;
	}

    .pt-60 {
        padding-top: 20px !important;
    }

	.pb-40 {
		padding-bottom: 0px;
	}

    .pb-60 {
        padding-bottom: 20px !important;
    }

    .pt-80 {
        padding-top: 40px !important;
    }
	
	.mb-40 {
		margin-bottom: 40px;
	}

	.mb-50 {
		margin-bottom: 20px;
	}

    /* Container padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* === HOMEPAGE === */
    .feature-style-one-left-info .content {
        padding-right: 0;
    }

    .feature-style-one .feature-style-one-item {
        padding: 20px;
    }

    /* Stats/Counter section */
    .fun-factor-style-three-area .fun-fact .counter {
        font-size: 32px;
    }

    /* Tech stack section */
    .api-intigration-items {
        padding: 20px !important;
        margin-bottom: 15px;
    }

    .api-list-items ul li img {
        height: 32px;
    }

    /* Solutions section on homepage */
    .api-intigration-items h3 {
        font-size: 20px !important;
    }

    /* === SERVICE CARDS === */
    .service-style-one-item {
        padding: 16px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .service-style-one-item img {
        /* height: 38px; */
        margin-bottom: 15px;
    }

    .service-style-one-item h4 {
        font-size: 17px !important;
    }

    .service-style-one-item p {
        font-size: 15px;
    }

    /* === PROCESS STEPS === */
    .process_icon {
        width: 48px;
        height: 48px;
    }

    .process_icon i {
        font-size: 20px;
    }

    .process_number h3 {
        font-size: 24px !important;
    }

    /* Process grid: 1 col on mobile */
    .service-style-one-single.col-lg-4,
    .service-style-one-single.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* === FEATURE SECTION === */
    .team-single-items .col-lg-5,
    .team-single-items .col-lg-7 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .team-single-area .about h3 {
        font-size: 17px !important;
    }

    .team-single-area .about p {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 18px;
        margin-right: 8px;
        width: 24px;
    }

    /* === CTA SECTION === */
    .cta-padding {
        padding: 25px 20px;
    }

    .cta-padding h3 {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    .cta-padding p {
        font-size: 15px;
    }

    /* === SOLUTIONS LISTING === */
    .award-style-one-item {
        /* padding: 20px; */
        gap: 15px;
    }

    .award-style-one-items {
        /* padding: 20px; */
        gap: 15px;
    }
	
	.card-link + .card-link {
		margin-left: 0;
	}

    .award-style-one-item .logo img {
        height: 40px;
    }

    .award-style-one-item h4 {
        font-size: 17px !important;
    }

    .award-style-one-item p {
        font-size: 15px;
    }

    .solution-one-meta ul li {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* === ABOUT PAGE === */
    .banner-style-six-area {
        padding-top: 165px;
        padding-bottom: 10px;
    }

    .banner-style-six-area h1 {
        font-size: 24px !important;
    }

    /* Advantages section */
    .feature-style-one-left-info {
        margin-bottom: 20px;
    }

    /* Industry grid */
    .project-style-one-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .project-style-one-item .thumb img {
        width: 100%;
        height: 180px;
    }

    .project-style-one-item h3 {
        font-size: 18px !important;
    }

    /* === PROJECTS PAGE === */
    .project-details-items {
        padding-top: 80px;
        margin-bottom: 20px !important;
    }


    .project-details-main-info h2 {
        font-size: 22px !important;
        margin-bottom: 10px;
    }

    .project-details-main-info p {
        font-size: 15px;
    }

    .project-info-list .list-style-two li {
        font-size: 15px;
    }

    /* Project gallery */
    .project-grid.col-lg-4,
    .project-grid.col-lg-6,
    .project-grid.col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* === BLOG === */
    .blog-area {
        padding-top: 100px !important;
    }

    .blog-area h1 {
        font-size: 22px !important;
    }

    .blog-style-two .info h4 {
        font-size: 16px !important;
    }

    /* === CONTACT PAGE === */
    .contact-form-card {
        padding: 20px !important;
    }

    .contact-form .form-control {
        font-size: 14px;
        padding: 12px 15px;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    /* Contact info */
    .contact-style-one-info h3 {
        font-size: 20px !important;
    }

    /* === TESTIMONIALS === */
    .swiper-slide p {
        font-size: 15px;
    }

    .testimonial-style-one .provider h4 {
        font-size: 16px !important;
    }

    /* === RELATED SECTIONS === */
    .rp-card {
        padding: 16px;
        gap: 12px;
    }

    .rp-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
    }

    .rp-card-icon i {
        font-size: 18px;
    }

    .rp-card-title {
        font-size: 15px !important;
    }

    .rp-card-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .rp-card-label {
        font-size: 11px;
        padding: 2px 8px;
    }

    /* Related projects section */
    .default-home-padding {
        padding-top: 200px !important;
        /* padding-bottom: 30px !important; */
		height: 110vh;
    }

    .default-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .blog-style-two .thumb img {
        border-radius: 10px;
		margin-bottom: 20px;
    }

    /* === FOOTER === */
    footer .f-items {
        padding-top: 40px !important;
    }

    footer .col-xl-5,
    footer .col-xl-6 {
        /* margin-bottom: 20px; */
    }

    footer .f-item h4.widget-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    footer .f-item p {
        font-size: 16px;
    }

    footer .f-item ul li a {
        font-size: 13px;
        line-height: 1.8;
    }

    footer .f-item.contact h4 a {
        font-size: 16px !important;
    }

    .footer-style-one-items {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-style-one-items .f-item {
        flex: 0 0 45%;
    }

    /* Footer bottom bar */
    .footer-bottom .col-lg-6 {
        text-align: center;
        margin-bottom: 10px;
    }

    /* === WHATSAPP BUTTON === */
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    /* === MISC === */
    /* Remove excess left padding on mobile */
    .pl-60 {
        padding-left: 15px !important;
    }

    .pr-50 {
        padding-right: 15px !important;
    }

    .offset-xl-1 {
        margin-left: 0;
    }

    /* List style */
    .list-style-two li {
        font-size: 14px;
        /* padding: 6px 0; */
    }

    /* Buttons */
    .btn-style-one {
        font-size: 14px;
        padding: 12px 22px;
    }

    .btn.mt-10 {
        margin-top: 15px !important;
    }

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

    /* Scrollbar hide on mobile */
    .navbar-collapse::-webkit-scrollbar {
        width: 0;
    }

    /* About page bullets on mobile */
    .about-style-five-left-info .list-style-two {
        margin-top: 15px;
    }

    .about-style-five-left-info .list-style-two li {
        font-size: 15px;
    }

    /* Blog article page */
    .blog-area.blog-grid {
        padding-top: 90px !important;
    }

    /* Client slider */
    .client-slider img {
        max-height: 40px;
    }
}


/* ==========================================
   SMALL MOBILE (max-width: 480px)
   ========================================== */

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .title {
        font-size: 24px !important;
    }

    .banner-one-content h1 {
        font-size: 25px !important;
    }

    .banner-one-content h4 {
        font-size: 16px !important;
    }

    .banner-one-content p {
        font-size: 15px;
    }

    .navbar-collapse .nav > li > a {
        font-size: 20px !important;
        padding: 14px 20px !important;
    }

    .navbar-collapse .dropdown-menu li a {
        font-size: 18px !important;
        padding: 7px 0 !important;
    }

    /* CTA */
    .cta-padding {
        padding: 10px 0;
		border-radius: 0;
		margin: 20px 0;
    }

    /* Footer 1 column on very small screens */
    .footer-style-one-items .f-item {
        flex: 0 0 100%;
    }

    /* Related cards stack fully */
    .rp-card {
        padding: 14px;
    }

    .rp-card-title {
        font-size: 14px !important;
    }

    /* Project detail */
    .project-details-main-info h2 {
        font-size: 20px !important;
    }
}




/* ==========================================
   ORANGE ACCENT COLOR SYSTEM
   ========================================== */

/* Primary CTA Buttons (orange) */
.banner-one-content .btn-style-one:after,
.banner-area .button .btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}

/* Navbar Get Quote Button (orange) */
.attr-nav .btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}
@media (min-width: 1024px) {
    .navbar.white.no-background .attr-nav .btn-style-one:after {
        background: var(--color-accent-green) !important;
    }
    .navbar.white.no-background .attr-nav .btn-style-one {
        color: #fff !important;
    }
    .navbar.white.no-background .attr-nav .btn-style-one:hover {
        color: #fff !important;
    }
}

/* CTA Section Buttons (orange) */
.cta-padding .btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}

/* "Start a Similar Project" button (orange) */
.services-style-one-area.bg-gray .btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}

/* Service Card Hover (orange accent) */
a.card-link.service-style-one-item:hover {
    border-color: var(--color-accent-green) !important;
}
a.card-link:hover h4 {
    color: var(--color-accent-green) !important;
}

/* Solution Card Hover (orange accent) */
a.card-link.award-style-one-item:hover {
    border-color: var(--color-accent-green) !important;
}

/* RP Card Hover (orange accents) */
.rp-card:hover {
    border-color: var(--color-accent-green) !important;
}
.rp-card:hover .rp-card-title {
    color: var(--color-accent-green) !important;
}
.rp-card:hover .rp-card-arrow {
    background: var(--color-accent-green) !important;
}

/* Inline Content Links (orange) */
.about-style-five-left-info p a,
.project-details-main-info p a,
.team-single-area .about p a {
    color: var(--color-accent-green) !important;
}
.about-style-five-left-info p a:hover,
.project-details-main-info p a:hover,
.team-single-area .about p a:hover {
    color: #d97a0d !important;
}

/* Blog Tag Hover */
.blog-area .blog-style-two .info a:hover {
    color: var(--color-accent-green);
}

/* Feature Icon Accent */
.feature-icon {
    color: var(--color-accent-green) !important;
}

/* Contact Form Submit Button (orange) */
.contact-form .btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}

/* Service/Solution Detail Page CTA (orange) */
.btn3.btn-style-one:after {
    background-color: var(--color-accent-green) !important;
    background-image: none !important;
}
.btn3.btn-style-one {
    color: #fff !important;
    border-color: var(--color-accent-green) !important;
}

/* Project Tags */
.solution-one-meta ul li {
    border-color: rgba(247, 147, 30, 0.3);
    color: var(--color-accent-green);
}

/* Scrollbar Accent */
::-webkit-scrollbar-thumb {
    background: var(--color-accent-green);
    border-radius: 4px;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .navbar, footer, .whatsapp-float, .btn-style-one {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* Footer: Services full width, Company + Industries side by side on mobile */
@media only screen and (max-width: 767px) {
    .footer-style-one-items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    .footer-style-one-items .f-item.link:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .footer-style-one-items .f-item.link:nth-child(2),
    .footer-style-one-items .f-item.link:nth-child(3) {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   Lightweight: native IntersectionObserver, ~0KB cost.
   Replaces GSAP/ScrollTrigger/SplitText/Lenis (148KB removed).
   ========================================== */

/* Banner is a Swiper slider above the fold: always visible, no scroll animation */
.banner-area h4,
.banner-area h2,
.banner-area p,
.banner-area ul,
.banner-area .button,
.banner-area .thumb {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Split-text line wrapper still needs to be a block element */
.split-text .line {
    display: block !important;
}

/*
 * REVEAL ELEMENTS - hidden initial state.
 * JS adds .is-visible when the element scrolls into view.
 * Existing markup classes are wired in so PHP templates need no changes.
 */
.js .fade-up-anim,
.js .transform-animation-item,
.js .text-transform-up,
.js .scroll-top-item,
.js .reveal,
.js .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .split-text-right,
.js .split-text-in-right,
.js .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .img-reveal,
.js .reveal-zoom {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Visible state: applied by JS when element enters viewport */
.fade-up-anim.is-visible,
.transform-animation-item.is-visible,
.text-transform-up.is-visible,
.scroll-top-item.is-visible,
.split-text-right.is-visible,
.split-text-in-right.is-visible,
.img-reveal.is-visible,
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Clean up after animation finishes (free GPU memory) */
.is-visible {
    will-change: auto;
}

/*
 * Stagger helpers - add data-delay="100" through data-delay="600"
 * to children of a grid/row to cascade their reveal.
 * Example: <div class="fade-up-anim" data-delay="200">
 */

/*
 * Accessibility: respect prefers-reduced-motion.
 * Users who request reduced motion see content instantly with no movement.
 */
@media (prefers-reduced-motion: reduce) {
    .fade-up-anim,
    .transform-animation-item,
    .text-transform-up,
    .scroll-top-item,
    .split-text-right,
    .split-text-in-right,
    .img-reveal,
    .reveal,
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-zoom {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.navbar-collapse .nav > li.dropdown > a::before {
    display: none !important;
}
.navbar-collapse .nav > li.dropdown > a::after {
    display: none !important;
}

@media (min-width: 1024px) {
    nav.navbar.validnavs ul.nav > li > a:hover {
        color: var(--color-accent-green) !important;
    }
    nav.navbar.validnavs ul.nav > li.dropdown.on > a {
        color: var(--color-accent-green) !important;
    }
}

/* Hero pills + footer-CTA links: 2 per row on mobile */
@media (max-width: 767px) {
    .home-hero-points,
    .home-internal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .home-hero-points span,
    .home-internal-links a {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        text-align: center;
        margin: 0;
		font-size: 11px;
        padding: 8px;
        font-weight: 400;
    }
}

/* Default: show desktop, hide mobile */
.client_mobile {
    display: none;
}

.client_desktop {
    display: block;
}

/* For mobile devices */
@media (max-width: 768px) {
    .client_mobile {
        display: block;
    }

    .client_desktop {
        display: none;
    }
}

/* ==========================================
   STICKY NAVBAR WITH BLUR ON SCROLL
   - Beats validnavs.css mobile rule (`nav.navbar.validnavs { position: relative !important }`)
     by matching the same 3-class specificity with `nav.navbar.navbar-common`
   - Transparent at the top, blurred glass once user scrolls past 50px
   - Works on mobile, tablet, and desktop
   ========================================== */
nav.navbar.navbar-common,
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background-color 0.3s ease,
                backdrop-filter 0.3s ease,
                -webkit-backdrop-filter 0.3s ease,
                box-shadow 0.3s ease,
                padding 0.3s ease;
}

/* At top of the page: fully transparent, no blur */
nav.navbar.navbar-common:not(.sticked),
.navbar:not(.sticked) {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

/* Scrolled state: blurred glass effect */
nav.navbar.navbar-common.sticked,
.navbar.sticked {
    background: rgba(11, 28, 45, 0.7) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

/* Safari and older browser fallback */
@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
    nav.navbar.navbar-common.sticked,
    .navbar.sticked {
        background: rgba(11, 28, 45, 0.95) !important;
    }
}

/* On mobile, restore proper height and padding for the fixed nav */
@media (max-width: 1023px) {
    nav.navbar.validnavs {
        padding: 4px 0 !important;
        height: auto !important;
    }
    nav.navbar.validnavs.sticked {
        height: auto !important;
        /* padding: 8px 0 !important; */
    }
}

/* ==========================================
   CONTAIN OFF-CANVAS MOBILE MENU OVERFLOW
   The mobile menu drawer sits off-screen until opened.
   `overflow-x: clip` on <html> hides it without breaking position:fixed
   (unlike `overflow-x: hidden` on body which does break sticky).
   ========================================== */
html {
    overflow-x: clip;
}

.navbar-collapse,
.mobile_bar {
    max-width: 100vw;
}

/* ==========================================
   HIDE PERSISTENT SCROLLBAR ON MOBILE
   The custom green scrollbar styling above shows a permanent 6px bar
   on mobile webkit browsers. Hide it on touch devices, keep on desktop.
   ========================================== */
@media (max-width: 1023px) {
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
    html {
        scrollbar-width: none;        /* Firefox */
        -ms-overflow-style: none;     /* IE/Edge legacy */
    }
}

/* Default state — at top of page, transparent navbar */
nav.navbar.navbar-common,
.navbar {
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    transition: background-color 0.35s ease,
                backdrop-filter 0.35s ease,
                -webkit-backdrop-filter 0.35s ease,
                box-shadow 0.35s ease;
}

/* Scrolled state — dark glass effect */
nav.navbar.navbar-common.is-scrolled,
.navbar.is-scrolled {
    background: rgba(11, 28, 45, 0.75) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* Force scroll back onto window, not body */
html, body {
    height: auto !important;
    overflow-y: visible !important;
    overflow-x: clip;
}

/* ==========================================
   NAVBAR SHRINK ON SCROLL — MOBILE/TABLET ONLY
   When .is-scrolled is active: shrink toggle padding and logo
   ========================================== */
@media (max-width: 1023px) {
    /* Smooth transition for the elements that change */
    .navbar-toggle,
    .navbar-brand img.logo {
        transition: padding 0.3s ease,
                    height 0.3s ease,
                    width 0.3s ease;
    }

    /* When navbar is scrolled, shrink the hamburger button padding */
    nav.navbar.is-scrolled .navbar-toggle {
        padding: 5px 0;
    }

    /* When navbar is scrolled, shrink the logo */
    nav.navbar.is-scrolled .navbar-brand img.logo {
        height: 40px !important;
        width: auto !important;
    }

    nav.navbar.is-scrolled {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

	nav.navbar.is-scrolled .navbar-toggle .close_button{
        padding: 0 !important;
    }
		

	.close_button {
		top: 16px !important;
	}
}

/* ==========================================
   MOBILE HERO — FULL VIEWPORT HEIGHT, CENTERED CONTENT
   ========================================== */
@media (max-width: 767px) {
    /* Make the hero fill the screen */
    .banner-style-one-area {
        min-height: 100vh;
        min-height: 100svh; /* Modern phones: excludes browser toolbars from the calc */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Reset the section padding so flex centering works cleanly */
    .banner-style-one-area.default-home-padding {
        padding-top: 100px !important; /* leave room for the fixed navbar */
        padding-bottom: 40px !important;
    }

    /* Center the inner content vertically and horizontally */
    .banner-style-one-area .container,
    .banner-style-one-area .row {
        width: 100%;
    }

    .banner-style-one-area .banner-one-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }
	.mobile_hero {
    margin-right: 0 !important;
    margin-left: 0 !important;
	}
	.home-hero-points span, .home-internal-links a{
		font-size: 10px;
	}	
}