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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn--primary {
    background: #4ECDC4;
    color: white;
}

.btn--primary:hover {
    background: #45B7AA;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #1B4E72;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav__logo h1 {
    font-family: 'Ibarra Real Nova', serif;
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav__menu a:hover {
    color: #4ECDC4;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #1B4E72;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero__text {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__title {
    font-size: 36px;
    font-weight: 700;
    color: #1B4E72;
    margin-bottom: 30px;
}

.about__text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #4ECDC4;
    color: white;
}

.services__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services__subtitle {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

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

.service-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: white;
}

.advantages__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages__text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1B4E72;
    margin-bottom: 30px;
}

.advantages__text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.advantages__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose__title {
    font-size: 36px;
    font-weight: 700;
    color: #1B4E72;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4ECDC4;
    border-radius: 50%;
}

.feature-card__icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1B4E72;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Potential Section */
.potential {
    padding: 80px 0;
    background: #1B4E72;
    color: white;
    text-align: center;
}

.potential__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.potential__text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials__title {
    font-size: 36px;
    font-weight: 700;
    color: #1B4E72;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card__avatar {
    /* width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px; */
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1B4E72;
    margin-bottom: 15px;
}

.testimonial-card__content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1B4E72;
    margin-bottom: 40px;
}

.contact__item {
    margin-bottom: 30px;
}

.contact__item strong {
    font-size: 18px;
    color: #1B4E72;
    display: block;
    margin-bottom: 10px;
}

.contact__item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact__form h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B4E72;
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact__form h4:first-child {
    margin-top: 0;
}

.contact__form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.contact__form input:focus {
    outline: none;
    border-color: #4ECDC4;
}

.contact__form button {
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1B4E72;
    color: white;
    padding: 40px 0 20px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer__logo h2 {
    font-family: 'Ibarra Real Nova', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #4ECDC4;
}

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

.footer__bottom p {
    font-size: 14px;
    opacity: 0.7;
}
.privacy{
  margin: 69px 0 0;
  padding: 60px 0;
}

@media (max-width:768px) {
  .privacy{
    margin: 39px 0 0;
  }
}

.privacy-title{
  font-family: Roboto;
font-weight: 800;
font-size: clamp(40px,6vw,80px);
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
margin-bottom: 40px;

}
.privacy-text{
  font-family: Roboto;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.183);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup__content {
 border-radius: 8px;
background: #00314D;
  padding: 40px;
  max-width: 587px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .popup__content {
    padding: 24px;
  }
}
.popup__title {
font-family: Ibarra Real Nova;
font-weight: 700;
font-size: 28px;
line-height: 100%;
letter-spacing: 16%;
text-transform: uppercase;
color:#fff;
text-align: center;
}
.popup__text {
color: #fff;
text-align: center;
font-size: 26px;
font-weight: 400;
}
.popup__btn {
color: #fff;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 19.2px */
border-radius:  1000px;
padding: 10px 24px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1B4E72;
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav__menu--active {
        transform: translateX(0);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle--active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle--active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 16px;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        order: -1;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .advantages__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 15px;
    }

    .hero, .about, .services, .advantages, .why-choose, .potential, .testimonials, .contact {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .about__title, .services__title, .advantages__text h3, .why-choose__title, .potential__title, .testimonials__title, .contact__info h3 {
        font-size: 28px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for cards */
.service-card, .feature-card, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .feature-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}