* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #F3FBFC;
}


        body {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    padding-top: 30px;
}

h1 {
    font-family: 'Encode Sans Expanded', sans-serif;
}

.navbar {
    background-color: transparent;
    position: relative; 
    z-index: 2000;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 160px;
    height: 31px;
    margin-left: 25px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    color: var(--Text-Dark, #002425);
    position: relative;
}

.nav-link {
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    min-width: fit-content;
}

.nav-link:hover {
    color: var(--Text-Medium, #455E5F);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1100;
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item:hover {
    color: #059669;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-dropdown {
    position: relative;
}

/* 1) Menü konumunu butona yapıştır (arada boşluk kalmasın) */
.language-dropdown { position: relative; }

.language-dropdown .dropdown-menu{
  /* sadece dil menüsü için override */
  left: 0;                   /* 50% & translateX(-50%) iptal */
  right: auto;
  top: calc(100% - 1px);     /* 1px üst üste bindir → birleşik görünüm */
  transform: none;
  margin-top: 0;

  width: 100%;               /* buton genişliği kadar */
  min-width: unset;

  border-radius: 0 0 8px 8px;       /* üst köşeleri sıfırla */
  border: 1px solid #D0DDDD;        /* senin rengi */
  background: transparent;            /* senin rengi */
  box-shadow: none;                  /* pencere gibi durmasın */
  z-index: 9999;
}

/* 2) Menü AÇIKKEN butonun da aynı bloğun parçası gibi görünmesi */
.language-dropdown:has(.dropdown-menu.active) .language-btn{
  background: transparent;
  color: var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
  border-bottom: none;              /* menü ile dikişsiz birleşsin */
  border-radius: 8px 8px 0 0;
}

/* 3) Mobil dil menüsü için de aynı birleşik görünüm */
.mobile-controls .language-dropdown .dropdown-menu{
  left: 0;
  top: calc(100% - 1px);
  transform: none;
  margin-top: 0;
  width: 100%;
  border-radius: 0 0 8px 8px;
  box-shadow: none;
}

.mobile-controls .language-dropdown:has(.dropdown-menu.active) .mobile-language-btn{
  background: transparent;
  color: var(--Text-Dark, #002425);
  border: 1px solid #D0DDDD;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.language-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: var(--Text-Dark, #002425);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    font-size: 18px;
    white-space: nowrap;
    min-width: fit-content;
}

.language-btn:hover {
    color:  var(--Text-Medium, #455E5F);
}

.contact-btn {
    background-color: #003B3E;
    color:#F3FBFC;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    border: none;
    padding: 14px 28px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    white-space: nowrap;
    min-width: fit-content;
}

.contact-btn:hover {
   background: transparent;
   color: var(--Text-Dark, #002425);
   border: 1px solid #D0DDDD;
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-language-btn {
    background: none;
    border: none;
    color: var(--Text-Dark, #002425);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: fit-content;
}

.mobile-language-btn:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--Text-Dark, #002425);
}

.mobile-menu-toggle:hover {
    color: #059669;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.mobile-menu {
    display: none;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0.5rem 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-item .contact-btn {
    width: 100%;
}

.mobile-nav-link {
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.2s ease;
    word-wrap: break-word;
    hyphens: auto;
}

.mobile-nav-link:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--Text-Dark, #002425);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    hyphens: auto;
}

.mobile-dropdown-toggle:hover {
    color:  var(--Text-Medium, #455E5F);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--Text-Dark, #002425);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.mobile-dropdown-item:hover { 
    color: #059669;
}


.mobile-dropdown-toggle .dropdown-arrow{
  transition:transform 200ms ease;
  transform:rotate(0deg);
}
.mobile-dropdown-toggle[aria-expanded="true"] .dropdown-arrow,
.dropdown-arrow.rotated{ transform:rotate(180deg); }


        .ellipse {
  position: absolute;
  width: 500px;  /* İsteğe göre ayarlanabilir */
  height: 500px;
  border-radius: 50%;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(0, 178, 186, 0.60) 0%, rgba(0, 178, 186, 0.00) 100%);
  opacity: 0.2;
  z-index: 0;  /* Menü üstte kalsın */
  pointer-events: none;
}

.ellipse-right {
  top: -100px;
  right: -100px;
}

.ellipse-left {
  left: -100px; /* Sol kenardan biraz dışarı taşı, gerekirse 0px yap */
  top: 50%;
  transform: translateY(50%); /* Dikey ortalama */
}


        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }

            .logo img {
                width: 99.10355px;
                height: 19px;
                margin-left: auto;
            }

            .nav-center {
                display: none;
            }

            .nav-actions {
                display: none;
            }

            .mobile-controls {
                display: flex;
            }

             .ellipse {
  position: absolute;
  width: 300px;  /* İsteğe göre ayarlanabilir */
  height: 300px;
  border-radius: 50%;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(0, 178, 186, 0.60) 0%, rgba(0, 178, 186, 0.00) 100%);
  opacity: 0.3;
  z-index: 0;  /* Menü üstte kalsın */
  pointer-events: none;
}

.ellipse-right {
  top: -100px;
  right: -100px;
}

.ellipse-left {
  left: -150px; /* Sol kenardan biraz dışarı taşı, gerekirse 0px yap */
  top: 50%;
  opacity: 0.1;
  transform: translateY(50%); /* Dikey ortalama */
}
        }
        


        @media (max-width:1024px) {
            .nav-link {
                font-size: 14px;
            }

            .language-btn {
                font-size: 14px;
            }
        }








        /* contacts */
.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 100%;

    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 84px 56px 114px 56px;
}

.contact-left {
    padding-top: 2rem;
}

.contact-left h1 {
    width: 484px;
    font-size: 40px;
    color:  var(--Text-Dark, #002425);
    margin-bottom: 3rem;
    line-height: 125%;
    font-weight: 500;
    font-style: normal;
    font-family: 'Encode sans expanded', sans-serif;
}

.highlight {
    color: #00B2BA;
    font-weight: 400;
    font-style: normal;
    font-family: 'Encode sans expanded', sans-serif;
}

.contact-info {
    margin-bottom: 4rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item label {
    display: block;
    font-weight: 400;
    color: var(--Text-Medium, #455E5F);
    margin-bottom: 0.5rem; 
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid var(--Interface-Stroke, #D0DDDD);
    background-color: var(--Interface-sm-bg, rgba(243, 251, 252, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.social-icon:hover {
    transform: translateY(-2px);
}

.contact-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12rem;
}

.contact-form {
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: 500px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--Light-stroke, #E6E6E6);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
    color:  var(--Text-Dark, #002425);
    outline: none;
}

.property-dropdown {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
}

.form-group input::placeholder {
    color: var(--Text-Dark, #002425);
    font-size: 1rem;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
}

.form-group select {
    color: var(--Text-Dark, #002425);
    cursor: pointer;
    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='%2395a5a6' 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 0.5rem center;
    background-size: 1rem;
    padding-right: 2rem;
}

.form-group select option {
    color: #2c3e50;
    background-color: white;
}

.form-group select:focus,
.form-group select:valid {
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: #3498db;
    border-bottom-width: 2px;
}

.form-group input:focus::placeholder {
    color: white;
}

.checkbox-group {
    margin: 2.5rem 0;
}

.contact-form .form-group input {
  padding-top: 1.35rem; /* Label için yer */
}

/* Yüzen etiket */
.contact-form .floating-label {
  position: absolute;
  left: 0;
  top: 0.75rem;               /* input yazı çizgisine yakın başlasın */
  font-size: 1rem;
  line-height: 1;
  color: var(--Text-Dark, #002425);
  pointer-events: none;       /* tıklama input’a gitsin */
  transition: top .2s ease, font-size .2s ease, color .2s ease, opacity .2s ease;
  opacity: 0.85;
}

/* Focus olunca veya input boş değilken label yukarı küçülür */
.contact-form .form-group input:focus + .floating-label,
.contact-form .form-group input:not(:placeholder-shown) + .floating-label {
  top: -0.4rem;
  font-size: 0.75rem;
  color: var(--Text-Dark, #002425);
  opacity: 1;
}

/* Placeholder focus’ta görünmesin ki label ile çakışmasın */
.contact-form .form-group input:focus::placeholder {
  color: transparent;
}

/* İstersen boşken placeholder’ı biraz daha soluk yapabilirsin */
.contact-form .form-group input::placeholder {
  opacity: 0.7;
}

.checkmark {
    color: var(--Text-Dark, #002425);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--Primary-Dark, #003B3E);
    line-height: 1.5;
    cursor: pointer;
    accent-color: #003B3E;
}

.checkbox-label input[type="checkbox"] {
    width: 35px;
    height: 30px;
    margin: -5px;
    cursor: pointer;
}

.terms-link {
    color: var(--Primary-Base, #00B2BA);
    text-decoration: none;
    font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 150%;
}

.terms-link:hover {
    color: #2980b9;
}

.submit-btn {
    background-color: var(--Primary-Dark, #003B3E);
    color: #F3FBFC;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    padding: 14px 28px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 40%;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--Text-Dark, #002425);
    border: 1px solid #D0DDDD;
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

.done-btn {
    background-color: #2c5530;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.done-btn:hover {
    background-color: #1e3a21;
    transform: translateY(-1px);
}










/* Tablet Design (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    body {
        background: transparent;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 800px;
        background: transparent;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .contact-left {
        padding-top: 0;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .contact-left h1 {
        font-size: 40px;
        margin-bottom: 2rem;
        margin-left: 10px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .contact-right {
        padding-top: 0;
        align-items: center;
    }
    
    .contact-form {
        max-width: 600px;
    }
}


@media (max-width: 768px) {
    body {
        background: transparent;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
        background: transparent;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        min-height: auto;
    }
    
    .contact-left {
        padding-top: 0;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .contact-left h1 {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 125%;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .contact-right {
        padding-top: 0;
        align-items: center;
    }
    
    .contact-form {
        max-width: 500px;
    }
}



@media (max-width: 480px) {


    .contact-left h1 {
        font-size: 2rem;
        margin-left: -110px;
    }

    .info-item {
        margin-left: -30px;
    }

    .form-row {
        width: 100%;
        margin-left: -30px;
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        width: 80%;
        margin-left: -20px;
    }

    .form-group {
        width: 100%;
    }

    .social-links {
        margin-left: -280px;
    }

    .submit-btn {
        padding: 14px 28px;
        width: 50%;
        margin-left: -20px;
        
    }
}

@media (max-width: 390px) {
    .form-group {
        width: 95%;
    }
}

@media (max-width: 320px) {
    .contact-left h1 {
        font-size: 1.7rem;
    }

    .form-group {
        width: 80%;
    }

}


/* Footer */

.footer {
   width: 100%;
    max-width: 100%;
    background: #002425;
    color: white;
    padding: 4rem 0 3rem;
    margin: 0 auto;
    box-sizing: border-box;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;;
    width: 1440px;
    padding: 112px 56px 56px 56px;
    gap: 6rem;
    margin-bottom: 3rem;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo img {
    width: 100%;
height: 122px;
flex-shrink: 0;
gap: 44px;
margin-top: -6rem;
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #ccc;
}

.social-links2 {
    display: flex;
    gap: 1rem;
    margin-top: -0.5rem;
}

.social-link {
     display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid var(--Text-Medium, #455E5F);
    background: var(--Interface-sm-bg, rgba(243, 251, 252, 0.04));
    color: #ccc;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: scale(1.1);
}



.footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
     margin-top: -6rem; 
  transform: translateX(-6rem); 
}


.footer-column {
    min-width: 180px;
    flex: 1; 
}

.footer-column1 {
    min-width: 180px;
    flex: 1; 
    margin-right: -80px;
}

.footer-column1 h4 {
    color: var(--Interface-White, #F3FBFC);
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 2rem;
}

.footer-column1 ul {
    list-style: none;
    width: 110%;
}

.footer-column1 ul li {
    margin-bottom: 1.5rem;
    
}

.footer-column1 ul li a {
    font-size: 16px;
    color: var(--Interface-Stroke, #D0DDDD);
    text-decoration: none;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    transition: color 0.3s ease;
    gap: 24px;
    width: 100%;
}

.footer-column1 ul li a:hover {
    color: var(--Text-Medium, #455E5F);
}


.footer-column h4 {
    color: var(--Interface-White, #F3FBFC);
    font-family: 'montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    width: 111%;
}

.footer-column ul li {
    margin-bottom: 1.5rem;
    
}

.footer-column ul li a {
    font-size: 16px;
    color: var(--Interface-Stroke, #D0DDDD);
    text-decoration: none;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    transition: color 0.3s ease;
    gap: 24px;
    width: 100%;
    margin-right: 50px;
}

.footer-column ul li a:hover {
    color: var(--Text-Medium, #455E5F);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem 56px 0 56px;
    font-size: 0.9rem;
    color: var(--Interface-Stroke, #D0DDDD);
    margin-right: 3rem;
}

.footer-bottom p {
    margin-left: 2.9rem;
}

.footer-bottom a {
    color: inherit;      
    border-bottom: 1px solid white;
    text-decoration: none;
}


@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .footer-logo img {
    width: 100%;
    margin-top: -5rem;
  }

  .social-links2 {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    transform: none;
    width: 100%;
    margin-top: 2.5rem;
  }

  .footer-column {
    flex: 1 1 45%; 
    min-width: 200px;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-column ul li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 2rem 2rem 0 2rem;
    width: 100%;
  }

  .footer-bottom p {
    margin: 0;
  }
}



@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem;
  }
.footer-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .footer-logo img {
    width: 100%;
    margin-top: -3.5rem;
  }

  .social-links2 {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 0;
    transform: none;
    width: 100%;
  }

  .footer-column {
    min-width: 100%;
    text-align: left;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.5rem 0 1.5rem;
    margin: 0;
    width: 100%;
  }

  .footer-bottom p {
    margin: 0;
  }
}


