@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: 0.4s;
    background: #0babfe;
}

.navbar.scrolled {
    background: #0babfe;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo { flex-shrink: 0; }

.logo .brand_logo {
    width: auto;
    max-width: 100%;
    height: 56px;
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 36px;
    margin: auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .56px;
}
.nav-links a.active {
        transform: scale(1.1);
    }

    /* scroll animation */

/* .fade-up{
opacity:0;
transform:translateY(40px);
transition:all .7s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
} */

.fade-up {
  opacity: 0;
  transform: translateY(45px) scale(0.98);
  filter: blur(1px);
  transition:
    opacity 0.4s ease-out,
    transform 0.6s ease-out,
    filter 0.5s ease-out;
  will-change: transform, opacity, filter;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}



/* ================= HERO ================= */
.hero {
    min-height: 100vh;

background: linear-gradient(
152deg,
#3bb0e6 0%,
#2896d6 40%,
#1f7ec5 70%,
#176bb3 100%
);
    color: #ffffff;
    padding: 80px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero .row {
    display: flex;
    min-height: 78vh;
    position: relative;
}

.clr-white { color: #fff; }
.txt-clr1  { color: #f3fbff; }

/* ================= LEFT TEXT ================= */
.hero-left { z-index: 2; }

.small-text {
    font-size: 16px;
    line-height: 26px;
    opacity: .9;
    margin-bottom: 30px;
    text-align: left;
    margin-top: 20px;
}

.big-heading {
    font-size: 66px;
    font-weight: 300;
    line-height: 1.18;
    text-align: left;
    text-shadow: 1px 1px 2px #1d7bbd;
}

/* ================= CENTER IMPLANT IMAGE ================= */
.implant {
    width: 510px;
    max-width: 90%;
    margin-top: 20px;
    z-index: 1;
}

/* ================= DOCTOR CARDS ================= */
.doctors {
    position: absolute;
    right: 80px;
    bottom: 100px;
    display: flex;
    gap: 20px;
    height: max-content;
}

.doc-card {
    width: 180px;
    height: 260px;
    background: #8d7878;
    position: relative;
    overflow: hidden;
}

.doc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 8px;
    font-size: 12px;
    text-align: center;
}

/* ================= BOTTOM INFO ================= */
.bottom-info {
    position: absolute;
    bottom: 30px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: .9;
}

.hero .bottom-info::before {
    content: '';
    height: 1px;
    position: absolute;
    width: 100vw;
    left: -80px;
    top: -16px;
    background: rgba(255,255,255,0.48);
}

/* ================= ABOUT ================= */
.about {
    background: #ddd3cd;
    padding: 70px 80px;
    display: flex;
    gap: 60px;
    font-size: 16px;
    line-height: 28px;
}

.about div { width: 50%; }

/* ================= FOOTER ================= */
.site-footer{
    background:#f4faff;
    padding:70px 0 20px;
    border-top:1px solid #dbeeff;
}

.footer-logo{
    width:170px;
    filter:invert(.85);
}

.footer-text{
    font-size:15px;
    line-height:1.7;
    color:#555;
}

/* headings */

.footer-contact h5{
    font-weight:600;
    font-size:25px;
    margin-bottom:22px;
    color:#0c7bc1;
    position:relative;
}
.footer-contact h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:35px;
    height:2px;
    background:#28acff;
    border-radius:2px;
}

/* SERVICES */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links a{
    text-decoration:none;
    color:#444;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.25s;
}

.footer-links a i{
    font-size:14px;
    color:#28acff;
}

.contact-item:hover {
    transition:.25s;
}
.contact-item a{
    text-decoration: none;
    color: inherit;
}

.footer-links a:hover, .contact-item:hover {
    color:#28acff;
    transform:translateX(5px);
}


.footer-links li{
    margin-bottom:10px;
}

/* CONTACT */

.contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    margin-bottom:10px;
    color:#555;
}

.contact-item i{
    color:#28acff;
    font-size:16px;
}

/* vertical divider */

.footer-divider{
    border-left:1px solid #28adff;
    padding-left:25px;
}

/* bottom */

.footer-bottom{
    margin-top:40px;
    padding-top:18px;
    border-top:1px solid #28adff;
    font-size:14px;
    color:#777;
}

.section-two{
padding: 100px 0px 50px;
background:#f7f7f7;
}

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


/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 2560px) {
    .big-heading {
    font-size: 6.5rem;}
}

@media (max-width: 1640px) {
    .big-heading {
    font-size: 4rem;}
}

/* ---- TABLET (993px — 1024px) ---- */
@media (max-width: 1024px) {
    .navbar { padding: 15px 30px; }
    .logo .brand_logo { width: auto;
    height : 44px;
    }

    .nav-links a {
    font-size: 14px;
    letter-spacing: .46px;
}
.nav-links {
    gap: 30px;
}
    .hero {
        padding: 100px 40px 60px;
        min-height: auto;
    }

    .hero .row {
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        text-align: center;
    }

    /* .small-text { text-align: center; } */

    .big-heading { font-size: 42px; }

    .implant {
        width: 320px;
        margin: 0 auto;
        display: block;
    }
    .doctors {
        position: relative;
        right: auto;
        bottom: auto;
        justify-content: center;
        margin-top: 20px;
    }
    .doc-card {
        width: 160px;
        height: 230px;
    }
    .bottom-info {
        position: relative;
        left: auto;
        right: auto;
        margin-top: 50px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero .bottom-info::before { display: none; }
    .about {
        padding: 50px 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .logo .brand_logo {
        width: auto;
        transform: scale(1.19);
        height: 30px;
    }
    .hero {
        padding: 90px 20px 50px;
    }

    .hero .row {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .hero-left {
        width: 100%;
        text-align: center;
    }

    .small-text {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .big-heading {
        font-size: 30px;
        line-height: 1.3;
        text-align: center;
    }

    .implant {
        width: 220px;
        margin: 0 auto;
        display: block;
    }

    .doctors {
        position: relative;
        right: auto;
        bottom: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 10px;
    }

    .doc-card {
        width: 140px;
        height: 200px;
    }

    .bottom-info {
        position: relative;
        left: auto;
        right: auto;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 60px;
    }

    .hero .bottom-info::before { display: none; }

    .about {
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
    }

    .about div { width: 100%; }

    .site-footer { text-align: center; }
    .footer-text { margin: auto; }
}

@media (max-width: 600px) {
.section-two {
    padding: 40px 0px 50px;
}
}
/* ---- SMALL MOBILE (max 400px) ---- */
@media (max-width: 420px) {
    .big-heading { font-size: 26px; }
    .implant { width: 180px; }
    .doc-card { width: 130px; height: 185px; }
}


