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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
                    margin:0 !important;
                    padding:0 !important;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(139, 69, 75, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f4f0ec;
            text-decoration: none;
            transition: transform 0.3s ease;
            height: 30px;
            width: 100px;
        }

        .logo:hover {
            transform: scale(1.05);
            color: #e8d5d1;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

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

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e8d5d1;
            transition: width 0.3s ease;
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(139, 69, 75, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                transform: translateY(-10px);
                opacity: 0;
                transition: all 0.3s ease;
            }

            .nav-menu.mobile-active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
            }
        }
 

        /* Expertise Cards Section */
        .expertise {
            padding: 5rem 2rem;
            background: #f4f0ec;
            min-height: 100vh;
        }

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

        .expertise h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b454b;
            margin-bottom: 3rem;
            position: relative;
        }

        .expertise h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #8b454b, #c49599);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }



        .expertise-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(139, 69, 75, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 280px;
        }

.color{
    color: #666;

}
        .expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #8b454b, #a66b70, #c49599);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .expertise-card:hover::before {
            transform: scaleX(1);
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 69, 75, 0.2);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .expertise-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .card-title {
            font-size: 1.4rem;
            color: #8b454b;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .card-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .card-details {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .expertise-card:hover .card-details {
            max-height: 200px;
            margin-top: 1rem;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            color: #8b454b;
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }
        .card-link-bigtext {
            text-decoration-line: none;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .expertise-card:hover .card-link {
            opacity: 1;
            transform: translateY(0);
        }

        .card-link:hover {
            color: #a66b70;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #8b454b 0%, #a66b70 100%);
            color: white;
        }

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

        .success-stories h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
            position: relative;
        }

        .success-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .success-stories h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f4f0ec, rgba(255, 255, 255, 0.8));
            border-radius: 2px;
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }



        .success-card::before {
            display: none;
        }

        .success-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .success-card > * {
            position: relative;
            z-index: 2;
        }

        .success-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 20px 20px 0 0;
            transition: all 0.4s ease;
        }

        .success-card:hover .success-image {
            transform: scale(1.05);
        }


/* Success Summary - rÄƒmÃ¢ne vizibil mereu cu !important */
.success-summary {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 0.95rem !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
    transition: all 0.4s ease !important;
    transform: none !important;
}

/* AsigurÄƒ cÄƒ summary nu se schimbÄƒ la hover */
.success-card:hover .success-summary {
    opacity: 1 !important;
    max-height: none !important;
    margin-bottom: 1rem !important;
    transform: none !important;
}

/* Success Details - ascuns iniÈ›ial, vizibil la hover */
.success-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0;
    opacity: 0;
    transform: translateY(10px);
    margin-top: 0;
}

/* AfiÈ™eazÄƒ details la hover */
.success-card:hover .success-details {
    max-height: 300px; /* MÄƒrit pentru mai mult spaÈ›iu */
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    opacity: 1;
    transform: translateY(0);
}

/* AjusteazÄƒ Ã®nÄƒlÈ›imea cardurilor pentru a face loc textului */
.success-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 450px; /* MÄƒrit de la 400px */
    display: flex;
    flex-direction: column;
}

/* AjusteazÄƒ content padding pentru mai mult spaÈ›iu */
.success-content {
    padding: 1.5rem; /* Redus de la 2rem */
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (hover: none) and (pointer: coarse) {
  .card-details {
    max-height: 200px !important;
    margin-top: 1rem !important;
  }
  .card-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}



        /* Individual success card background images */
.success-card:nth-child(1) .success-image {
    background-image: url('photo/succes1.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}
 .success-card:nth-child(2) .success-image {
    background-image: url('photo/succes2.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}

 .success-card:nth-child(3) .success-image {
    background-image: url('photo/succes3.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}

 .success-card:nth-child(4) .success-image {
    background-image: url('photo/succes4.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}

 .success-card:nth-child(5) .success-image {
    background-image: url('photo/succes5.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}

 .success-card:nth-child(6) .success-image {
    background-image: url('photo/succes6.png');
    background-size: cover; /* sau contain */
    background-position: center center; /* sau alte valori */
    background-repeat: no-repeat;
}

        .success-title {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: bold;
            line-height: 1.3;
        }

  



   /* Success Summary - vizibil iniÈ›ial, ascuns la hover */


/* Ascunde summary la hover */
.success-card:hover .success-summary {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    transform: translateY(-10px);
}



/* AfiÈ™eazÄƒ details la hover */


        .success-outcome {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            margin-top: 1rem;
            font-size: 0.85rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .success-card:hover .success-outcome {
            opacity: 1;
            transform: translateY(0);
        }

        .success-outcome:hover {
            background: rgba(255, 255, 255, 0.3);
        }



/* Featured Banner */
.featured-banner {
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
}

.featured-title {
  font-size: 1.8rem;
  color: #8b454b;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 3rem;
  font-weight: 600;
  font-family: serif;
}

/* Slider container */
.slider-container {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

/* Track animation */
.slider-track {
  display: flex;
  gap: 3rem;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider-track:hover {
  animation-play-state: paused;
}

/* Logo badge */
.logo-badge {
  flex: 0 0 auto;
  width: clamp(100px, 18vw, 200px);
  height: clamp(40px, 10vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent; /* start border transparent */
}

.logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #8b454b; /* border color on hover */
}


/* Logo images */
.media-logo {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-badge:hover .media-logo {
  transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
  .slider-track {
    gap: 1.5rem;
    animation-duration: 50s; /* slower on mobile */
  }
  .media-logo {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .slider-track {
    gap: 1rem;
    animation-duration: 60s;
  }
  .media-logo {
    max-height: 30px;
  }
}

 

        




.logos-set {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    min-width: 50%;
    gap: 5rem;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Container for the banner */
/* Banner container */
.slider-container {
  overflow: hidden;
  width: 100%;
  background: #fff; /* or transparent */
  padding: 20px 0;
  height: 140px; /* enough space for bigger logos */
  display: flex;
  align-items: center;
}

/* Scrolling track */

.featured-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.65rem;
  color: #666;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}


/* Each logo slot */
.logo-badge {
  width: 240px;   /* bigger slot */
  height: 100px;  /* taller slot */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;

  position: relative;
  z-index: 2; !important

}
.logo-badge {
  flex: 0 0 auto; 
  width: clamp(100px, 20vw, 240px); 
  height: clamp(50px, 10vw, 100px);
}

/* SVG scaling inside */
.logo-badge svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}




@media (max-width: 768px) {
  .slider-track {
    gap: 40px; /* tighter spacing */
  }
}

@media (max-width: 480px) {
  .slider-track {
    gap: 20px;
  }
}

.logo-badge img,
.logo-badge svg,
.media-logo {
  aspect-ratio: auto;
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}


      /* Testimonials Section - Complete Replacement */
.testimonials {
    padding: 5rem 2rem;
    background: #f4f0ec;
    color: #333;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes-light" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" font-size="16" fill="rgba(139,69,75,0.05)" text-anchor="middle">❝</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes-light)"/></svg>');
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b454b;
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    font-style: italic;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b454b, #c49599);
    border-radius: 2px;
}

.testimonials-layout {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-left,
.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-right {
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(139, 69, 75, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border-left: 4px solid #8b454b;
}

.testimonials-right .testimonial-card {
    border-left: none;
    border-right: 4px solid #a66b70;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 75, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(139, 69, 75, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
    font-style: italic;
    padding-right: 3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(139, 69, 75, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: rgba(139, 69, 75, 0.4);
    transform: scale(1.05);
}

.author-info h4 {
    color: #8b454b;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: #888;
    font-size: 0.9rem;
    font-style: normal;
}

/* Individual testimonial avatar images */
.testimonials-left .testimonial-card:nth-child(1) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

.testimonials-left .testimonial-card:nth-child(2) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

.testimonials-left .testimonial-card:nth-child(3) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

.testimonials-right .testimonial-card:nth-child(1) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

.testimonials-right .testimonial-card:nth-child(2) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

.testimonials-right .testimonial-card:nth-child(3) .author-avatar {
    background-image: url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=M3wxMJA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80');
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonials-right {
        margin-top: 0;
    }

    .testimonials-right .testimonial-card {
        border-right: none;
        border-left: 4px solid #8b454b;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        padding-right: 2rem;
    }
}
        /* Slideshow Animation */
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .slideshow-container:hover .slides-wrapper {
            animation-play-state: paused;
        }

        /* Responsive design for logos */
        @media (max-width: 768px) {
            .slide {
                gap: 1.5rem;
            }
            
            .featured-title {
                font-size: 1rem;
            }
            
            .logo-styled {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
                min-width: 100px;
            }

            .slides-wrapper {
                animation-duration: 25s;
            }
        }

        @media (max-width: 480px) {
            .slide {
                gap: 1rem;
            }
            
            .logo-styled {
                font-size: 0.75rem;
                padding: 0.5rem 0.8rem;
                min-width: 80px;
            }

            .slides-wrapper {
                animation-duration: 30s;
            }
        }

/* Contact Section */

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #f4f0ec;
    color: #333;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b454b;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b454b, #c49599);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 75, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.contact-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-logo h3 {
    font-size: 2rem;
    color: #8b454b;
    margin-bottom: 0.5rem;
}

.contact-logo p {
    color: #666;
    font-style: italic;
}

.contact-details {
    margin-bottom: 2rem;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(139, 69, 75, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 69, 75, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b454b, #a66b70);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #8b454b;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-text p {
    color: #666;
    font-size: 0.9rem;
}

.social-media {
    border-top: 1px solid rgba(139, 69, 75, 0.1);
    padding-top: 2rem;
    margin-top: auto;
}
.social-media h4 {
    color: #8b454b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-link {
    width: 44px;
    height: 44px;
    background: #8b454b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 75, 0.25);
}
/* Platform-specific hover colors */
.social-link[data-platform="facebook"]:hover {
    background: #1877f2;
}
.social-link[data-platform="tiktok"]:hover {
    background: #000000;
}
.social-link[data-platform="instagram"]:hover {
    background: #e4405f;
}
/* Responsive */
@media (max-width: 480px) {
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 75, 0.1);
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-placeholder {

    flex: 1;
    background: linear-gradient(135deg, #f4f0ec, #e8d5d1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #8b454b;
    font-size: 1.2rem;
    text-align: center;
    padding: 3rem 2rem;
}

.building-svg {
    width: 450px;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.building-svg:hover {
    transform: scale(1.05);
}

.building-svg svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(139, 69, 75, 0.2));
}

.location-info {
    text-align: center;
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 1.1rem;
}


.catchphrase-section {
    padding: 0;
    margin-top: 80px !important; 
    text-align: center;
    background: white;
}

.catchphrase-container {
    background: linear-gradient(135deg, #8b454b 0%, #a66b70 50%, #c49599 100%);
    padding: 2rem 2rem;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    transition: all 0.3s ease;
}

.catchphrase-text {
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.catchphrase-container::after {
    content: '❝';
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.catchphrase-container::before {
    content: '❝';
    position: absolute;
    bottom: 15px;
    left: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info, .map-container {
        min-height: auto;
    }

    .contact-info {
        padding: 2rem;
    }

    .map-container {
        min-height: 400px;
    }

    .building-svg {
        width: 300px;
    }

    .catchphrase-container {
        padding: 1.5rem 1.5rem;
    }

    .catchphrase-text {
        font-size: 1.3rem;
    }

    .catchphrase-container::after,
    .catchphrase-container::before {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .building-svg {
        width: 250px;
    }
    
    .catchphrase-text {
        font-size: 1.2rem;
    }
}

    /* Updated Hero Section */
        .hero {
         
            height: 100vh;
            background: linear-gradient(135deg, #8b454b 0%, #a66b70 50%, #c49599 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
        }

        .hero::before {

            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139,69,75,0.1), rgba(196,149,153,0.1));
            z-index: 1;
             pointer-events: none !important;
        }

        .hero-content {
        padding-top: 6rem; !important
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 60vh;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            animation: fadeInLeft 1s ease forwards;
        }

        .hero-motto {
            font-size: 3.2rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            align-self: flex-start;
            font-size: 1.1rem;
            font-weight: 500;
            
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: fadeInRight 1s ease 0.3s forwards;
        }

        .hero-logo {
            width: 100%;
            max-width: 450px;
            height: auto;

            transition: all 0.4s ease;
        }

        .hero-logo:hover {
            transform: scale(1.05);

        }

        /* Custom SVG styling for the logo */
        .hero-logo svg {
            width: 100%;
            height: auto;
        }

        .hero-logo path {
            fill: white;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: 0;
                height: calc(100vh - 70px);
                background: rgba(139, 69, 75, 0.95);
                backdrop-filter: blur(10px);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                width: 100%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                padding-top: 50px;
                list-style: none;
                z-index: 999;
            }

            .nav-menu.mobile-active {
                transform: translateX(0%);
            }

            .nav-menu li {
                opacity: 0;
                margin-bottom: 2rem;
            }

            .nav-menu.mobile-active li {
                opacity: 1;
            }

            /* Mobile Hero Responsive */
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding: 2rem 0;
            }

            .hero-motto {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-logo {
                max-width: 300px;
            }

            .cta-button {
                align-self: center;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-motto {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-content {
                gap: 2rem;
            }

            .hero-logo {
                max-width: 250px;
            }
        }

        /* Team Photo Section - Removed since photo is now background */

        /* Team Section */
        .team-section {
            padding: 3rem 2rem 5rem 2rem;
            background: #f4f0ec;
            min-height: 100vh;
        }

        .team-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            margin-bottom: 4rem;
            padding-top: 2rem;
        }

        .section-intro h2 {
            font-size: 2.5rem;
            color: #8b454b;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #8b454b, #c49599);
            border-radius: 2px;
        }

        .section-intro p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

/* Team Member Cards - Improved Layout */
.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(139, 69, 75, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 600px; /* Increased for better content spacing */
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b454b, #a66b70, #c49599);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 75, 0.2);
}

/* Photo styling remains the same for all member-photo classes */
.member-photo1, .member-photo2, .member-photo3, .member-photo4, 
.member-photo5, .member-photo6, .member-photo7, .member-photo8, .member-photo9,.member-photo10,.member-photo11,.member-photo12,.member-photo13, .member-photo14, .member-photo15 ,.member-photo16 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8b454b, #a66b70);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover .member-photo1,
.team-member:hover .member-photo2,
.team-member:hover .member-photo3,
.team-member:hover .member-photo4,
.team-member:hover .member-photo5,
.team-member:hover .member-photo6,
.team-member:hover .member-photo7,
.team-member:hover .member-photo8,
.team-member:hover .member-photo9,
.team-member:hover .member-photo10, 
.team-member:hover .member-photo11, 
.team-member:hover .member-photo12,
.team-member:hover .member-photo13,
.team-member:hover .member-photo14,
.team-member:hover .member-photo15,
.team-member:hover .member-photo16,

{
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 69, 75, 0.3);
}

/* Member Info - Left Aligned Content */
.member-info {
    text-align: left; /* Changed from center to left */
    padding: 0 1rem; /* Added horizontal padding for better spacing */
}

.member-name {
    font-size: 1.5rem;
    color: #8b454b;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-align: center; /* Keep name centered */
}

.member-title {
    font-size: 1rem;
    color: #a66b70;
    margin-bottom: 1.5rem; /* Increased spacing */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center; /* Keep title centered */
}

.member-specialization {
    background: rgba(139, 69, 75, 0.1);
    color: #8b454b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 2rem; /* Increased spacing */
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.member-description {
    color: #666;
    line-height: 1.7; /* Increased line height for better readability */
    margin-bottom: 2rem; /* Increased spacing */
    font-size: 0.95rem;
    text-align: justify; /* Justified text for better appearance */
    padding: 0.5rem 0; /* Added vertical padding */
}

/* Add some breathing room between paragraphs */
.member-description p {
    margin-bottom: 1rem;
}

.member-credentials {
    margin-bottom: 2rem; /* Increased spacing */
    padding: 1rem 0; /* Added vertical padding */
    border-top: 1px solid rgba(139, 69, 75, 0.1); /* Added subtle separator */
}

.credential-item {
    display: flex; /* Changed to flex for better alignment */
    align-items: flex-start; /* Align to top for multi-line content */
    gap: 0.75rem; /* Increased gap */
    margin-bottom: 1rem; /* Increased spacing between credentials */
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5; /* Better line height */
}

.credential-icon {
    color: #8b454b;
    font-size: 1rem; /* Slightly larger icon */
    margin-top: 0.2rem; /* Align with text baseline */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.member-languages {
    margin-bottom: 1.5rem;
    padding: 1rem 0; /* Added vertical padding */
    border-top: 1px solid rgba(139, 69, 75, 0.1); /* Added subtle separator */
}

.member-languages h4 {
    color: #8b454b;
    font-size: 1rem; /* Slightly larger */
    margin-bottom: 1rem; /* Increased spacing */
    font-weight: 600;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem; /* Increased gap */
    justify-content: flex-start; /* Left aligned */
}

.language-tag {
    background: #8b454b;
    color: white;
    padding: 0.4rem 1rem; /* Increased padding */
    border-radius: 15px;
    font-size: 0.85rem; /* Slightly larger */
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-tag:hover {
    background: #a66b70;
    transform: translateY(-1px);
}

.member-contact {
    text-align: center; /* Keep contact centered */
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 69, 75, 0.1); /* Stronger separator */
    margin-top: auto; /* Push to bottom if using flexbox */
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b454b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 1rem;
    padding: 0.5rem; /* Added padding for better click area */
    border-radius: 8px; /* Rounded corners */
}

.contact-link:hover {
    color: #a66b70;
    transform: translateY(-2px);
    background: rgba(139, 69, 75, 0.05); /* Subtle background on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-info {
        padding: 0 0.5rem;
    }
    
    .member-description {
        text-align: left; /* Left align on mobile for better readability */
    }
    
    .language-tags {
        justify-content: center; /* Center on mobile */
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .credential-item {
        flex-direction: column; /* Stack on very small screens */
        gap: 0.5rem;
    }
    
    .credential-icon {
        margin-top: 0;
    }
}
  .member-photo16{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Moisa.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
  .member-photo13{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Diana.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
  .member-photo14{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Anda.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
   .member-photo15{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Flaviu.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo12{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo11{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/dagau.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo10{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/puscas.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo9{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/beie.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo8{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Raul.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
    .member-photo7{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/ardelean.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
      .member-photo6{
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/ciobanu.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

       .member-photo5 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/salajan.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
       .member-photo4 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/kogler.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .member-photo3 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/tent.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .member-photo2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Cosmin.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .member-photo1 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8b454b, #a66b70);
            background-image: url(photo/Razvan.png);
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }


      
        /* Expertise Legend */
        .expertise-legend {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(139, 69, 75, 0.1);
        }

        .legend-title {
            color: #8b454b;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .expertise-areas {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .expertise-tag {
            background: linear-gradient(135deg, #8b454b, #a66b70);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Mobile Menu Button - Perfect Denta Style */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease;
}

/* Burger Animation Classes - Perfect Denta Style */
.burger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .burger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        background: rgba(139, 69, 75, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        list-style: none;
        z-index: 999;
    }

    .nav-menu.mobile-active {
        transform: translateX(0%);
    }

    .nav-menu li {
        opacity: 0;
        margin-bottom: 2rem;
    }

    /* Make li elements visible when menu is active */
    .nav-menu.mobile-active li {
        opacity: 1;
    }

    .nav-menu .nav-link {
        padding: 0.75rem 0;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
    }

    .nav-menu .nav-link:hover {
        color: #e8d5d1;
        transform: scale(1.1);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}
   


    

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info {
                padding: 2rem;
            }





            .catchphrase-text {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .catchphrase-text {
                font-size: 1.3rem;
            }
        }

.google-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px 20px 20px 20px;
    filter: saturate(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.google-map:hover {
    filter: saturate(1) contrast(1.2);
}

 .hero1 {
    height: calc(80vh + 340px);

            background: linear-gradient(135deg, rgba(139,69,75,0.7) 0%, rgba(166,107,112,0.6) 50%, rgba(196,149,153,0.5) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('photo/team-photo1.png') center/cover no-repeat;
            z-index: 1;
   

        }

        .hero1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139,69,75,0.6) 0%, rgba(166,107,112,0.4) 50%, rgba(196,149,153,0.3) 100%);
            z-index: 2;
        }

        .hero1-content {
            z-index: 3;
            max-width: 800px;
            padding: 3rem 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: absolute;
            bottom: 8%;
        }

        .hero1 h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero1 p {
            font-size: 1.2rem;
            margin-bottom: 0;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }


.copyright-container {
    margin-top: 40px;
}
.copyright-container p {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    padding-top: 10px;
}
@media (max-width: 768px) {
    .copyright-container {
        padding: 1rem 1rem;
    }
    
    .copyright-container p {
        font-size: 0.8rem;
    }
    
    .copyright-details {
        font-size: 0.75rem;
    }
}

/* Useful Links Section - Add this to your styles.css */
.useful-links {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #8b454b 0%, #a66b70 50%, #c49599 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.useful-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.useful-links-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.useful-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.links-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-style: italic;
}

.useful-links h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 2px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.links-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.links-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.links-column:hover::before {
    transform: scaleX(1);
}

.links-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.links-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.links-column:hover .links-list li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for list items */
.links-list li:nth-child(1) { transition-delay: 0.1s; }
.links-list li:nth-child(2) { transition-delay: 0.2s; }
.links-list li:nth-child(3) { transition-delay: 0.3s; }
.links-list li:nth-child(4) { transition-delay: 0.4s; }
.links-list li:nth-child(5) { transition-delay: 0.5s; }
.links-list li:nth-child(6) { transition-delay: 0.6s; }
.links-list li:nth-child(7) { transition-delay: 0.7s; }
.links-list li:nth-child(8) { transition-delay: 0.8s; }
.links-list li:nth-child(9) { transition-delay: 0.9s; }
.links-list li:nth-child(10) { transition-delay: 1s; }
.links-list li:nth-child(11) { transition-delay: 1.1s; }
.links-list li:nth-child(12) { transition-delay: 1.2s; }
.links-list li:nth-child(13) { transition-delay: 1.3s; }

/* Initial state - make items visible by default for better UX */
.links-list li {
    opacity: 1;
    transform: translateX(0);
}

.links-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: block;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.links-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.links-list a:hover::before {
    left: 100%;
}

.links-list a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.links-disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.links-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .links-column {
        padding: 1.5rem;
    }

    .useful-links {
        padding: 3rem 1rem;
    }

    .useful-links h2 {
        font-size: 2rem;
    }

    .links-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .useful-links {
        padding: 2rem 1rem;
    }

    .useful-links h2 {
        font-size: 1.8rem;
    }

    .links-column {
        padding: 1.2rem;
    }

    .links-column h3 {
        font-size: 1.1rem;
    }

    .links-list a {
        font-size: 0.85rem;
    }
}
