Dr. Alaa El Karhani | Specialist Urologist | Diagnostic Urological Center
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #008082;
--secondary: #192f59;
--accent: #e67e22;
--light-bg: #f0f9f9;
--text-dark: #1a1a1a;
--text-light: #666666;
--border: #e0e0e0;
--white: #ffffff;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
}
/* Header & Navigation */
header {
background: var(--white);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
nav {
max-width: 1400px;
margin: 0 auto;
padding: 0.8rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}
.logo-section {
display: flex;
align-items: center;
gap: 0;
text-decoration: none;
color: var(--secondary);
white-space: nowrap;
flex-shrink: 0;
}
.logo-section img {
height: 60px;
width: auto;
flex-shrink: 0;
transition: transform 0.3s;
}
.logo-section:hover img {https://alaaelkarhani.com/wp-content/uploads/2026/07/logo.png
transform: scale(1.05);
}
nav ul {
display: flex;
list-style: none;
gap: 1.5rem;
flex: 1;
justify-content: center;
margin: 0;
padding: 0;
}
nav a {
text-decoration: none;
color: var(--text-dark);
font-size: 0.9rem;
font-weight: 500;
transition: color 0.3s;
white-space: nowrap;
}
nav a:hover {
color: var(--primary);
}
.nav-btn {
background: var(--primary);
color: var(--white);
padding: 0.7rem 1.5rem;
border-radius: 25px;
text-decoration: none;
font-size: 0.85rem;
font-weight: 600;
transition: background 0.3s;
white-space: nowrap;
flex-shrink: 0;
}
.nav-btn:hover {
background: var(--secondary);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary) 0%, #00a3a6 100%);
color: var(--white);
padding: 3rem 2rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
}
.hero-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
position: relative;
z-index: 2;
}
.hero-text h1 {
font-size: 2.8rem;
line-height: 1.2;
margin-bottom: 1rem;
}
.hero-text p {
font-size: 1rem;
margin-bottom: 2rem;
opacity: 0.95;
line-height: 1.8;
}
.hero-buttons {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
}
.btn {
padding: 0.9rem 1.8rem;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
border: none;
cursor: pointer;
transition: all 0.3s;
display: inline-block;
}
.btn-primary {
background: var(--white);
color: var(--primary);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}
.btn-secondary:hover {
background: rgba(255,255,255,0.1);
}
.hero-image img {https://alaaelkarhani.com/wp-content/uploads/2026/07/logo.png
width: 100%;
height: auto;
border-radius: 12px;
}
/* Container */
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
section {
padding: 4rem 2rem;
}
section h2 {
font-size: 2.2rem;
color: var(--secondary);
margin-bottom: 1rem;
text-align: center;
}
section .subtitle {
text-align: center;
color: var(--text-light);
margin-bottom: 3rem;
font-size: 1rem;
}
/* About Section */
#about {
background: var(--light-bg);
}
.about-wrapper {
max-width: 1400px;
margin: 0 auto;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 2rem;
align-items: start;
}
.about-card {
background: var(--white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.about-card h3 {
color: var(--primary);
font-size: 1.4rem;
margin-bottom: 1.2rem;
}
.about-card p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1rem;
}
.credentials-list {
list-style: none;
}
.credentials-list li {
padding: 0.8rem 0;
color: var(--text-light);
border-bottom: 1px solid var(--border);
}
.credentials-list li:last-child {
border-bottom: none;
}
.credentials-list li:before {
content: '✓ ';
color: var(--primary);
font-weight: bold;
font-size: 1.2rem;
}
/* Services Section */
#services {
background: var(--white);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.service-card {
background: var(--light-bg);
padding: 2rem;
border-radius: 12px;
border-top: 4px solid var(--primary);
transition: all 0.3s;
text-align: center;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,128,130,0.15);
}
.service-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary) 0%, #00a3a6 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
margin: 0 auto 1.5rem;
box-shadow: 0 8px 20px rgba(0,128,130,0.25);
transition: all 0.3s;
}
.service-card:hover .service-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 12px 30px rgba(0,128,130,0.35);
}
.service-icon svg {
width: 50px;
height: 50px;
color: var(--white);
}
.service-card h3 {
color: var(--secondary);
margin-bottom: 0.8rem;
font-size: 1.1rem;
}
.service-card p {
color: var(--text-light);
font-size: 0.95rem;
line-height: 1.7;
}
/* Contact Section */
#contact {
background: var(--light-bg);
}
.contact-wrapper {
max-width: 1400px;
margin: 0 auto;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 2rem;
}
.contact-info-box {
background: var(--white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-info-box h3 {
color: var(--primary);
margin-bottom: 2rem;
font-size: 1.3rem;
}
.info-item {
margin-bottom: 1.8rem;
padding-bottom: 1.8rem;
border-bottom: 1px solid var(--border);
}
.info-item:last-child {
border-bottom: none;
}
.info-label {
color: var(--primary);
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.4rem;
}
.info-value {
color: var(--text-dark);
font-size: 1rem;
}
.contact-form {
background: var(--white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-form h3 {
color: var(--secondary);
margin-bottom: 1.5rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.6rem;
color: var(--text-dark);
font-weight: 500;
font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.85rem;
border: 1px solid var(--border);
border-radius: 6px;
font-family: inherit;
font-size: 0.95rem;
transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0,128,130,0.1);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.form-submit {
background: var(--primary);
color: var(--white);
padding: 0.9rem 1.8rem;
border: none;
border-radius: 25px;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
width: 100%;
}
.form-submit:hover {
background: var(--secondary);
}
/* Footer */
footer {
background: var(--secondary);
color: var(--white);
padding: 3rem 2rem 2rem;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
margin-bottom: 1.2rem;
font-size: 1rem;
font-weight: 600;
}
.footer-section p,
.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 0.9rem;
line-height: 1.8;
transition: color 0.3s;
}
.footer-section a:hover {
color: var(--white);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s;
}
.social-links a:hover {
background: var(--primary);
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 2rem;
text-align: center;
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
}
/* Responsive */
@media (max-width: 768px) {
nav {
flex-wrap: wrap;
gap: 0.5rem;
padding: 0.6rem 1rem;
}
.logo-section img {
height: 45px;
}
nav ul {
gap: 0.8rem;
font-size: 0.8rem;
order: 3;
width: 100%;
flex: none;
}
.nav-btn {
padding: 0.5rem 1rem;
font-size: 0.75rem;
order: 4;
}
.hero {
padding: 2rem 1rem;
}
.hero-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.hero-text h1 {
font-size: 1.8rem;
}
.about-grid,
.contact-grid,
.services-grid {
grid-template-columns: 1fr;
}
section h2 {
font-size: 1.6rem;
}
section {
padding: 2rem 1rem;
}
}
Your Partner for Urological Health
Specialized urological care with 4+ years of advanced surgical expertise. Expert diagnosis and treatment of all urological conditions with personalized, patient-centered approach using the latest medical technology.
About Dr. Alaa El Karhani
Diagnostic Urological Center
Professional Profile
Dr. Alaa El Karhani is an accomplished urologist with over four years of specialized practice and surgical experience. He combines extensive clinical expertise with the latest medical technologies to deliver exceptional patient outcomes.
Trained at leading European and Lebanese medical institutions, Dr. Alaa has developed a comprehensive approach to urological care—from diagnosis to advanced surgical management. Committed to providing evidence-based treatment and ensuring maximum patient satisfaction.
Education & Credentials
- DFMSA - University of Strasbourg (2018-2019)
- Laparoscopic Surgery Diploma - Université Saint Joseph, Beirut (2016-2017)
- General Urology Diploma - Beirut Arab University (2011-2017)
- Doctor of Medicine - Kaunas Medical University, Lithuania (2004-2010)
- Languages: Arabic, French, English
Current Positions
- Attending Physician - Albert Haykal Hospital, Tripoli
- Part-time Physician - Lebanese Army Medical Corps
- Part-time Physician - Islamic Hospital, Tripoli
- Part-time Physician - Chifaa Hospital, Tripoli
Advanced Training
- University Hospital of Strasbourg, France (2018-2019)
- Regional Hospital of Auxerre, France (2018)
- Hospital of Sens, France (2017-2018)
- Rafic Hariri University Hospital, Beirut (Six-year residency)
- European Association of Urology (EAU) member
Urology Services
Comprehensive diagnosis and treatment of all urological conditions
Kidney & Ureteral Stones
Minimally invasive treatment using flexible and rigid ureteroscopy, and mini-percutaneous nephrolithotomy for large kidney stones with high success rates.
Prostate Health
Benign prostate hyperplasia treatment including TURP, HoLEP, and Green Light Laser therapy, customized to your specific needs and symptoms.
Urological Oncology
Comprehensive diagnosis and management of bladder, prostate, kidney, and testicular cancers using evidence-based protocols and coordinated care.
Incontinence Treatment
Female and male incontinence management including TVT, TOT, and artificial sphincter procedures tailored to individual needs.
Pediatric Urology
Specialized care for children with congenital and acquired urological conditions, voiding disorders, and pediatric stone disease.
Advanced Surgery
Robotic and minimally invasive surgical techniques utilizing the latest technology for optimal outcomes and faster patient recovery.
function handleSubmit(e) {
e.preventDefault();
alert('Thank you for your appointment request. We will contact you shortly to confirm.');
e.target.reset();
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});