.footer {
    background:  #0a254a;
    color: white;
    
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: auto;
    padding: 60px 40px;
}

/* LEFT */
.footer-left {
    flex: 1.3;
}

.footer-left h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: white !important;
    text-shadow: none !important;
}

.footer-left p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.feet-img {
    width: 300px;
    height: 300px;
    margin: 20px 0;
}

.socials {
    margin-left: 40px;
    display: flex;
    gap: 15px;
}

.socials a {
    width: 70px;
    height: 70px;
    background:  radial-gradient(circle at 30% 30%, #5fe0e6, #0c2d5c);
    color: #0c2d5c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* CENTER */
.footer-center {
    flex: 1;
}

.brand {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    color: white !important;
    text-shadow: none !important;
}

.footer-center p {
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-center .time {
    font-weight: bold;
}

.footer-center .map {
    text-decoration: underline;
    cursor: pointer;
}

.footer-center .email {
    margin-top: 10px;
}

/* RIGHT */
.footer-right {
    flex: 1;
}

.footer-right h2 {
    margin-bottom: 15px;
    color: white !important;
    text-shadow: none !important;
}

.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right input,
.footer-right textarea {
    padding: 12px;
    border-radius: 4px;
    border: none;
    background: #f1f1f1;
    font-size: 20px;
}

.footer-right textarea {
    height: 100px;
}



.footer-right button {
    align-self: flex-end;
    background:  radial-gradient(circle at 30% 30%, #5fe0e6, #0c2d5c);
    color: white;
    padding: 10px 25px;
    border: none;
    width: 130px;
    height: 50px;
    font-weight: 900;
    font-size: 30px;

    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    padding: 15px 40px;
    background: #071c3a;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
    }
}



@font-face {
    font-family: 'Noto Serif';
    src: url('../fonts/NotoSerif-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
.translate-container {
  position: relative;
  display: inline-block;
}

#translate-btn {
  background: #5fe0e6;
  color: #000000;
  border: #5e89ea solid 3px;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

#translate-btn:hover {
  background: #ffffff;
  color: #5fe0e6;
  transform: scale(1.05);
}

.translate-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



.logo-name {
    font-family: 'Noto Serif', serif;
    color: white;
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;

    display: inline-block;          /* needed for transform */
    transition: transform 0.25s ease;
}
.logo-name:hover {
    transform: scale(1.50);
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-left: -900px;
    
}
.logo-img:hover {
    transform: translateY(-50%) scale(1.50);
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    left: 60px;
    top: 60%;
    transform: translateY(-50%);
    
    transition: transform 0.25s ease;
}
/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
    padding-top: 100px; /* Account for fixed navbar */
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #005aff;  /* main purple */
    border-bottom: 5px solid #5fe0e6;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Logo */
.navbar .logo h1 {
    color: white;
    font-size: 22px;
    font-weight: 600;
}

/* Menu links */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.ivf-steps {
    margin: 20px 0;
    padding-left: 20px;
    list-style: decimal;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: #5fe0e6;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar .nav-links li a {
    color: #005aff;
    background: #5fe0e6;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Underline hover effect */
.navbar .nav-links li a {
    display: inline-block;   /* important */
    color: #005aff;
    background: #5fe0e6;
    font-size: 17px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    border: #5e89ea solid 3px;

    transition: transform 0.2s ease;
}

.navbar .nav-links li a:hover {
    transform: scale(1.30);
}
/* Navbar base (if needed) */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  position: relative;
}

/* Dropdown hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -50px;
  background: #005aff;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: #5e89ea solid 3px;
}

/* Dropdown links */
.dropdown-menu li {
  padding: 8px 15px;
  
}

.dropdown-menu li a {
  text-decoration: none;
  color: #5e89ea;
  display: block;
  transition: 0.3s;
  
}

.dropdown-menu li a:hover {
  background: #5e89ea;
  color: white;
  border-radius: 6px;
  
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  
}

    


/* HERO */
.hero {
    height: 70vh;
    background: url("/images/hero-bg.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero2 {
    height: 70vh;
    background: url("/images/DSC01123.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-start; /* instead of center */
    justify-content: center;
    text-align: center;
}
.hero3 {
    height: 70vh;
    position: relative;
    overflow: hidden;
}
.hero3 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    object-fit: cover;
    z-index: 1  ;
    
}
.hero-content3 {    
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.50);
    padding: 20px 35px;
    border-radius: 10px;
    height:70px ;
    width: 200px;
    z-index: 2;
    
}

.hero-content3 a {
    display: inline-block;
    padding: 10px 20px;
    background: #0e448f; /* accent blue */
    color: white;
    border-radius: 6px;
    font-weight: 500;
    margin-left: 25px;
}

.watch-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.hero-watch-btn {
    margin-top: 0;
}

.hero-options {
    display: none;
    flex-direction: row;
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1px;
}
.hero-options:hover{
    .hero-watch-btn {  
        display: flex;
    }
    
}



.watch-group:hover .hero-options,
.hero-watch-btn:hover + .hero-options {
    display: flex;
}

.hero-content3 h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0b4dab;
    text-align: center;
    
}




.hero-content2 {    
    margin-top: 600px; /* controls position */
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 35px;
    border-radius: 10px;
    height:90px ;
    width: 250px;
}

.section-border {
    height: 6vh;
    background-color: #e9cfba;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section-border-small {
    border-top: #5fe0e6 solid 8px;
    height: 4.6vh;
    background-color: #e9cfba;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
} 
.section-border h2 {
    color: #0b4dab;     
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 35px;
    border-radius: 10px;
    
}

.hero-content2 h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0b4dab;;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0b4dab;
}

/* BUTTONS */
.hero-content a,
.hero-content2 a,
.hero-content3 a,
.intro-text a,
.option-btn,
.footer-right button,
form button,
#translate-btn    {
    display: inline-block;
    padding: 10px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.socials a:hover {
    
    color: white;
    transform: scale(1.3);
}
.hero-content a,
.hero-content2 a,
.hero-content3 a,
.intro-text a,
.option-btn {
    background: #0e448f;  /* accent blue */
    color: white;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

.option-btn {
    background: #0e448f;
}

form button,
.footer-right button,
#translate-btn,
.whatsapp-button {
    cursor: pointer;
}

form button {
    border: none;
    color: white;
    border-radius: 6px;
}

.hero-content a:hover,
.hero-content2 a:hover,
.hero-content3 a:hover,
.intro-text a:hover,
.option-btn:hover,
.form button:hover,
.footer-right button:hover,
#translate-btn:hover,
.whatsapp-button:hover {
    transform: scale(1.2);
}

/* INTRO SECTION */
.intro {
    padding: 50px 20px 50px 50px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.intro-content {
    max-width: 1400px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 280px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.intro-text {
    flex: 1;
    text-align: justify;
}
.intro-text-sm {
    flex: 1;
    background-color: rgb(237, 249, 250);
    padding: 20px;
    border-radius: 10px;
    font-size: 25px;

}

.intro-text h2 {
    margin-bottom: 30px;
    color: #0b4dab;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
}

.intro-text p {
    line-height: 1.6;
    color: #333;
    text-align: justify;
}
.intro-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #0e448f; /* accent blue */
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.intro-text a:hover {
    transform: scale(1.3);
    flex-wrap: wrap;
}


.card {
    background: linear-gradient(135deg, #e9cfba, #e6f3ff);
    padding: 30px 20px;
    width: 250px;
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    border: 1px solid #cce7ff;
    box-shadow: 0 6px 12px #0b4dab;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    
}

.cards {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.album {
    padding: 50px 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* VIDEO GRID */
.video-grid {
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.video-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border: #0b4dab solid 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-container img {
    width: 100%;
    display: flex;
    justify-content: center;
}
.album-card {
    background: linear-gradient(135deg, #e9cfba, #e6f3ff);
    padding: 5px 5px;
    border-radius: 15px;
    justify-content: center;
    border: 1px solid #cce7ff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 800px;
    width: 80%;        /* takes most of screen */
    max-width: 900px;  /* prevents it from getting too big */

}
.album-card img {
    width: 100%;
    height: 780px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    animation: fadeInOut 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

@keyframes fadeInOut {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(80, 153, 131, 0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    border:white solid 2px;
    z-index: 10;
}

.nav:hover {
    background: rgba(255, 109, 223, 0.8);
}

/* Gallery dots indicator */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #005aff;
    transform: scale(1.3);
}

.dot:hover {
    background: #0b4dab;
}

/* LEFT */
.prev {
    left: 10px;
}

/* RIGHT */
.next {
    right: 10px;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005aff, #3faceb);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card h3 {
    color: #0b4dab;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    padding: 50px 20px;
    max-width: 1600px;
    margin: 20px auto 40px;
    background-color: rgb(237, 249, 250);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container h2 {
    margin-bottom: 30px;
    color: #0b4dab;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    text-shadow: 4px 4px 1px #e9cfba;
    }

.ivf-steps {
    margin: 20px 0;
    padding-left: 20px;
}

.ivf-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

/* ADDITIONAL INFO */
.additional-info {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.additional-info h2 {
    margin-bottom: 20px;
    color: #0b4dab;         
}

.additional-info p {
    margin-bottom: 30px;
}

.info-block {
    background: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    display: inline-block;
    width: 250px;
    vertical-align: top;
}

.info-block h3 {
    margin-bottom: 10px;
    color: #333;
}

/* FORM */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}


/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: white;
    border-radius: 100px 100px 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 0;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: scale(1.08);
}
.photo-gallery {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.gallery-card {
    background: linear-gradient(135deg, #e9cfba, #e6f3ff);
    padding: 5px 5px;
    border-radius: 15px;
    justify-content: center;
    border: 1px solid #cce7ff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 300px;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active {
    background: #005aff;
    transform: scale(1.2);
}
.dot:hover {
    background: #0b4dab;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
