/* ========================= RESPONSIVE CSS ========================= */

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}
.nav-bar{
	margin-top: 10px!important;
}

@media (max-width: 1200px) {
    h3 {
        font-size: 20px;
    }

    header li:not(:nth-last-of-type(1)) {
        margin-right: 20px;
    }

    header nav ul li a {
        font-size: 14px;
    }

    .banner-text h1 {
        font-size: 36px;
    }

    .about-section .row .col h2 {
        font-size: 32px;
    }

    .shape-div::after {
        height: 112px;
    }
}

@media (max-width: 1024px) {
    .shape-div::after {
        height: 100px;
        bottom: 30px;
    }
}

@media (max-width: 991px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 24px;
    }


    .banner-wrapper .banner-text {
        max-width: 600px;
        padding: 120px 15px 15px 15px;
    }

    .banner-wrapper .banner-text .text-box {
        padding: 15px 15px 15px 30px;
    }

    .about-section .row {
        flex-direction: column;
    }

    .about-section .row .col {
        width: 100%;
    }

    .about-section .row .col:last-child {
        margin-top: 40px;
    }

    .about-section .about-stats {
        justify-content: center;
        gap: 40px;
    }

    .choose-section ul {
        grid-template-columns: auto auto;
        gap: 20px;
    }

    .services-section .row.grid-3 {
        grid-template-columns: auto auto;
        gap: 20px;
    }

    .gallery-section .row.grid-3,
    .contact-support-section .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section .row {
        flex-direction: column;
    }

    .contact-section .row .col {
        width: 100%;
    }

    .contact-section .row .col:first-child {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-section .form-wrapper {
        padding: 30px;
    }

    .testimonial-section .testi-wrapper .slick-arrow {
        display: none !important;
    }

    .shifting-sec .row .col.w-50 {
        width: 100%;
    }

    .shifting-sec .row .col:first-child {
        margin-bottom: 40px;
    }

    .shifting-sec .row .col h3 {
        font-size: 2.2rem;
        text-align: center;
    }

    .shifting-sec .row .col h3 span {
        display: inline;
    }

    .shifting-sec .row .col p {
        text-align: center;
    }

    .shifting-sec .row .col ul {
        justify-content: center;
    }

    .all-gallery .gallery-image {
        grid-template-columns: auto auto;
    }

    footer .row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}


@media (max-width: 850px) {

    .offer-section .row,
    .offer-section .outer-row {
        flex-direction: column;
        gap: 20px;
    }

    .offer-section .row .col,
    .offer-section .outer-row .outer-col {
        width: 100%;
    }

    .blog-section .row {
        flex-direction: column;
        gap: 20px;
    }

    .blog-section .row .col-left,
    .blog-section .row .col-right {
        width: 100%;
    }

    .all-gallery .gallery-image {
        grid-template-columns: auto auto auto;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .container {
        padding: 0 15px;
    }

    .toggle-button {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 101;
        position: relative;
    }

    .toggle-button span {
        width: 30px;
        height: 3px;
        margin-bottom: 5px;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        display: block;
    }

    .toggle-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .toggle-button.active span:nth-child(2) {
        opacity: 0;
    }

    .toggle-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    header.fixed-header .toggle-button span {
        background-color: #000;
    }

    header.fixed-header .toggle-button.active span {
        background-color: #000;
    }



    header nav {
        display: none;
    }


    .mobile-menu {
        display: block;
        width: 70%;
        height: 100vh;
        background-color: #000;
        padding: 30px 0;
        position: fixed;
        top: 66px;
        left: -100%;
        z-index: 111;
        overflow-y: scroll;
        transition: all 0.4s ease-in-out;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu ul {
        padding: 0 30px 30px;
    }

    .mobile-menu ul li {
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .mobile-menu ul li ul {
        padding: 30px 0 0 10px;
        display: none;
    }

    .mobile-menu .dropdown-list .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu .dropdown-list.active {
        margin: 0;
    }

    .mobile-menu ul li:nth-last-of-type(1) {
        margin-bottom: 0;
    }

    .mobile-menu ul li ul li:nth-last-of-type(1) {
        border-bottom: none;
    }

    .mobile-menu ul li ul li a {
        font-size: 16px;
    }

    .banner-wrapper .banner-text {
        max-width: 700px;
        padding: 100px 10px 10px 10px;
    }

    .banner-wrapper .banner-text .text-box {
        padding: 10px 10px 10px 20px;
    }

    .banner-wrapper .slick-arrow {
        width: 30px;
        height: 30px;
    }


    .about-section {
        padding: 60px 0;
    }

    .about-section .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-section .stat-item {
        text-align: center;
    }

    .choose-section {
        padding: 60px 0;
    }

    .choose-section h3 {
        font-size: 28px;
    }

    .choose-section ul li {
        padding: 30px 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .row .col {
        padding: 30px 20px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .row.grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section .form-wrapper {
        padding: 20px;
    }

    .contact-section .form-group.w-50 {
        width: 100%;
    }

    .contact-section .cont-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-section .cont-info .cont-left {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section .testi-box {
        margin: 0 10px;
        padding: 25px 20px;
    }

    .testimonial-section .testi-box p {
        font-size: 16px;
    }

    .shifting-sec {
        padding: 60px 0;
    }

    .shifting-sec .row .col h3 {
        font-size: 1.8rem;
    }

    .shifting-sec .row .col ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shifting-sec .row .col ul li {
        font-size: 16px;
    }


    .process-timeline::before {
        left: 25px;
    }

    .step-box {
        flex: 1 1 calc(50% - 20px);
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 20px;
    }



    .quote-section .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .quote-section .quote-text {
        margin-bottom: 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card {
        padding: 30px 20px;
    }



    .our-process {
        padding: 40px 15px;
    }



    .step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }


    footer {
        padding: 40px 0 20px;
    }

    footer .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section,
    .choose-section,
    .gallery-section,
    .contact-section,
    .services-section,
    .testimonial-section,
    .our-process,
    .contact-support-section,
    .shifting-sec,
    .process-section {
        padding: 40px 0;
    }

  

    .our-location-sec .col-3 {
        width: 48%;
    }
}

@media (max-width: 580px) {
    header {
        padding: 10px 0;
    }

    header .logo {
        width: 200px;
        z-index: 111;
        position: relative;
    }

    .breadcrumb-banner {
        padding: 60px 0;
    }

    .shifting-sec {
        padding: 40px 0;
    }

    .shifting-sec .row .col h3 {
        font-size: 1.6rem;
    }

    .shifting-sec .row .col p {
        font-size: 1rem;
    }


    .choose-section ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section .row.grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-support-section .support-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    header .conact-info {
        display: none;
    }

    .offer-section .row .col h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        width: 100%;
        height: 420px;
    }

    .banner-wrapper .banner-text {
        padding: 50px 10px 10px 10px;
    }

    .banner-wrapper .banner-text .text-box {
        padding: 20px;
    }

    .banner-text h1 {
        font-size: 22px;
    }

    .common-heading h2 {
        font-size: 22px;
    }

    .common-heading p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    header .logo {
        width: 200px;
    }

    header .logo a {
        font-size: 18px;
    }

    header .logo a i {
        font-size: 26px;
    }

    .banner-wrapper .banner-text p {
        margin: 8px 0;
    }

    .about-section .row .col h2 {
        font-size: 24px;
    }

    .about-section .stat-number {
        font-size: 28px;
    }

    .choose-section h3 {
        font-size: 24px;
    }

    .choose-section ul li {
        padding: 25px 15px;
    }

    .choose-section .icon-box {
        width: 60px;
        height: 60px;
    }

    .choose-section .icon-box i {
        font-size: 20px;
    }

    .services-section .row .col h3 {
        font-size: 20px;
    }

    .services-section .row .col h3 i {
        font-size: 20px;
    }

    .contact-section .row .col h2 {
        font-size: 24px;
    }

    .testimonial-section .team-profile {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-section .team-profile img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .our-location-sec .col-3 {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 10px;
    }

    .banner-text h1 {
        font-size: 20px;
    }

    header .logo {
        width: 180px;
    }

    header .logo a {
        font-size: 16px;
    }

    header nav {
        width: 250px;
        padding: 70px 20px 20px;
    }

    .contact-section .form-wrapper {
        padding: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .support-link,
    .chat-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}


    .about-section .row .col h2{


        font-size: 32px;
        font-weight: 600 !important;

}

.about-section h2{
	font-weight: 600 !important;
}