/*==================================================

ISLAMABAD ENT CENTER
PREMIUM MEDICAL WEBSITE
Designed By WebSuites

==================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/*==============================
ROOT
==============================*/

:root{

--primary:#1E6FFF;
--secondary:#2EA8FF;

--navy:#07152B;
--navy-light:#0D2342;
--card:#132E52;

--white:#FFFFFF;
--text:#EAF2FC;
--paragraph:#C5D3E6;

--border:rgba(255,255,255,.08);

--shadow:0 20px 45px rgba(0,0,0,.30);

--radius:22px;

--transition:.35s ease;

}

/*==============================
RESET
==============================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

scroll-behavior:smooth;

}

html{

overflow-x:hidden;

}

body{

font-family:'Outfit',sans-serif;

background:var(--navy);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#081B36;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--primary),var(--secondary));

border-radius:20px;

}

/*==============================
SELECTION
==============================*/

::selection{

background:var(--primary);

color:white;

}

/*==============================
CONTAINER
==============================*/

.container{

width:min(92%,1200px);

margin:auto;

}

/*==============================
SECTIONS
==============================*/

section{

padding:110px 0;

position:relative;

}

/*==============================
HEADINGS
==============================*/

h1{

font-size:64px;

line-height:1.1;

font-weight:800;

}

h2{

font-size:46px;

font-weight:700;

line-height:1.2;

}

h3{

font-size:26px;

font-weight:600;

}

p{

color:var(--paragraph);

font-size:17px;

}

/*==============================
LINKS
==============================*/

a{

text-decoration:none;

color:inherit;

}

/*==============================
IMAGES
==============================*/

img{

width:100%;

display:block;

}

/*==============================
BUTTONS
==============================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:60px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:white;

font-weight:600;

transition:var(--transition);

box-shadow:var(--shadow);

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:60px;

border:2px solid rgba(255,255,255,.15);

background:transparent;

color:white;

font-weight:600;

transition:var(--transition);

}

.btn-secondary:hover{

background:white;

color:var(--navy);

}

/*==============================
SECTION TITLE
==============================*/

.section-title{

max-width:700px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

background:rgba(46,168,255,.12);

border:1px solid rgba(46,168,255,.25);

border-radius:50px;

color:#6FC7FF;

font-size:14px;

margin-bottom:18px;

}

.section-title h2{

margin-bottom:18px;

}

.section-title p{

max-width:620px;

margin:auto;

}

/*==============================
LOADER
==============================*/

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:var(--navy);

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

transition:.6s;

}

.loader.hide{

opacity:0;

visibility:hidden;

}

.loader-circle{

width:70px;

height:70px;

border-radius:50%;

border:6px solid rgba(255,255,255,.08);

border-top:6px solid var(--secondary);

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*==============================
HEADER
==============================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

padding:18px 0;

transition:.4s;

}

header.sticky{

background:rgba(7,21,43,.90);

backdrop-filter:blur(16px);

border-bottom:1px solid var(--border);

}

/*==============================
NAVBAR
==============================*/

.navbar{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:14px;

font-size:24px;

font-weight:700;

color:white;

}

.logo img{

width:52px;

height:52px;

object-fit:contain;

}

.nav-links{

display:flex;

align-items:center;

gap:35px;

list-style:none;

}

.nav-links a{

font-weight:500;

transition:var(--transition);

position:relative;

}

.nav-links a:hover,

.nav-links .active{

color:#7BD3FF;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

.nav-buttons{

display:flex;

align-items:center;

gap:18px;

}

#menu-btn{

display:none;

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

/*==============================
MOBILE MENU
==============================*/

.mobile-menu{

position:fixed;

top:90px;

right:-100%;

width:300px;

background:var(--navy-light);

border-left:1px solid var(--border);

padding:35px;

display:flex;

flex-direction:column;

gap:25px;

transition:.4s;

z-index:998;

box-shadow:var(--shadow);

}

.mobile-menu.active{

right:0;

}

.mobile-menu a{

font-size:18px;

font-weight:500;

}

.mobile-call{

margin-top:15px;

text-align:center;

padding:14px;

border-radius:50px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:white;

}
/*==================================================

PART 2
HERO • ABOUT • SERVICES • WHY US • COUNTERS

==================================================*/

/*==============================
HERO
==============================*/

.hero{

padding-top:180px;

padding-bottom:120px;

overflow:hidden;

}

.hero-wrapper{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:70px;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 18px;

background:rgba(46,168,255,.10);

border:1px solid rgba(46,168,255,.25);

border-radius:50px;

margin-bottom:25px;

font-size:15px;

color:#84D7FF;

}

.hero-badge i{

color:#2EA8FF;

}

.hero-left h1{

margin-bottom:25px;

}

.hero-left h1 span{

background:linear-gradient(135deg,#7DD3FC,#1E6FFF);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-left p{

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:50px;

flex-wrap:wrap;

}

/*==============================
HERO STATS
==============================*/

.hero-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:18px;

}

.stat-box{

background:var(--card);

padding:25px;

border-radius:20px;

border:1px solid var(--border);

text-align:center;

transition:var(--transition);

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h3{

font-size:34px;

margin-bottom:8px;

color:#7DD3FC;

}

.stat-box span{

font-size:15px;

color:var(--paragraph);

}

/*==============================
HERO IMAGE
==============================*/

.hero-right{

position:relative;

display:flex;

justify-content:center;

}

.hero-image{

width:100%;

max-width:520px;

border-radius:30px;

box-shadow:0 35px 70px rgba(0,0,0,.35);

}

/*==============================
FLOATING CARDS
==============================*/

.floating-card{

position:absolute;

display:flex;

align-items:center;

gap:16px;

background:rgba(19,46,82,.96);

padding:18px 22px;

border-radius:20px;

border:1px solid var(--border);

backdrop-filter:blur(15px);

box-shadow:var(--shadow);

animation:float 4s ease-in-out infinite;

}

.card-one{

top:12%;

left:-35px;

}

.card-two{

bottom:12%;

right:-30px;

animation-delay:2s;

}

.floating-card i{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

font-size:22px;

color:white;

}

.floating-card h4{

font-size:18px;

margin-bottom:3px;

}

.floating-card p{

font-size:14px;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

/*==============================
ABOUT
==============================*/

.about-preview{

background:var(--navy-light);

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

border-radius:28px;

box-shadow:var(--shadow);

}

.about-content h3{

margin-bottom:22px;

}

.about-content p{

margin-bottom:30px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.feature{

display:flex;

align-items:center;

gap:12px;

}

.feature i{

color:#2EA8FF;

font-size:20px;

}

/*==============================
SERVICES
==============================*/

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.service-card{

background:var(--card);

border-radius:24px;

overflow:hidden;

border:1px solid var(--border);

transition:var(--transition);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow);

}

.service-card img{

height:220px;

object-fit:cover;

}

.service-card h3{

padding:25px 25px 12px;

}

.service-card p{

padding:0 25px;

min-height:80px;

}

.service-card a{

display:inline-flex;

align-items:center;

gap:10px;

margin:25px;

font-weight:600;

color:#7DD3FC;

transition:.3s;

}

.service-card:hover a{

gap:16px;

}

/*==============================
WHY US
==============================*/

.why-us{

background:var(--navy-light);

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.why-card{

background:var(--card);

padding:50px 35px;

border-radius:24px;

text-align:center;

border:1px solid var(--border);

transition:var(--transition);

display:flex;

flex-direction:column;

justify-content:flex-start;

height:100%;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.25);

border-color:rgba(46,168,255,.25);

}

.why-card i{

width:90px;

height:90px;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

font-size:34px;

margin-bottom:30px;

box-shadow:0 15px 35px rgba(46,168,255,.25);

color:#fff;

}

.why-card h3{

font-size:26px;

margin-bottom:18px;

line-height:1.3;

color:#fff;

}

.why-card p{

font-size:16px;

line-height:1.8;

color:#BFD0E9;

margin:0;

}

/*==============================
PROCESS SECTION
==============================*/

.process-section{

background:var(--navy);

padding:110px 0;

}

.process-grid{

display:grid;

grid-template-columns:repeat(1,1fr);

gap:30px;

margin-top:60px;

align-items:stretch;

}

.process-grid .why-card{

padding:45px 30px;

}

/*==============================
COUNTERS
==============================*/

.counter-section{

padding:90px 0;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.counter-card{

background:linear-gradient(180deg,#132E52,#0D2342);

padding:35px;

text-align:center;

border-radius:22px;

border:1px solid var(--border);

transition:var(--transition);

}

.counter-card:hover{

transform:translateY(-8px);

}

.counter-card h2{

font-size:48px;

color:#7DD3FC;

margin-bottom:10px;

}

.counter-card p{

font-size:16px;

}
/*==================================================

PART 3
REVIEWS • CTA • FOOTER • FLOATING BUTTONS • ANIMATIONS

==================================================*/

/*==============================
REVIEWS
==============================*/

.reviews{

background:var(--navy-light);

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.review-card{

background:var(--card);

padding:35px;

border-radius:24px;

border:1px solid var(--border);

transition:var(--transition);

}

.review-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow);

}

.stars{

display:flex;

gap:6px;

margin-bottom:20px;

color:#FFD54A;

font-size:18px;

}

.review-card p{

margin-bottom:25px;

}

.review-user h4{

font-size:20px;

margin-bottom:4px;

}

.review-user span{

color:#84D7FF;

font-size:15px;

}

/*==============================
APPOINTMENT CTA
==============================*/

.appointment{

padding:110px 0;

}

.appointment-box{

background:linear-gradient(135deg,#132E52,#1E6FFF);

padding:70px;

border-radius:30px;

text-align:center;

overflow:hidden;

position:relative;

}

.appointment-box::before{

content:"";

position:absolute;

width:260px;

height:260px;

border-radius:50%;

background:rgba(255,255,255,.05);

top:-90px;

right:-90px;

}

.appointment-box::after{

content:"";

position:absolute;

width:200px;

height:200px;

border-radius:50%;

background:rgba(255,255,255,.04);

left:-70px;

bottom:-70px;

}

.appointment-box h2{

margin-bottom:20px;

position:relative;

z-index:2;

}

.appointment-box p{

max-width:650px;

margin:auto;

margin-bottom:35px;

color:#EEF6FF;

position:relative;

z-index:2;

}

.appointment-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

position:relative;

z-index:2;

}

/*==============================
FOOTER
==============================*/

footer{

background:#04101F;

padding:90px 0 25px;

border-top:1px solid var(--border);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:50px;

margin-bottom:60px;

}

.footer-grid h3{

margin-bottom:22px;

font-size:22px;

}

.footer-grid p{

margin-bottom:15px;

}

.footer-grid ul{

list-style:none;

}

.footer-grid ul li{

margin-bottom:14px;

}

.footer-grid ul li a{

color:var(--paragraph);

transition:.3s;

}

.footer-grid ul li a:hover{

color:#7DD3FC;

padding-left:6px;

}

.footer-grid i{

color:#2EA8FF;

margin-right:10px;

}

/*==============================
SOCIAL ICONS
==============================*/

.socials{

display:flex;

gap:15px;

margin-top:25px;

}

.socials a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#132E52;

transition:var(--transition);

}

.socials a:hover{

background:linear-gradient(135deg,var(--primary),var(--secondary));

transform:translateY(-6px);

}

/*==============================
FOOTER BOTTOM
==============================*/

.footer-bottom{

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

}

.footer-bottom p{

font-size:15px;

}

/*==============================
FLOATING BUTTONS
==============================*/

.floating-buttons{

position:fixed;

right:22px;

bottom:22px;

display:flex;

flex-direction:column;

gap:14px;

z-index:999;

}

.float-call,

.float-whatsapp{

width:62px;

height:62px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

color:white;

box-shadow:0 18px 40px rgba(0,0,0,.35);

transition:var(--transition);

}

.float-call{

background:linear-gradient(135deg,#1E6FFF,#2EA8FF);

}

.float-whatsapp{

background:#25D366;

}

.float-call:hover,

.float-whatsapp:hover{

transform:translateY(-8px) scale(1.08);

}

/*==============================
FADE ANIMATION
==============================*/

.fade-up{

opacity:0;

transform:translateY(50px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*==============================
HOVER EFFECTS
==============================*/

.service-card,

.review-card,

.why-card,

.counter-card,

.stat-box{

cursor:pointer;

}

.service-card:hover img{

transform:scale(1.08);

}

.service-card img{

transition:.45s;

}

.hero-image{

transition:.5s;

}

.hero-image:hover{

transform:scale(1.02);

}

/*==============================
SMOOTH TRANSITIONS
==============================*/

a,

button,

img,

.card,

.service-card,

.review-card,

.why-card{

transition:all .35s ease;

}

/*==============================
BACKGROUND DECORATION
==============================*/

.hero::before{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

background:rgba(30,111,255,.08);

filter:blur(90px);

top:-120px;

right:-120px;

z-index:-1;

}

.hero::after{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(46,168,255,.05);

left:-100px;

bottom:-100px;

filter:blur(90px);

z-index:-1;

}
/*==================================================

PART 4
FULL RESPONSIVE

==================================================*/

/*==============================
1200px
==============================*/

@media(max-width:1200px){

.hero-wrapper,
.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.hero-right{

order:-1;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==============================
992px
==============================*/

@media(max-width:992px){

.nav-links{

display:none;

}

#menu-btn{

display:block;

}

.hero{

padding-top:150px;

}

.hero-left{

text-align:center;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

max-width:420px;

}

.floating-card{

display:none;

}

.section-title h2{

font-size:40px;

}

}

/*==============================
768px
==============================*/

@media(max-width:768px){

section{

padding:80px 0;

}

h1{

font-size:42px;

}

h2{

font-size:34px;

}

.hero-stats{

grid-template-columns:repeat(3,1fr);

gap:12px;

}

.stat-box{

padding:18px;

}

.about-features{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.service-card img{

height:170px;

}

.why-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.reviews-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

gap:35px;

}

.appointment-box{

padding:45px 25px;

}

}

/*==============================
576px
==============================*/

@media(max-width:576px){

.container{

width:92%;

}

.hero{

padding-top:130px;

}

h1{

font-size:34px;

}

h2{

font-size:28px;

}

p{

font-size:15px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.btn-primary,

.btn-secondary{

width:100%;

}

.hero-stats{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

gap:14px;

}

.service-card{

border-radius:18px;

}

.service-card img{

height:130px;

}

.service-card h3{

padding:15px;

font-size:18px;

}

.service-card p{

padding:0 15px;

font-size:14px;

min-height:auto;

}

.service-card a{

margin:15px;

font-size:14px;

}

.why-grid{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:1fr 1fr;

}

.review-card{

padding:25px;

}

.logo span{

display:none;

}

.mobile-menu{

width:100%;

top:82px;

}

}

/*==============================
430px
==============================*/

@media(max-width:430px){

h1{

font-size:30px;

}

.section-title{

margin-bottom:45px;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

gap:12px;

}

.service-card img{

height:110px;

}

.service-card h3{

font-size:16px;

}

.service-card p{

font-size:13px;

}

.counter-grid{

grid-template-columns:1fr;

}

.hero-image{

max-width:320px;

}

.float-call,

.float-whatsapp{

width:56px;

height:56px;

font-size:20px;

}

}

/*==============================
390px
==============================*/

@media(max-width:390px){

.services-grid{

grid-template-columns:1fr;

}

.hero-image{

max-width:290px;

}

h1{

font-size:28px;

}

.section-title h2{

font-size:26px;

}

.hero-badge{

font-size:13px;

}

}

/*==============================
360px
==============================*/

@media(max-width:360px){

.container{

width:94%;

}

h1{

font-size:25px;

}

.hero{

padding-top:120px;

}

.hero-image{

max-width:260px;

}

.appointment-box{

padding:35px 18px;

}

footer{

padding:70px 0 20px;

}

}

/*==============================
LARGE DESKTOP
==============================*/

@media(min-width:1400px){

.container{

max-width:1320px;

}

.hero-image{

max-width:600px;

}

}
/*==================================
ABOUT PAGE HERO
==================================*/

.page-hero{

padding:170px 0 100px;

background:linear-gradient(135deg,#07152B,#0D2342);

position:relative;

overflow:hidden;

}

.page-hero::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(30,111,255,.08);

border-radius:50%;

top:-150px;

right:-150px;

filter:blur(80px);

}

.page-hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:70px;

position:relative;

z-index:2;

}

.page-content{

max-width:700px;

}

.page-content span{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 18px;

border-radius:50px;

background:rgba(46,168,255,.12);

border:1px solid rgba(46,168,255,.25);

color:#6FC7FF;

margin-bottom:25px;

font-weight:600;

}

.page-content h1{

font-size:58px;

line-height:1.1;

margin-bottom:20px;

color:#fff;

}

.page-content h1 span{

background:linear-gradient(135deg,#7DD3FC,#1E6FFF);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.page-content p{

font-size:18px;

color:#C5D3E6;

margin-bottom:30px;

max-width:650px;

}

.page-hero-image{

display:flex;

justify-content:center;

align-items:center;

}

.page-hero-image img{

width:100%;

max-width:520px;

height:480px;

object-fit:cover;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.25);

border:1px solid rgba(255,255,255,.08);

}

.breadcrumb{

display:flex;

align-items:center;

gap:10px;

}

.breadcrumb a{

color:#6FC7FF;

font-weight:600;

}

.breadcrumb i{

font-size:12px;

color:#7A9BC8;

}

.breadcrumb span{

background:none;

border:none;

padding:0;

margin:0;

color:#fff;

}
/* ================= CONTACT PAGE ================= */


.contact-hero{

min-height:520px;

display:flex;
align-items:center;

padding:140px 8% 80px;

background:#06152d;

}


.contact-hero-content{

max-width:850px;

}



.contact-hero-content h1{

font-size:60px;

line-height:1.1;

font-weight:800;

color:#eef4ff;

}



.contact-hero-content h1 span{

color:#2995ff;

}



.contact-hero-content p{

font-size:18px;

color:#c7d8f7;

max-width:700px;

line-height:1.8;

margin-top:25px;

}



.hero-btn{

margin-top:35px;

display:inline-block;

padding:16px 40px;

border-radius:50px;

background:#278cff;

color:white;

text-decoration:none;

font-weight:600;

}


.contact-hero-content h1{

font-size:55px;
font-weight:800;

color:#f4f7ff;

margin-bottom:20px;

}


.contact-hero-content p{

max-width:750px;
margin:auto;

font-size:18px;
line-height:1.8;

color:#c8d7f5;

}



.contact-hero .btn{

display:inline-block;

margin-top:35px;

padding:15px 35px;

border-radius:40px;

background:#248cff;

color:white;

font-weight:600;

text-decoration:none;

}





/* MAIN CONTACT SECTION */


.contact-section{

background:#07172f;

padding:90px 8%;

}



.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}





/* LEFT SIDE */


.contact-info h2{

font-size:42px;

color:white;

font-weight:800;

}



.contact-info>p{

color:#c8d7f5;

margin-bottom:35px;

}



.contact-card{

background:rgba(20,45,85,.65);

border:1px solid rgba(255,255,255,.08);

padding:25px;

border-radius:22px;

margin-bottom:20px;

backdrop-filter:blur(10px);

}



.contact-card h3{

color:#45a3ff;

font-size:20px;

margin-bottom:10px;

}



.contact-card p{

color:#e4ecff;

line-height:1.7;

}





/* FORM */


.contact-form{

background:#ffffff;

padding:45px;

border-radius:30px;

box-shadow:0 20px 60px rgba(0,0,0,.25);

}



.contact-form h2{

font-size:35px;

color:#07172f;

margin-bottom:25px;

}



.contact-form input,
.contact-form textarea,
.contact-form select{


width:100%;

padding:16px;

margin-bottom:18px;

border-radius:14px;

border:1px solid #ddd;

font-family:Poppins;

font-size:15px;

}



.contact-form textarea{

height:140px;

resize:none;

}



.contact-form button{

width:100%;

padding:17px;

border:none;

border-radius:40px;

background:#248cff;

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

}





/* MAP */


.map-section{

background:#050f22;

padding:80px 8%;

text-align:center;

}



.map-section h2{

color:white;

font-size:40px;

margin-bottom:30px;

}



.map-section iframe{

width:100%;

height:420px;

border-radius:25px;

border:none;

}
@media(max-width:992px){

.page-hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.page-content{

max-width:100%;

}

.page-hero-image{

margin-top:50px;

}

.page-hero-image img{

max-width:450px;

height:auto;

}

}

@media(max-width:768px){

.page-content h1{

font-size:42px;

}

.page-hero-image img{

max-width:100%;

border-radius:25px;

}

}
/*==================================
OUR DOCTORS
==================================*/

.doctors-section{
    padding:100px 0;
    background:#08111f;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(46,168,255,.12);
    border:1px solid rgba(46,168,255,.25);
    color:#5FB8FF;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:46px;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:#4EA3FF;
}

.section-heading p{
    color:#C7D4E6;
    line-height:1.8;
}

.doctor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.doctor-card{
    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
}

.doctor-card:hover{
    transform:translateY(-10px);
    border-color:#2EA8FF;
}

.doctor-image{
    width:130px;
    height:130px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    background:#1d3f70;
}

.doctor-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.doctor-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.doctor-role{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:rgba(46,168,255,.12);
    color:#5FB8FF;
    margin-bottom:20px;
    font-size:14px;
}

.doctor-info{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.doctor-info p{
    color:#d7e6f7;
}

.doctor-info i{
    color:#4EA3FF;
    margin-right:8px;
}

.appointment-note{
    margin-top:70px;
    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:45px;
    text-align:center;
}

.appointment-note h3{
    font-size:30px;
    margin-bottom:20px;
}

.appointment-note h3 i{
    color:#4EA3FF;
    margin-right:10px;
}

.appointment-note p{
    color:#d7e6f7;
    max-width:750px;
    margin:0 auto 30px;
    line-height:1.8;
}

/* Mobile */

@media(max-width:991px){

.doctor-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.doctor-grid{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:36px;
}

.doctor-card{
    padding:30px;
}

.appointment-note{
    padding:30px;
}

}
/*==========================
DOCTOR NOTE
==========================*/

.doctor-note{
    margin-top:60px;
    padding:40px;
    text-align:center;
    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
}

.doctor-note i{
    font-size:42px;
    color:#2EA8FF;
    margin-bottom:20px;
    display:block;
}

.doctor-note p{
    max-width:850px;
    margin:0 auto 30px;
    color:#D6E6F7;
    font-size:17px;
    line-height:1.8;
}

.doctor-note strong{
    color:#ffffff;
}

.doctor-note .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}
/*==================================
LOCATION SECTION
==================================*/

.location-section{
    padding:100px 0;
}

.location-card{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;

    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    overflow:hidden;
}

.location-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.location-content{
    padding:50px;
}

.location-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    background:rgba(46,168,255,.12);

    border:1px solid rgba(46,168,255,.25);

    color:#5FB8FF;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:600;
}

.location-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.location-content p{
    color:#D6E6F7;
    line-height:1.8;
    margin-bottom:30px;
}

.location-content strong{
    color:white;
}

@media(max-width:991px){

.location-card{

grid-template-columns:1fr;

}

.location-content{

padding:35px;

}

.location-content h2{

font-size:34px;

}

}
/*==================================
MISSION & VISION
==================================*/

.mission-section{
    padding:100px 0;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.mission-card{
    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    transition:.35s;
}

.mission-card:hover{
    transform:translateY(-8px);
    border-color:#2EA8FF;
}

.mission-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#2EA8FF,#1E6FFF);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#fff;

    margin-bottom:25px;
}

.mission-card h3{
    font-size:32px;
    margin-bottom:18px;
}

.mission-card p{
    color:#D7E6F7;
    line-height:1.9;
}

@media(max-width:991px){

.mission-grid{

grid-template-columns:1fr;

}

.mission-card{

padding:30px;

}

.mission-card h3{

font-size:28px;

}

}
/*==================================
APPOINTMENT INFORMATION
==================================*/

.appointment-info{
    padding:90px 0;
}

.appointment-box{
    background:#13284B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:60px;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.appointment-icon{
    min-width:90px;
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,#2EA8FF,#1E6FFF);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#fff;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(46,168,255,.12);
    border:1px solid rgba(46,168,255,.25);
    color:#6FC7FF;
    font-weight:600;
    margin-bottom:20px;
}

.appointment-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.appointment-content p{
    color:#D6E6F7;
    line-height:1.8;
    margin-bottom:30px;
}

.appointment-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:35px;
}

.appointment-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.appointment-item i{
    color:#2EA8FF;
    font-size:20px;
}

.appointment-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:991px){

.appointment-box{
    flex-direction:column;
    padding:35px;
}

.appointment-list{
    grid-template-columns:1fr;
}

.appointment-content h2{
    font-size:32px;
}

}