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

:root {
    --bg: #dff0f8;
    --bg2: #eaf6ff;
    --accent: #0077B6;
    --accent2: #00B4D8;
    --dark: #0A2540;
    --text: #1A3C5E;
    --muted: #4a6fa5;
    --card: rgba(255,255,255,0.75);
    --shadow: 0 8px 32px rgba(0,119,182,0.12);
    --radius: 18px;
}

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(160deg, #cce9f7 0%, #dff0f8 50%, #eaf6ff 100%);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    color: var(--dark);
}

p, span, a, li {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
}

/* ── SECTION TITLE UNDERLINE ── */
section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: block;
    width: 100%;
    left: unset;
    transform: none;
}
section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 5px;
    margin: 10px auto 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 0px;
    min-height: 60vh;
    background: linear-gradient(135deg, #b8dff5 0%, #dff0f8 60%, #eaf6ff 100%);
}

.hero-left { width: 50%; }

.hero-left h1 {
    font-size: 52px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 30px;
}

.hero-right { width: 45%; text-align: center; }

.hero-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    transition: box-shadow 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0,119,182,0.25));
}

/* .hero-right img:hover {
    box-shadow: 0 0 40px rgba(0,180,216,0.5);
} */

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-left, .hero-right { width: 100%; }
    .hero-right { margin-top: 30px; }
}

/* ── BUTTONS ── */
.cta-buttons { margin: 30px 0; }

.btn-cv, .btn-appoint {
    padding: 13px 28px;
    margin: 8px 8px 8px 0;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-cv {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,119,182,0.35);
}

.btn-appoint {
    background: linear-gradient(135deg, #ff6eb4, #ff4ecd);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,78,205,0.35);
}

.btn-cv:hover, .btn-appoint:hover { transform: translateY(-3px) scale(1.04); }

@media (max-width: 768px) {
    .cta-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    .cta-buttons button { width: 48%; margin: 0; }
}

/* ── POPUP ── */
.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,37,64,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.popup-box, .popup-content {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,119,182,0.2);
}

.popup-box h2, .popup-content h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.popup-box input,
.popup-content input,
.popup-content textarea {
    width: 100%;
    padding: 11px 15px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1.5px solid #c8e6f5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border 0.3s;
}

.popup-box input:focus,
.popup-content input:focus,
.popup-content textarea:focus {
    border-color: var(--accent);
}

.popup-box button[type="submit"],
.popup-content button[onclick="submitAppointment()"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.popup-box button[type="submit"]:hover,
.popup-content button[onclick="submitAppointment()"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,119,182,0.3);
}

.close, .close-btnn {
    position: absolute;
    top: 14px; right: 18px;
    background: none !important;
    border: none;
    font-size: 22px;
    color: #e74c3c !important;
    cursor: pointer;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
    padding: 80px 5%;
    background: linear-gradient(135deg, #eaf6ff, #f5fbff);
}

.about-container {
    display: grid;
    grid-template-columns: 320px 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-photo { display: flex; justify-content: center; }

.about-photo-frame {
    position: relative;
    display: inline-block;
}

.about-photo-frame::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    z-index: 0;
    opacity: 0.5;
}

.about-photo-frame img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
    display: block;
    transition: transform 0.4s, box-shadow 0.4s;
}

.about-photo-frame img:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 50px rgba(0,119,182,0.3);
}

.about-left h2 { font-size: 34px; color: var(--dark); margin-bottom: 18px; }
.about-left p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd, #f0f9ff);
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0,119,182,0.08);
}

.about-right h3 { color: var(--dark); margin-bottom: 15px; }

.skills { display: flex; flex-wrap: wrap; gap: 10px; }

.skill {
    background: #fff;
    color: var(--accent);
    padding: 9px 16px;
    border-radius: 25px;
    font-size: 13px;
    border: 1.5px solid rgba(0,119,182,0.2);
    transition: 0.3s;
    cursor: default;
}

.skill:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,119,182,0.25);
}

.mt { margin-top: 28px; }
.focus-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr 1fr; }
    .about-photo { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
    .about-photo { grid-column: unset; }
}

/* ══════════════════════════════════════
   ABOUT EXTENDED
══════════════════════════════════════ */
.about-extended {
    padding: 0 5% 80px;
    background: linear-gradient(135deg, #eaf6ff, #f5fbff);
}

.about-ext-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.about-ext-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(0,119,182,0.12);
    box-shadow: 0 6px 24px rgba(0,119,182,0.09);
    transition: transform 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}
.about-ext-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 20px 20px 0 0;
}
.about-ext-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,119,182,0.18);
}

.about-ext-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0,119,182,0.28);
    transition: transform 0.35s;
}
.about-ext-card:hover .about-ext-icon { transform: rotate(-8deg) scale(1.1); }

.about-ext-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.about-ext-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.about-ext-card p strong { color: var(--accent); }

.about-ext-vision {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(0,119,182,0.25);
}

.about-ext-vision-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.about-ext-vision h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.about-ext-vision p { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.8; margin: 0; }
.about-ext-vision p strong { color: #fff; font-weight: 700; }

@media (max-width: 992px) { .about-ext-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .about-ext-grid { grid-template-columns: 1fr; }
    .about-ext-vision { flex-direction: column; padding: 24px 20px; }
}

/* ══════════════════════════════════════
   EDUCATION
══════════════════════════════════════ */
.education-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(160deg, #dff0f8, #eaf6ff);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.edu-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 32px 28px 28px;
    text-align: left;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 6px 28px rgba(0,119,182,0.10);
    position: relative;
    overflow: hidden;
}

/* shimmer sweep on hover */
.edu-card::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}
.edu-card:hover::after { left: 160%; }

/* top gradient bar */
.edu-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), #a8edea);
    border-radius: 20px 20px 0 0;
}

.edu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0,119,182,0.20);
}

/* floating number badge */
.edu-card .edu-num {
    position: absolute;
    top: 18px; right: 20px;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,119,182,0.3);
    font-family: 'Poppins', sans-serif;
}

.edu-card h3 { font-size: 17px; color: var(--dark); margin-bottom: 8px; padding-right: 40px; line-height: 1.4; }
.edu-card p { color: var(--muted); font-size: 14px; }
.edu-card span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.edu-card span::before { content: "🗓"; font-size: 11px; }

@media (max-width: 992px) { .education-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .education-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   EXPERTISE
══════════════════════════════════════ */
.expertise-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(160deg, #eaf6ff, #dff0f8);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.exp-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 6px 28px rgba(0,119,182,0.10);
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0 0 28px;
}

/* bottom accent line that grows on hover */
.exp-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 5px;
    transition: width 0.45s ease;
    z-index: 2;
}
.exp-card:hover::before { width: 75%; }

.exp-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 32px 60px rgba(0,119,182,0.22);
}

/* image container */
.exp-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    position: relative;
}

.exp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.exp-card:hover .exp-img-wrap img {
    transform: scale(1.1);
}

/* gradient overlay on image */
.exp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,119,182,0) 40%, rgba(0,37,64,0.55) 100%);
    transition: opacity 0.4s;
    opacity: 0.6;
}
.exp-card:hover .exp-img-overlay {
    opacity: 0.85;
}

.exp-body {
    padding: 22px 24px 0;
}

.exp-body h3 { margin: 0 0 10px; color: var(--dark); font-size: 20px; }
.exp-body p { color: var(--muted); line-height: 1.75; font-size: 14px; }

/* ══════════════════════════════════════
   BUILT WITH ADVANCED
══════════════════════════════════════ */
.aws-section {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(160deg, #dff0f8, #eaf6ff);
}

.aws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.aws-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 6px 28px rgba(0,119,182,0.10);
    transition: transform 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* glow ring on hover */
.aws-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
}
.aws-card:hover::before { opacity: 1; }

.aws-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 50px rgba(0,119,182,0.20);
}

.aws-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    cursor: pointer;
}

.aws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.aws-card:hover .aws-img-wrap img {
    transform: scale(1.08);
}

/* hover overlay */
.aws-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,119,182,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 20px 20px 0 0;
}
.aws-overlay i {
    font-size: 36px;
    color: #fff;
    transform: scale(0.7);
    transition: transform 0.35s;
}
.aws-card:hover .aws-overlay { opacity: 1; }
.aws-card:hover .aws-overlay i { transform: scale(1); }

.aws-card h3 {
    margin: 0;
    padding: 18px 16px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
}

/* IMAGE LIGHTBOX */
.img-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}
.img-popup.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.img-popup-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0,119,182,0.35);
    animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.img-popup-box img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.img-popup-box p {
    text-align: center;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.img-popup-close {
    position: absolute;
    top: 12px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(10,37,64,0.7);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}
.img-popup-close:hover {
    background: #e74c3c;
    transform: rotate(90deg);
}

/* ICON COLORS */
.blue   { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.pink   { background: linear-gradient(135deg, #ff6eb4, #ff4ecd); }
.green  { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.orange { background: linear-gradient(135deg, #f7971e, #ffd200); }

/* ══════════════════════════════════════
   GALLERY SLIDER
══════════════════════════════════════ */
.slider-three {
    padding: 60px 0;
    background: linear-gradient(135deg, #eaf6ff, #dff0f8);
}

.slider-three .section-title .title {
    font-size: 34px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.slider-three .slider-items-wrapper { position: relative; }

.slider-three .slider-items-wrapper .tns-nav {
    width: 100%; z-index: 2;
    display: flex; justify-content: center;
    margin-top: 30px;
}

.slider-three .slider-items-wrapper .tns-nav button {
    width: 10px; height: 10px;
    border-radius: 50px;
    background: var(--accent);
    opacity: 0.4;
    border: 0; margin: 0 5px;
    transition: all 0.4s;
}

.slider-three .slider-items-wrapper .tns-nav button.tns-nav-active {
    width: 22px; opacity: 1; border-radius: 5px;
}

.slider-three .single-items-one { margin-top: 30px; }

.slider-three .single-items-one img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,119,182,0.12);
    transition: transform 0.3s;
}

.slider-three .single-items-one img:hover { transform: scale(1.03); }

/* ══════════════════════════════════════
   BUSINESS & MANAGEMENT
══════════════════════════════════════ */
.bm-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(160deg, #dff0f8, #eaf6ff);
}

.bm-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bm-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    padding: 30px 28px 28px 36px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 6px 28px rgba(0,119,182,0.10);
    transition: transform 0.35s, box-shadow 0.35s;
    overflow: hidden;
}

/* left gradient bar */
.bm-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 6px;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
    border-radius: 20px 0 0 20px;
}

/* top-right decorative circle */
.bm-card::after {
    content: "";
    position: absolute;
    top: -30px; right: -30px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(0,119,182,0.06));
    pointer-events: none;
}

.bm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,119,182,0.20);
}

.bm-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 16px; line-height: 1.45; }
.bm-card p { color: var(--muted); font-size: 14px; }
.bm-card span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    background: rgba(0,119,182,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) { .bm-container { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ORGANIZATIONS
══════════════════════════════════════ */
.org-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(160deg, #eaf6ff, #dff0f8);
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.org-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 8px 32px rgba(0,119,182,0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.4s;
}

/* animated gradient top border */
.org-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), #a8edea, var(--accent));
    background-size: 200% 100%;
    animation: borderSlide 3s linear infinite;
    border-radius: 24px 24px 0 0;
}

@keyframes borderSlide {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* decorative glow blob */
.org-card::after {
    content: "";
    position: absolute;
    bottom: -40px; right: -40px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.12), transparent 70%);
    pointer-events: none;
    transition: transform 0.4s;
}
.org-card:hover::after { transform: scale(1.3); }

.org-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,119,182,0.22);
}

.org-icon-wrap {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0,119,182,0.30);
    transition: transform 0.4s, box-shadow 0.4s;
}
.org-card:hover .org-icon-wrap {
    transform: rotate(-8deg) scale(1.12);
    box-shadow: 0 16px 36px rgba(0,119,182,0.40);
}

.org-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0,119,182,0.25);
}

.org-card h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.org-short {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.org-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,119,182,0.10);
}

.org-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.org-meta span i {
    color: var(--accent);
    font-size: 12px;
}

@media (max-width: 768px) { .org-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   WORK EXPERIENCE
══════════════════════════════════════ */
.work-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(160deg, #dff0f8, #eaf6ff);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.work-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 28px;
    text-align: left;
    border: 1px solid rgba(0,119,182,0.13);
    box-shadow: 0 6px 28px rgba(0,119,182,0.10);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

/* shimmer on hover */
.work-card::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}
.work-card:hover::after { left: 160%; }

/* top-right glow blob */
.work-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.15), transparent 70%);
    pointer-events: none;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(0,119,182,0.20);
}

/* header row: icon + title */
.work-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.work-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 6px 18px rgba(0,119,182,0.30);
    transition: transform 0.35s;
}
.work-card:hover .work-icon { transform: rotate(-8deg) scale(1.1); }

.work-card h3 { color: var(--dark); font-size: 17px; margin: 0 0 3px; line-height: 1.3; }
.work-card > p { color: var(--muted); font-size: 13px; margin-bottom: 4px; }

.tags { margin: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
    display: inline-block;
    background: rgba(0,119,182,0.08);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0,119,182,0.18);
    font-family: 'Poppins', sans-serif;
}

.work-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    border-top: 1px solid rgba(0,119,182,0.08);
    padding-top: 12px;
    margin-top: 4px;
}
.location {
    font-size: 12px;
    color: var(--accent2);
    margin-bottom: 10px;
    font-weight: 500;
}

/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.video-section {
    padding: 70px 10%;
    text-align: center;
    background: linear-gradient(135deg, #eaf6ff, #dff0f8);
}

.video-section h2 { margin-bottom: 35px; }

.video-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.video-card {
    height: 560px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 35px rgba(0,119,182,0.15);
}

.video-card video { width: 100%; display: block; cursor: pointer; }

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,119,182,0.75);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 16px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.1); }

@media (max-width: 768px) { .video-container { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.floating-buttons {
    position: fixed;
    right: 20px; bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.float-btn:hover { transform: scale(1.12); }
.whatsapp { background: #25D366; }
.call     { background: var(--accent); }
.mail     { background: #e74c3c; }

@media (max-width: 768px) {
    .floating-buttons { right: 12px; bottom: 100px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: linear-gradient(135deg, #0A2540, #0077B6) !important;
    color: #fff !important;
    text-align: center;
    padding: 28px 20px;
    font-family: 'Poppins', sans-serif;
}

footer p { color: #cce9f7 !important; margin: 5px 0; font-size: 14px; }
footer a { color: #fff !important; text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--accent2) !important; }

/* ══════════════════════════════════════
   PREMIUM CONSULTATION SECTION
══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');

.consult-section {
    position: relative;
    padding: 100px 6%;
    background: linear-gradient(135deg, #050f1f 0%, #0a1f3a 50%, #0d2847 100%);
    overflow: hidden;
}

/* floating blobs */
.consult-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobFloat 8s ease-in-out infinite alternate;
}
.consult-blob-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0,119,182,0.25), transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.consult-blob-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0,180,216,0.18), transparent 70%);
    bottom: -80px; right: 10%;
    animation-delay: 3s;
}
.consult-blob-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(168,237,234,0.12), transparent 70%);
    top: 40%; left: 45%;
    animation-delay: 5s;
}
@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.08); }
}

.consult-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── FORM BOX ── */
.consult-form-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 52px 46px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}

.consult-form-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.18), transparent 70%);
    pointer-events: none;
}

.consult-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(0,180,216,0.15);
    border: 1px solid rgba(0,180,216,0.30);
    color: #7dd8f5;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

.consult-tag-light {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: #a8d8f0;
}

.consult-form-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 36px;
    font-weight: 700;
}
.consult-form-title span {
    background: linear-gradient(90deg, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* inputs */
.cf-group {
    position: relative;
    margin-bottom: 18px;
}

.cf-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #4db8d8;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.cf-icon-top {
    top: 20px;
    transform: none;
}

.cf-group input,
.cf-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 16px 18px 16px 46px;
    font-size: 14px;
    color: #e0f0ff;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: border 0.3s, background 0.3s, box-shadow 0.3s;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(180,210,230,0.45); }

.cf-group input:focus,
.cf-group textarea:focus {
    border-color: rgba(0,180,216,0.55);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 4px rgba(0,180,216,0.10);
}

/* date/time color fix */
.cf-group input[type="date"],
.cf-group input[type="time"] { color-scheme: dark; }

.cf-group textarea {
    height: 120px;
    resize: none;
    padding-top: 16px;
}

.cf-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consult-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,119,182,0.35);
    letter-spacing: 0.3px;
}
.consult-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,119,182,0.50);
}
.consult-submit i { transition: transform 0.3s; }
.consult-submit:hover i { transform: translateX(4px); }

/* ── RIGHT CONTENT ── */
.consult-content-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}
.consult-content-title span {
    background: linear-gradient(90deg, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consult-divider {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}
.consult-divider span:nth-child(1) {
    width: 50px; height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    border-radius: 10px;
}
.consult-divider span:nth-child(2) {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #00b4d8;
    box-shadow: 0 0 10px rgba(0,180,216,0.6);
}
.consult-divider span:nth-child(3) {
    width: 30px; height: 4px;
    background: rgba(0,180,216,0.3);
    border-radius: 10px;
}

.consult-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(180,210,235,0.80);
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}
.consult-content p strong { color: #90e0ef; font-weight: 600; }

/* stats */
.consult-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.consult-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 22px 14px;
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
    position: relative;
    overflow: hidden;
}
.consult-stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s;
}
.consult-stat:hover {
    transform: translateY(-6px);
    background: rgba(0,180,216,0.10);
    box-shadow: 0 16px 40px rgba(0,119,182,0.25);
}
.consult-stat:hover::before { opacity: 1; }

.consult-stat-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,119,182,0.3), rgba(0,180,216,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 16px;
    color: #7dd8f5;
    border: 1px solid rgba(0,180,216,0.25);
}

.consult-stat h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}
.consult-stat span {
    font-size: 11px;
    color: rgba(160,200,225,0.65);
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    display: block;
}

.consult-right-img-wrap {
    width: 100%;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.consult-right-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.consult-right-img-wrap:hover img { transform: scale(1.05); }

.consult-right-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(5,15,31,0.6) 100%);
    border-radius: 24px;
}

/* buttons */
.consult-btns {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.consult-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(0,119,182,0.35);
    text-decoration: none;
}
.consult-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,119,182,0.50);
    color: #fff;
}

.consult-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(0,180,216,0.45);
    color: #7dd8f5;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
    background: rgba(0,180,216,0.06);
}
.consult-btn-outline:hover {
    background: rgba(0,180,216,0.18);
    border-color: #00b4d8;
    color: #fff;
    transform: translateY(-3px);
}
.consult-btn-outline i { transition: transform 0.3s; }
.consult-btn-outline:hover i { transform: translateX(4px); }

/* responsive */
@media (max-width: 1100px) {
    .consult-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .consult-content-title { font-size: 28px; }
    .consult-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .consult-section { padding: 70px 5%; }
    .consult-form-box { padding: 36px 24px; }
    .consult-form-title { font-size: 26px; }
    .consult-content-title { font-size: 26px; }
    .cf-double { grid-template-columns: 1fr; }
    .consult-stats { grid-template-columns: 1fr 1fr; }
    .consult-btns { flex-direction: column; }
    .consult-btn-primary, .consult-btn-outline { width: 100%; justify-content: center; }
}
