/* Custom Font */
@font-face {
    font-family: 'CustomFont';
    src: url('tt1161m_.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CustomFont', 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a2e41;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 49px;
}

/* Header */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 46, 65, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 94px;
    height: 74px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    background: rgba(51, 51, 51, 0.8);
    border-radius: 50px;
    border: 0.5px solid #ffffff;
    padding: 15px 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a68d5f;
}

.social-links {
    display: flex;
    gap: 10px;
    position: relative;
    top: 2px;
}

.social-links img{
    position: relative;
    top: 3px;
    height: 20px;
    width: 20px;
}

.social-link1 {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link1:hover {
    color: #a68d5f;
}

.social-link1 img{
    height: 43px;
    width: 43px;
}

.contact-btn {
    background: linear-gradient(335deg, rgba(166, 141, 95, 1) 76%, rgba(70, 83, 95, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 26px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 1.79px 0px 14.33px 11.65px rgba(0, 0, 0, 0.25);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background: rgba(26, 46, 65, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.side-menu.active {
    right: 0;
}

.side-menu-close {
    position: absolute;
    top: 30px;
    left: -60px;
    background: rgba(26, 46, 65, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}



.side-menu.active .side-menu-close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.side-menu-close:hover {
    color: #a68d5f;
    transform: scale(1.1);
}

.side-menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.side-menu-logo {
    width: 60px;
    height: 47px;
    object-fit: contain;
}

.side-menu-languages {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.side-menu-lang {
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.side-menu-lang.active {
    color: #a68d5f;
}

.side-menu-lang:hover {
    color: #a68d5f;
}

.side-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.side-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
    padding: 15px 0;
    position: relative;
}

.side-menu-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #a68d5f;
    transition: width 0.3s ease;
}

.side-menu-link:hover {
    color: #a68d5f;
}

.side-menu-link:hover::after {
    width: 100%;
}

.side-menu-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.side-menu-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.side-menu-social-link img{
    height: 25px;
    width: 25px;
}

.side-menu-social-link:hover {
    background: #a68d5f;
    transform: translateY(-2px);
}

.side-menu-contact {
    background: linear-gradient(335deg, rgba(166, 141, 95, 1) -21%, rgba(70, 83, 95, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 13px 40px;
    border-radius: 26px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 1.79px 0px 14.33px 11.65px rgba(0, 0, 0, 0.25);
    width: 80%;
}

.side-menu-contact:hover {
    transform: translateY(-2px);
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 0px;
    overflow: hidden;
    margin-bottom: 45px;
}

.hero-content {
    margin-top: 30px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: scale(0) translateY(0);
    animation: heroAppear 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes heroAppear {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    40% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
    }
    60% {
        transform: scale(1) translateY(-10vh);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(-10vh);
    }
}

.language-selector {
    margin-top: 18px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) translateY(-50%);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateY(-50%);
    }
}

.lang-option {
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-option.active {
    color: #a68d5f;
    position: relative;
}

.lang-option.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
}

.hero-title {
    font-size: 85px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: titleAppear 0.8s ease-out 0.8s forwards, finalBounce 0.6s ease-in-out 2.2s;
}

@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes finalBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.02);
    }
    50% {
        transform: translateY(0) scale(0.98);
    }
    75% {
        transform: translateY(-2px) scale(1.01);
    }
}

.hero-title .highlight {
    color: #a68d5f;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: highlightAppear 0.6s ease-out 1.0s forwards;
}

@keyframes highlightAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultation-btn {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
    padding: 25px 50px;
    border-radius: 47px;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 3px 9px 5px rgba(246, 244, 244, 0.26);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: buttonAppear 0.7s ease-out 1.4s forwards, finalBounce 0.6s ease-in-out 2.4s;
}

@keyframes buttonAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.consultation-btn:hover {
    background: #ffffff;
    color: #1a2e41;
    transform: translateY(-3px);
}

/* About Section */


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 60px;
    letter-spacing: 1.7px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 0.6px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: justify;
}

.about-text::after {
    content: '';
    display: block;
    width: 632px;
    height: 2px;
    background: #ffffff;
    margin-top: 20px;
}

.about-images {
    flex-shrink: 0;
}

.about-img {
    width: 400px;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 20px; /* расстояние между фото */
  margin-top: 30px;
}



/* Сами фото */
.gallery-img {
  width: 100%;
  height: 250px; /* можно менять высоту по вкусу */
  object-fit: cover;
  border-radius: 12px;
  display: block;
}





.vision-mission {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.vision-card,
.mission-card {

    padding: 40px;
    border-radius: 20px;
    max-width: 612px;
    color: #000000;
}

.vision-card h3,
.mission-card h3 {
    font-size: 60px;
    color: white;
    line-height: 1.6;

}

.vision-card p,
.mission-card p {
    font-size: 25px;
    color: white;
    line-height: 1.6;
}

/* Fun Facts */
.fun-facts {
    padding: 50px 0;
}

.facts-card {
    background: linear-gradient(56deg, rgba(229, 226, 218, 1) 0%, rgba(70, 83, 95, 1) 97%);
    border-radius: 340px;
    padding: 40px 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1154px;
    margin: 0 auto;
}

.fact-item {
    text-align: center;
}

.fact-number {
    font-size: 96px;
    color: #ffffff;
    letter-spacing: 1.92px;
    line-height: 1.1;
}

.fact-label {
    font-size: 23px;
    color: #ffffff;
    letter-spacing: 0.46px;
    margin-top: 10px;
}

/* Team Section */
.team {
    padding: 50px 0;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.team-photo {
    position: relative;
    flex-shrink: 0;
}

.photo-bg {
    position: absolute;
    width: 314px;
    height: 587px;
    top: 73px;
    left: 49px;
    background: rgba(166, 141, 95, 0.72);
    border-radius: 10px;
}

.team-img {
    position: relative;
    width: 335px;
    height: 634px;
    object-fit: cover;
    border-radius: 10px;
}

.team-info {
    flex: 1;
    padding-top: 40px;
}

.team-name {
    font-size: 80px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.team-description p {
    font-size: 27px;
    max-width: 720px;
    color: #ffffff;
    line-height: 1.6;
    text-align: justify;
}

/* Values Section */
.values {
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.triangle {
    position: relative;
    background: #1a2d3f; /* Тёмный фон */
    overflow: hidden;
}

/* Золотой треугольник справа */
.triangle::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: 100%;
    background: #a68d5f; /* Золотой цвет */
    opacity: 0.7;
    clip-path: polygon(-10% 0, 110% 42%, -15% 100%, 0% 100%);
    z-index: 0;
}

/* Контент поверх */
.vision-mission {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Адаптив */


.values .section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 880px;
    margin: 0 auto;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.value-card {
background: #333333;
    padding: 25px 15px;
    height: 145px;
    width: 266px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.value-card1{
    background: #1a2e41;
    padding: 25px 15px;
    height: 145px;
    width: 266px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.value-card h3 {
    font-size: 19px;
    color: #ffffff;
    letter-spacing: 0.6px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.value-card p {
    text-align: justify;
    font-size: 15px;
    color: #959595;
    letter-spacing: 0.3px;
    line-height: 1.1;
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
}

.value-card1 h3 {
    font-size: 19px;
    color: #ffffff;
    letter-spacing: 0.6px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.value-card1 p {
    text-align: justify;
    font-size: 15px;
    color: #959595;
    letter-spacing: 0.3px;
    line-height: 1.1;
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
}



/* Services Section */
.services {
    padding: 50px 0;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.6s, transform 0.6s;
}

.services-tagline {
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 50px;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 200px;
    align-items: center;
}

.services-title {
    flex-shrink: 0;
}

.services-title h2 {
    font-size: 85px;
    color: #ffffff;
    letter-spacing: 1.45px;
    line-height: 1.1;
    margin-top: -149px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    gap: 10px;
}

.service-card {
    background: white;
    padding: 25px 15px;
    height: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
}





.service-card1 p {
    font-size: 15px;
    color: #959595;
    letter-spacing: 0.3px;
    line-height: 1.1;
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
}

.service-icon {
    width: 38px;
    height: 38px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: #ffffff;
    font-size: 20px;
}

.service-card h3 {
    font-size: 27px;
    color: #000000;
    line-height: 1;

}

.service-card p {
    font-size: 15px;
    color: #959595;
    letter-spacing: 0.3px;
    line-height: 1.1;
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0px 4px 50.9px 17px rgba(0, 0, 0, 0.25);
    color: #000000;
}

.contact-form h3 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 25px;
    color: #000000;
   
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 10px 0;
    font-size: 17px;
    background: transparent;
    color: #000000;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option {
    color: #c5c5c5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #a68d5f;
}

.form-group select {
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: #ffffff;
    color: #000000;
    padding: 10px;

}

.team-info {
        padding-left: 10px;
    }

.submit-btn {
    width: 100%;
    background: linear-gradient(336deg, rgba(65, 157, 255, 1) 5%, rgba(51, 51, 51, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 20px;
    border-radius: 31px;
    font-size: 16.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 2px 0px 20px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-info {
    width: 400px;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 30px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
}

.contact-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 20px;
    color: #a68d5f;
    line-height: 1.1;
    margin-left: 45px;
}

.social-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
}

.social-section h4 {
    font-size: 30px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.social-section .social-links {
    justify-content: center;
    gap: 15px;
}

.social-section .social-link {
    width: 43px;
    height: 43px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
}

.social-section .social-link:hover {
    background: #a68d5f;
}

/* Footer */
.footer {
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* добавил для адаптации */
    gap: 20px;       /* небольшой отступ при переносе */
}

.footer-logo img {
    width: 138px;
    height: 87px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* ссылки тоже переносятся */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #a68d5f;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
}

.footer-social .social-link:hover {
    background: #a68d5f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 15px;
    color: #ffffff;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .language-selector {
        left: -100px;
    }
    
    .hero-content {
        animation: heroAppearTablet 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    @keyframes heroAppearTablet {
        0% {
            opacity: 0;
            transform: scale(0) translateY(0);
        }
        40% {
            opacity: 1;
            transform: scale(1.1) translateY(0);
        }
        60% {
            transform: scale(1) translateY(-8vh);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(-8vh);
        }
    }
    
    .about-text::after {
        width: 100%;
    }
    
    .team-content {
        gap: 30px;
    }
    
    .team-name {
        font-size: 60px;
    }
    
    .services-tagline {
        font-size: 50px;
    }

     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }
}



@media (min-width: 1124px) and (max-width:1426px){
    .service-card h3 {
        font-size: 17px;
    }

    .section-title{
        font-size: 60px;
    }

    .about-img{
        display: none
        ;
    }
    .about-content{
        gap: 30px;
    }

   
     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }
}



@media (min-width: 1025px) and (max-width:1123px){
    .service-card h3{
        font-size: 17px;
    }

    .service-card{
        padding: 10px 15px;
    }

    .services-title h2{
        font-size: 70px;
    }

     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }
}





@media(max-width:1024px) {

     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }
    
    .about-gallery 
    .section-subtitle{
        margin-bottom: 34px;
        font-size: 25px;
    }
    .team-info{
        padding-left: 40px;
    }

    .service-card1 h3{
        font-size: 18px;
    }
    
    
    .service-card h3{
        font-size: 19px;
    }

    .service-card p{
        bottom: 19px ;
        font-size: 14px;
    }

    .service-card{
        padding: 15px 15px;
    }

    .team-description p {
        max-width: 475px;
        font-size: 21px;
    }

    .services-title h2{
        font-size: 72px;
    }
}

@media (min-width: 993px) and (max-width: 1123px){
    .about-content{
        gap: 0px;
    }

    
     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }

}

@media (min-width: 863px) and (max-width: 882px){
    .about-text p{
        font-size: 15px;
    }

    
     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }

  
}

@media (max-width: 992px) {


    .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }

    .about-img{
        display: none;
    }
    
    .about-content{
        gap: 0px;
    }
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 46, 65, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .language-selector {
        display: none;
    }
    
    .hero-content {
        animation: heroAppearMobile 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    @keyframes heroAppearMobile {
        0% {
            opacity: 0;
            transform: scale(0) translateY(0);
        }
        40% {
            opacity: 1;
            transform: scale(1.1) translateY(0);
        }
        60% {
            transform: scale(1) translateY(-5vh);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(-5vh);
        }
    }
    

    
    .vision-mission {
        flex-direction: column;
        align-items: center;
    }
    
    .facts-card {
       
        gap: 30px;
        border-radius: 300px;
        padding: 30px;
    }
    
    .team-content {
        align-items: center;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 650px;
    }
    
    .services-content {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-btn {
           display: none;
    }
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .footer-content {

        gap: 30px;
        text-align: center;
    }

    .services-content{
        flex-direction: column;
        align-items: center;
    }
}

@media(min-width: 769px) and (max-width:853px){
  
     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 200px;
  }

    

    .footer-nav a{
        font-size: 20px;
    }

    .services-title h2{
        font-size: 65px;
    }
}

@media (max-width: 768px) {
     .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img {
    height: 100px;
  }
    
        .service-card h3{
        font-size: 18px;
    } 
    .service-card p{
            font-size: 15px;
    }
     
    .footer-content{
        gap: 10px;
    }
    .team-img{
        width: 230px;
    height: 537px;
    }

    .team-info {
        padding-left: 10px;
    }
    
    .photo-bg{
        width: 198px;
    height: 483px;
    }
    .triangle::before {
        width: 105%;
        clip-path: polygon(18% 0, 100% 50%, -45% 100%, 0% 100%, 0% 0%);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 70px;
    }
    
    .consultation-btn {
        font-size: 20px;
        padding: 20px 40px;
    }
    
    .section-title {
        font-size: 45px;
    }

    .services-title h2{
        font-size: 45px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 20px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 45px;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 25px;
    }
    
    .fact-number {
        font-size: 38px;
    }
    
    .fact-label {
        font-size: 15px;
    }
    
    .team-name {
        font-size: 47px;
    }
    
    .team-description p {
        font-size: 20px;
    }
    
    .values-grid {
grid-template-columns: repeat(2, 1fr);
        column-gap: 0px;
    }
    

    
    .services-tagline {
        font-size: 35px;
    }
    
    .services-grid {
grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .services-title h2{
        text-align: center;
        margin-top: -50px;
    }
    
    .contact-form h3 {
        font-size: 35px;
    }
    
    .contact-info h3 {
        font-size: 45px;
    }
    
    .contact-item h4 {
        font-size: 30px;
        gap: 10px;
    }
    
    .contact-item p {
        margin-left: 40px;
    }

    .footer-nav a{
        font-size: 15px;
    }
   

    
    .form-row {
        flex-direction: column;
    }
    
    .footer-nav {

        gap: 10px;
    }


    .about-img{
       display: none;
    }
    .about-content{
        gap: 0px;
    }

    .about-text p{
        font-size: 22px;
    }

    .service-card{
        padding: 15px 15px;
        height: 170px;
    }
}

@media (min-width: 481px) and (max-width:600px){

    .about-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .gallery-img {
    height: 100px;
    width: 100%;
  } 

    .footer-logo img{
        width: 60px;
        height: 60px;
        left: 0;
    }
    .side-menu-nav{
    gap: 30px;
    margin-bottom: 20px;
    }
        .hero-title {
        font-size: 55px;
    }
    
    .footer-social{
        gap:10px;
    }
    .services-grid{
        grid-template-columns: none;
    }
    .values-grid{
        grid-template-columns: none;
    }

    .team-description p{
        font-size: 15px;
    }
    .team-img {
        width: 140px;
        height: 350px;
    }
    .photo-bg {
        width: 112px;
        height: 298px;
    }
     .vision-card h3,
    .mission-card h3 {
        font-size: 35px;
    }
    
    .value-card{
        height: 130px;
        padding:11px 11px;
    }
    
    .value-card1{
        padding:11px 11px;
        height: 130px;
    }
    .value-card h3{
        font-size:20px;
        
    }
    
    .value-card1 h3{
        font-size:20px;
    }

    .service-card{
        padding: 15px 15px;
        height: 146px;
    }

    
}
@media (min-width: 480px) and (max-width: 625px){
   .social-link1 img{ height: 25px;
    width: 25px;
   }
   .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-img {
    height: 100px;
    width: 100%;
  } 
}


@media (min-width: 481px) and (max-width:600px){
    .footer-logo img{
        width: 60px;
        height: 60px;
    }

    .side-menu-nav{
    gap: 30px;
    margin-bottom: 20px;
    }
        .hero-title {
        font-size: 55px;
    }
    
    .footer-social{
        gap:10px;
    }
    .services-grid{
        grid-template-columns: none;
    }
    .values-grid{
        grid-template-columns: none;
    }

    .about-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .gallery-img {
    height: 100px;
    width: 100%;
  } 

    .team-description p{
        font-size: 15px;
    }
    .team-img {
        width: 140px;
        height: 350px;
    }
    .photo-bg {
        width: 112px;
        height: 298px;
    }
     .vision-card h3,
    .mission-card h3 {
        font-size: 35px;
    }
    
    .value-card{
        
        padding:11px 11px;
    }
    
    .value-card1{
        padding:11px 11px;
    }
    .value-card h3{
        font-size:20px;
        
    }
    
    .value-card1 h3{
        font-size:20px;
    }
    
}

@media (max-width: 480px) {

    .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-img {
    height: 100px;
    width: 100%;
  } 

  .gallery-img.about{
    display: none;
  }

     .value-card{
        height: 125px;
        padding:11px 11px;
    }
    
    .value-card1{
        padding:11px 11px;
        height: 125px;
    }

    .facts-card{
        gap: 15px;
    }
    .team-img{
        width: 118px;
        height: 262px;
    }

    .photo-bg{
        width: 108px;
        height: 257px;
        top: 24px;
        left: 24px;
    }

    .hero-title {
        font-size: 42px;
    }
    .hero{
    margin-bottom: 140px;
    }
    .hero-content {
        animation: heroAppearSmall 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    @keyframes heroAppearSmall {
        0% {
            opacity: 0;
            transform: scale(0) translateY(0);
        }
        40% {
            opacity: 1;
            transform: scale(1.1) translateY(0);
        }
        60% {
            transform: scale(1) translateY(-3vh);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(-3vh);
        }
    }


    .footer-logo img{
        width: 60px;
    height: 54px;
    object-fit: contain;
    }
    
    .footer-nav a{
        font-size: 13px;
    }
    


    .about-text p{
        font-size: 8px;
    }

    .about-content{
        margin-bottom: 15px;
    }

    .consultation-btn {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 35px;
    }

    
    .vision-card,
    .mission-card {
        padding: 20px;
        width: 311px;
        height: 191px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 35px;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 17px;
    }
    
    .team-name {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .team-description p {
        font-size: 15px;
    }

    .values-grid{
        grid-template-columns: 1fr;
        column-gap: 0px;
    }


    .services-grid{
        grid-template-columns: 1fr;
        column-gap: 0px;
    }
    
    /* .value-card {
        padding: 20px;
        height: 301px;
        width: 311px;
        text-align: left;
    } */

    

    
    .services-tagline {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h3 {
        font-size: 28px;
    }
    
    .contact-info h3 {
        font-size: 35px;
    }
    
    .contact-item h4 {
        font-size: 24px;
        gap: 8px;
    }
    
    .contact-item p {
        margin-left: 32px;
    }
    
    .social-section h4 {
        font-size: 28px;
    }
        .section-subtitle{
            font-size: 19px;
            margin-bottom: 9px;
        }
}

@media (max-width: 480px){
    .footer-logo img{
        width: 60px;
    }
    .team-info {
        padding-left: 10px;
    }
    .about-text p{
        font-size: 17px;
    }

    .vision-mission {
        align-items: center;
        justify-content: center;
    }

        .footer-content{
        gap: 10px;
        text-align: center;
    }

    .social-link1 img {
    height: 20px;
    width: 20px;
}

    .triangle::before {
        top: -63vw;
        width: 100%;
        clip-path: polygon(-21% 0, 107% 35%, -41% 70%, 0% 100%, 0% 0%);
    }
    .services-title h2{
        font-size: 35px;
    }
    .service-card{
        padding: 15px 15px;
        height: 150px;
    }
}


@media(max-width: 375px){
       .vision-card h3,
    .mission-card h3 {
        font-size: 40px;
    }
    .about-text p {
        font-size: 17px;
    }
    .about-img{
        width: 127px;
        height: 400px;
    }
    .contact-item h4 {
        font-size: 18px;
        gap: 8px;
    }
    .side-menu-link{
        font-size: 18px;
    }

    .fact-number{
        font-size: 35px;
    }
    .fact-label{
        font-size: 11px;
    }
    .facts-card{
        height: 135px;
    }

    .section-title{
        font-size: 40px;
    }
    .services-title{
        font-size: 44px;
    }
        .team-description p{
        font-size: 12px;
    }
    .vision-card p, .mission-card p {
        font-size: 17px;
    }
    .footer-logo img{
        width: 40px;
    }

    .footer-social{
        gap: 4px;
    }

    .service-card{
        padding: 15px 15px;
        height: 165px;
    }
    
    .team-photo{
        display: none;
    }
}


