 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #023b6f;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, .section-title {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 2.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    border-bottom: 3px solid #f7630e;
    padding-bottom: 10px;
    display: inline-block;
    max-width: 100%;
}

h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 1.6rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.sub-heading {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #f7630e;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 6px;
    margin: 20px 0 10px 0;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    max-width: 100%;
    word-break: break-word;
}

ul {
    font-family: 'Noto Sans Armenian Condensed', 'Noto Sans Armenian', sans-serif;
    list-style-position: inside;
    padding-left: 0;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    transition: transform 0.3s ease-in-out;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
    border: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style-position: outside;
    padding-left: 0;
}

.nav-item {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #023b6f;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    background-color: #f7630e;
    color: #ffffff;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}

.dropdown-content a {
    color: #023b6f;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f7630e;
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-box input {
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px solid #023b6f;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    width: 200px;
    transition: width 0.3s;
}

.search-box input:focus {
    width: 250px;
    border-color: #f7630e;
}

.content-section {
    display: none;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in-out;
}

.content-section.active-section {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    background: rgba(2, 59, 111, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 100%;
}

.panoramic-box {
    margin: 25px 0;
    text-align: center;
}

.panoramic-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-squares-container {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    justify-content: space-between;
}

.square-img-box {
    width: calc(50% - 10px);
}
 .square-img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.features-list {
    margin: 20px 0 20px 10px;
    list-style-position: inside;
}

.features-list li, .sub-content ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.value-card {
    background: #f7630e;
    color: #ffffff;
    padding: 16px 8px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    word-break: normal;
    overflow-wrap: break-word;
}

.sub-content {
    display: none;
}

.sub-content.active-sub {
    display: block;
}

.service-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0 10px 0;
}

.service-gallery img {
    width: calc(33.333% - 10px);
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-info-box {
    background: #ffffff;
    color: #023b6f;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-info-box p {
    margin-bottom: 10px;
    word-break: break-word;
}

.contact-info-box a {
    color: #f7630e;
    text-decoration: none;
    font-weight: bold;
}

.registration-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.submit-btn {
    background-color: #f7630e;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Montserrat Alternates', sans-serif;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #d45209;
}

/* ========================================================== */
/* ՊԼԱՆՇԵՏՆԵՐԻ ԵՎ IPAD-ՆԵՐԻ ՀԱՄԱՐ (Մինչև 1024px) */
/* ========================================================== */
@media (max-width: 1024px) {
    .main-header {
        padding: 10px 20px;
    }
    .content-section {
        padding: 30px 15px;
    }
}

/* ========================================================== */
/* ՀԵՌԱԽՈՍՆԵՐԻ ԵՎ ՓՈՔՐ ՍԱՐՔԵՐԻ ՀԱՄԱՐ (Մինչև 768px) */
/* ========================================================== */
@media (max-width: 768px) {
    .main-header {
        position: relative !important;
        padding: 10px 15px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .logo {
        height: 60px;
    }

    .nav-menu ul {
        gap: 6px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 0.95rem;
    }

    .dropdown-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        background-color: #f0f4f8;
        margin-top: 4px;
        border-radius: 6px;
    }

    .dropdown-content a {
        color: #023b6f;
        padding: 10px;
        text-align: center;
        font-size: 0.9rem;
        white-space: normal;
    }

    .search-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .search-box input {
        width: 100%;
        max-width: 260px;
    }

    .content-section {
        padding: 20px 10px;
    }

    .container {
        padding: 15px 10px;
    }
 h1, .section-title {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .about-squares-container {
        flex-direction: column;
        gap: 12px;
    }

    .square-img-box {
        width: 100%;
    }

    .square-img-box img, 
    .panoramic-box img {
        height: 200px;
    }

    .service-gallery {
        flex-direction: column;
        gap: 10px;
    }

    .service-gallery img {
        width: 100%;
        height: 180px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}