        :root {
            --primary: #1a5f7a;
            --primary-dark: #0d4b63;
            --secondary: #ff9a3c;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 8px;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all .3s ease
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, sans-serif
        }

        html {
            scroll-behavior: smooth
        }

        body {
            color: var(--dark);
            line-height: 1.6
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            /* margin-bottom: 1rem */
        }

        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary)
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%)
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

        /* .container {
            width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
        } */

  


        .btn {
            display: inline-block;
    padding: 12px 28px;
    background: var(--secondary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    max-width: 300px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    margin: 0 auto;
        }

        .btn:hover {
            background: #e6891e;
            transform: translateY(-3px);
            box-shadow: var(--shadow)
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            padding: 15px 0
        }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
        .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}


        .header-content {
             display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-width: 100%;
    padding: 0 20px;
        }

        .logo img {
            height: 71px;
            width: auto
        }

        .hamburger-btn {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001
        }

        .hamburger-btn:hover {
            color: var(--secondary)
        }

        /* .hero {
         height: 100vh;
    background: linear-gradient(rgb(98 97 97 / 70%), rgb(0 0 0 / 7%)), url(../img/bc.webp) no-repeat center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
        } */



        .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* foninė nuotrauka */
.hero-bg {
    max-height: 100vh;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* tamsinantis sluoksnis */
.hero::after {
    content: "";
    position: absolute;
    background: rgb(97 97 97 / 28%);
    inset: 0;
    z-index: 2;
}

/* TURINYS */
.hero-content {
      position: relative;
    z-index: 999;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    top: 50%;
    transform: translateY(-50%);
}

  
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5)
        }

        .hero p {
            font-size: 1.3rem;
        }

        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(26, 95, 122, 0.95), rgba(26, 95, 122, 0.8));
            padding: 30px 0;
            z-index: 3
        }

        .hero-stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        .hero-stat {
            text-align: center;
            padding: 15px
        }

        .hero-stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
            display: block
        }

        .hero-stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: white
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px
        }

        .stat-box {
            background: white;
            padding: 40px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition)
        }

        .stat-box:hover {
            transform: translateY(-10px)
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px
        }

        .stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark)
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem
        }

        .about-highlight {
            background: var(--light-gray);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary);
            margin-top: 20px
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition)
        }

        .service-card:hover {
            transform: translateY(-10px)
        }

        .service-img {
            height: 200px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary)
        }

        .service-content {
            padding: 25px
        }

        .service-content h3 {
            color: var(--primary);
            font-size: 1.5rem
        }

        .review-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 15px
        }

        .rating {
            color: var(--secondary);
            font-weight: 600
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px
        }

        footer {
            background: var(--dark);
    color: white;
    padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition)
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-5px)
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: .9rem;
            color: rgba(255, 255, 255, 0.7)
        }

        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 99;
            opacity: 0;
            visibility: hidden
        }

        .go-top.active {
         opacity: 1;
    visibility: visible;
    z-index: 1111;
        }

        .go-top:hover {
            background: var(--secondary);
            transform: translateY(-5px)
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100dvh;
            background: linear-gradient(180deg, var(--primary)0%, var(--primary-dark)100%);
            color: white;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 2000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .sidebar.active {
            left: 0
        }

        .sidebar-header {
     padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff9a3c;
        }

        .close-btn {
          background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    transition: var(--transition);
    top: 10px;
    right: 10px;
        }

        .close-btn:hover {
            color: var(--secondary);
            transform: rotate(90deg)
        }

        .nav-menu {
            flex: 1;
            padding: 20px 0;


    color: white;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 15px 15px;
            color: white;
            transition: var(--transition);
            border-left: 4px solid transparent
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: var(--secondary);
            /* padding-left: 25px */
        }

        .nav-link i {
            font-size: 1.2rem;
            width: 30px;
            text-align: center;
            margin-right: 15px;
            color: var(--secondary)
        }

        .has-submenu .nav-link {
            justify-content: space-between
        }

        .submenu-arrow {
            transition: var(--transition);
            font-size: .9rem;
            color: rgba(255, 255, 255, 0.7)
        }

        .nav-item.active .submenu-arrow {
            transform: rotate(180deg)
        }

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

        .nav-item.active .submenu {
            max-height: 500px
        }

        .submenu a {
            display: block;
            padding: 12px 20px 12px 25px;
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            font-size: .95rem;
            border-left: 4px solid transparent
        }

        .submenu a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border-left-color: var(--secondary);
            padding-left: 35px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition)
        }

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

        .sidjfuisdhayfsdf {
            width: 100%;
            height: auto
        }

        @media(max-width:1200px) {
            .hero-stats-container {
                grid-template-columns: repeat(2, 1fr)
            }

            .hero-stat-number {
                font-size: 3rem
            }
        }

        @media(max-width:992px) {

            .about-content,
            .contact-container {
                grid-template-columns: 1fr
            }

            h2 {
                font-size: 1.8rem
            }

            .hero h1 {
                font-size: 2.5rem
            }

            .hero-stat-number {
                font-size: 2.8rem
            }
        }

        @media(max-width:768px) {

                .sidebar-header {
     /* padding:0px; */

        }

     

            .hero h1 {
                font-size: 2rem
            }

            .hero p {
                font-size: 1.1rem
            }

            .hero-stats-container {
                grid-template-columns: 1fr
            }

            .hero-stat {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2)
            }

            .hero-stat:last-child {
                border-bottom: none
            }

            .hero-stat-number {
                font-size: 2.5rem
            }

            .hero-stat-text {
                font-size: 1rem
            }

            .sidebar {
                width: 280px
            }

            .header {
                padding: 10px 0
            }
        }

        @media(max-width:576px) {

            .stats,
            .services-grid {
                grid-template-columns: 1fr
            }

            .stat-number {
                font-size: 2.8rem
            }

            .hero h1 {
                font-size: 1.8rem
            }

            .hero-stats {
                padding: 20px 0
            }

            .hero-stat-number {
                font-size: 2.2rem
            }
/* 
            .container {
                padding: 0 15px
            } */

            .footer-container {
                grid-template-columns: 1fr
            }
        }

        @media(max-width:400px) {
            .hero h1 {
                font-size: 1.6rem
            }

            .hero p {
                font-size: 1rem
            }

            .btn {
                padding: 10px 20px;
                font-size: .9rem
            }

            .hero-stat-number {
                font-size: 2rem
            }

            .hero-stat-text {
                font-size: .9rem
            }
        }

        @media (max-width: 480px) {

    h2 {
}
}