@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b1325;
    color: #ffffff;
    line-height: 1.6;
}
body.light-mode .hero {
    background: #f8fafc;
    color: #111827;
}


.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 70px;      /* Adjust size as needed */
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.08);
}
/* Navigation Bar */
/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 60px;
    background: rgba(11, 19, 37, 0.95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}


/* Logo */

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d0d5d7;
    letter-spacing: 1px;
}

/* Navigation */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;

    text-decoration: none;
    color: #d1d5db;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

/* Underline Animation */

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #38bdf8;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Resume Button */

.resume-btn {
    padding: 10px 20px;
    border-radius: 30px;

    background: linear-gradient(135deg,#06b6d4,#2563eb);
    color: white !important;

    transition: .35s ease;
    box-shadow: 0 5px 18px rgba(37,99,235,.35);
}

.resume-btn::after{
    display:none;
}

.resume-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37,99,235,.5);
}

/* download button */


/* ================= HERO ================= */

.hero-section{
    max-width:1300px;
    margin:auto;
    min-height:90vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:100px;
    padding:70px 60px;
}

/* Left */

.hero-content{
    flex:1;
    text-align:left;
}

.hello{
    display:inline-block;
    color:#38bdf8;
    font-weight:600;
    font-size:18px;
    margin-bottom:12px;
}

.hero-content h3{
    font-size:30px;
    margin-bottom:10px;
    color:#e5e7eb;
}

.name{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    max-width:600px;
}

.profession{
    color:#38bdf8;
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
}

.description{
    color:#9ca3af;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin:35px 0;
}

.btn-primar{
    
    padding:17px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}


.btn-secondary{

    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{

    background:#38bdf8;
    color:#fff;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(56,189,248,.5);
}

.btn-secondary{

    border:2px solid #38bdf8;
    color:#38bdf8;
}

.btn-secondary:hover{

    background:#38bdf8;
    color:#fff;
}

/* Social */

.social-icons{

    display:flex;
    gap:18px;
}

.social-icons a{

    width:48px;
    height:48px;

    border-radius:50%;
    border:2px solid #38bdf8;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#38bdf8;
    font-size:20px;

    transition:.3s;
}

.social-icons a:hover{

    background:#38bdf8;
    color:white;

    transform:translateY(-5px);
}

/* Right */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;

    width: 370px;
    height: 370px;

    border-radius: 50%;
    overflow: hidden;

    border: 5px solid #38bdf8;

    display: flex;
    justify-content: center;
    align-items: center;

    animation: float 4s ease-in-out infinite;
}

/* Glow behind image */
.image-wrapper::before{
    content:"";
    position:absolute;

    width:115%;
    height:115%;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(56,189,248,.6) 0%,
    rgba(56,189,248,.2) 45%,
    transparent 70%);

    z-index:-1;

    animation:pulse 3s infinite;
}

.image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

@keyframes pulse{

    0%{
        transform:scale(.95);
        opacity:.6;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(.95);
        opacity:.6;
    }
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}

/* ==========================================
   About Me Section
   ========================================== */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #0b1325;
}

/* Left Illustration with Neon Cyan Glow */
.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;

    /* Neon Glow */
    box-shadow:
        0 0 35px rgba(0, 229, 255, 0.8),
        0 0 15px rgba(0, 229, 255, 0.4);
}

.glow-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Fills the circle */
    object-position: center top; /* Adjust if needed */
    border-radius: 50%;
}

/* Right Side Content */
.about-content {
    flex: 1.2;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-title .highlight {
    color: #00e5ff;
    /* Bright Cyan Highlight */
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Custom Bulleted Points */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-list .diamond {
    color: #00e5ff;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* CTA Button */
.btn-primary {
    display: inline-block;
    background-color: #00e5ff;
    color: #080d1a;
    padding: 0.75rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    background-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .about-list li {
        text-align: left;
    }

    .glow-circle {
        width: 260px;
        height: 260px;
    }
}
/* experience */
.experience-section{

    padding:100px 8%;
}

.experience-list{

    display:flex;
    flex-direction:column;
    gap:25px;
}

.exp-card{

    background:#111827;
    border:1px solid #263247;
    border-radius:18px;

    overflow:hidden;

    transition:.4s;
}

.exp-card:hover{

    border-color:#38bdf8;

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.exp-header{

    display:flex;
    align-items:center;
    gap:20px;

    padding:28px;

    cursor:pointer;
}

.exp-company-logo{

    width:60px;
    height:60px;

    border-radius:15px;

    background:linear-gradient(135deg,#38bdf8,#6366f1);

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-weight:700;
}

.exp-info{

    flex:1;
}

.exp-info h3{

    font-size:22px;
    margin-bottom:6px;
}

.exp-info p{

    color:#94a3b8;
}

.exp-meta{

    text-align:right;
}

.exp-meta span{

    display:block;

    font-weight:600;
}

.exp-meta small{

    color:#94a3b8;
}

.toggle-icon{

    margin-top:10px;

    color:#38bdf8;

    transition:.4s;
}

.exp-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease,padding .35s ease;

    padding:0 28px;
}

.exp-card.active .exp-content{

    max-height:350px;

    padding:0 28px 28px;
}

.exp-card.active .toggle-icon{

    transform:rotate(180deg);
}

.exp-content h4{

    color:#38bdf8;

    margin-bottom:18px;
}

.exp-content ul{

    padding-left:18px;

    line-height:1.9;

    color:#d1d5db;
}

.exp-tags{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-top:25px;
}

.exp-tags span{

    padding:8px 16px;

    border-radius:30px;

    background:#1e293b;

    color:#38bdf8;

    font-size:14px;
}
/* ==========================================
   Education Section
   ========================================== */
.education-section {
    background-color: #0b1325;
    padding: 5rem 2rem;
    color: #ffffff;
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

/* Grid Layout */
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card Styling */
.edu-card {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.edu-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
}

/* Icon Containers */
.edu-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.icon-blue {
    background-color: #0284c7;
}

.icon-green {
    background-color: #10b981;
}

.icon-purple {
    background-color: #d946ef;
}

/* Content Inside Cards */
.edu-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.edu-content .institution {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 0.3rem;
}

.edu-content .year {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.view-link i {
    font-size: 0.8rem;
}

.view-link:hover {
    color: #818cf8;
}

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

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

    .edu-card {
        flex-direction: row;
    }
}

/* ==========================================
   Skills Section
   ========================================== */
.skills-section {
    background-color: #0b1325;
    padding: 5rem 2rem;
    color: #ffffff;
}

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

.skills-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: left;
}

.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Category Card */
.skill-category-card {
    background-color: #0d162d;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.skill-category-card:hover {
    border-color: #3b82f6;
}

/* Header & Icons */
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.category-header h3.highlight-purple {
    color: #818cf8;
    /* Distinct purple text color matching design */
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Icon Colors */
.cat-icon.icon-blue {
    background-color: #0284c7;
}

.cat-icon.icon-pink {
    background-color: #ec4899;
}

.cat-icon.icon-purple {
    background-color: #a855f7;
}

.cat-icon.icon-green {
    background-color: #10b981;
}

/* Tags Layout */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 0.55rem 1.1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: default;
}

.skill-tag:hover {
    background-color: #334155;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .skills-section {
        padding: 3rem 1.5rem;
    }

    .skill-category-card {
        padding: 1.5rem;
    }

    .skill-tag {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}

/* ==========================================
   Public Projects Section
   ========================================== */
.projects-section{
    padding:100px 8%;
    background:#08111f;
}

.projects-container{
    max-width:1400px;
    margin:auto;
}

.projects-title{
    font-size:52px;
    font-weight:700;
    margin-bottom:60px;
    position:relative;
}

.projects-title::after{
    content:"";
    width:70px;
    height:5px;
    background:#38bdf8;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:50px;
}

.projects-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;

}

/* Card */

.project-card{

    background:#101b35;

    border:1px solid #1d2b4d;

    border-radius:22px;

    overflow:hidden;

    transition:.45s;

    position:relative;

}

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,#38bdf8,#8b5cf6,#0ea5e9);

    opacity:0;

    transition:.45s;

    z-index:0;

}

.project-card:hover::before{

    opacity:.12;

}

.project-card:hover{

    transform:translateY(-12px);

    border-color:#38bdf8;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

/* Banner */

.project-banner{

    height:220px;

    position:relative;

    overflow:hidden;

}

.project-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover .project-banner img{

    transform:scale(1.08);

}

/* overlay */

.project-banner::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.4),
    transparent);

}

/* External */

.top-external-link{

    position:absolute;

    top:16px;

    right:16px;

    width:42px;

    height:42px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    z-index:5;

    transition:.35s;

}

.top-external-link:hover{

    background:#38bdf8;

    transform:rotate(45deg);

}

/* Info */

.project-info{

    padding:28px;

}

.project-name{

    font-size:24px;

    margin-bottom:16px;

    line-height:1.4;

}

.project-description{

    color:#a7b6ce;

    line-height:1.8;

    margin-bottom:25px;

}

/* Tags */

.project-tags{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.project-tags span{

    background:#18284d;

    color:#7dd3fc;

    padding:8px 16px;

    border-radius:30px;

    transition:.3s;

}

.project-tags span:hover{

    background:#38bdf8;

    color:white;

}

/* Footer */

.project-links{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.project-links a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.project-links a:hover{

    color:#38bdf8;

}

/* ==========================================
   Certifications & Badges Section
   ========================================== */
.certifications-section {
    background-color: #0b1325;
    padding: 5rem 2rem;
    color: #ffffff;
}

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

.cert-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.cert-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #818cf8;
    margin-bottom: 0.3rem;
}

.cert-category-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cert-category-spacing {
    margin-top: 3.5rem;
}

/* Grid Layout (4 Columns) */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Card Outer Wrapper */
.cert-card {
    background-color: #0d162d;
    border: 1px solid #1e293b;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.cert-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
}

/* Image Container & Overlay */
.cert-image-container {
    height: 200px;
    background-color: #05142d;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.cert-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.cert-doc-frame {
    width: 90%;
    height: 85%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 37, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.overlay-btn {
    background-color: rgba(30, 41, 59, 0.85);
    border: 1px solid #475569;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

/* Content Area */
.cert-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cert-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.cert-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.cert-title.highlight-blue {
    color: #60a5fa;
}

.cert-tag {
    background-color: #1e1b4b;
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    white-space: nowrap;
}

/* Meta Info */
.cert-meta {
    margin-bottom: 1.25rem;
}

.cert-meta p {
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

/* Action Buttons */
.cert-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-verify {
    flex: 1;
    background-color: #4f46e5;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 0.55rem 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background-color 0.2s ease;
}

.btn-verify:hover {
    background-color: #4338ca;
}



.btn-preview-icon:hover {
    color: #ffffff;
    background-color: #334155;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==========================================
   Contact Section & Footer
   ========================================== */
.contact-section {
    background-color: #0b1325;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer Glowing Card */
.contact-card {
    background-color: #0d162d;
    border-radius: 20px;
    padding: 3.5rem 3rem;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 240px 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
    border: 1px solid #1e293b;
    /* Soft blue/cyan glow around card */
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.25),
        0 0 60px rgba(0, 119, 182, 0.15);
}

/* Left Column: Profile */
.contact-profile-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.avatar-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1e293b;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.meta-email {
    color: #38bdf8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-all;
    transition: color 0.2s ease;
}

.meta-email:hover {
    color: #7dd3fc;
}

/* Social Buttons */
.contact-socials {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-btn.active,
.social-btn:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
}

/* Center Column: Headings */
.contact-heading-col {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.contact-title .highlight-cyan {
    color: #00e5ff;
}

.contact-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 1.5rem;
}

.contact-text {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Right Column: Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background-color: #1e2538;
    border: 1px solid #2e374d;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #0284c7;
    color: #ffffff;
    border: none;
    padding: 0.85rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
}

/* Footer Styling */
.footer {
    background-color: #080d1a;
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer .heart {
    color: #ef4444;
    font-size: 1.1rem;
    margin: 0 0.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .form-row {
        flex-direction: column;
    }
}


/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

/* ===========================
   Tablets (992px)
=========================== */
@media (max-width:992px){

    .navbar{
        padding:15px 25px;
    }

    .hero-section{
        flex-direction:column-reverse;
        text-align:center;
        gap:50px;
        padding:50px 25px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons,
    .social-icons{
        justify-content:center;
    }

    .image-wrapper{
        width:300px;
        height:300px;
    }

    .about-section{
        flex-direction:column;
        text-align:center;
    }

    .about-list{
        text-align:left;
    }

    .education-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .certifications-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-card{
        grid-template-columns:1fr;
    }

}


/* ===========================
   Mobile (768px)
=========================== */

@media (max-width:768px){

/* Navbar */

.navbar{

    flex-direction:column;
    gap:15px;
    padding:15px;

}

.nav-links{

    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

.logo-img{

    width:55px;
    height:55px;

}

/* Hero */

.hero-section{

    padding:40px 20px;
    gap:40px;

}

.name{

    font-size:34px;

}

.profession{

    font-size:20px;

}

.description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;
    align-items:center;

}

.hero-buttons a{

    width:100%;
    max-width:280px;
    text-align:center;

}

.image-wrapper{

    width:250px;
    height:250px;

}

/* About */

.about-section{

    padding:60px 20px;

}

.glow-circle{

    width:220px;
    height:220px;

}

.about-title{

    font-size:36px;

}

.about-subtitle{

    font-size:22px;

}

/* Experience */

.exp-header{

    flex-direction:column;
    text-align:center;

}

.exp-meta{

    text-align:center;

}

.exp-content{

    padding:0 18px;

}

.exp-card.active .exp-content{

    padding:0 18px 20px;

}

/* Education */

.education-grid{

    grid-template-columns:1fr;

}

.edu-card{

    flex-direction:column;
    text-align:center;
    align-items:center;

}

/* Skills */

.skill-category-card{

    padding:20px;

}

.category-header{

    flex-direction:column;
    text-align:center;

}

.tags-container{

    justify-content:center;

}

/* Projects */

.projects-section{

    padding:60px 20px;

}

.projects-grid{

    grid-template-columns:1fr;

}

.projects-title{

    font-size:38px;

}

.project-name{

    font-size:22px;

}

.project-banner{

    height:200px;

}

/* Certificates */

.certifications-grid{

    grid-template-columns:1fr;

}

.cert-main-title{

    font-size:38px;

}

/* Contact */

.contact-card{

    padding:30px 20px;

}

.contact-profile-col{

    align-items:center;
    text-align:center;

}

.contact-heading-col{

    text-align:center;

}

.contact-title{

    font-size:40px;

}

.contact-subtitle{

    font-size:28px;

}

.form-row{

    flex-direction:column;

}

}


/* ===========================
   Small Phones (480px)
=========================== */

@media (max-width:480px){

body{

    overflow-x:hidden;

}

.name{

    font-size:28px;

}

.hero-content h3{

    font-size:22px;

}

.profession{

    font-size:18px;

}

.description{

    font-size:15px;

}

.image-wrapper{

    width:200px;
    height:200px;

}

.glow-circle{

    width:180px;
    height:180px;

}

.about-title{

    font-size:30px;

}

.section-title,
.skills-title,
.projects-title,
.cert-main-title{

    font-size:30px;

}

.contact-title{

    font-size:32px;

}

.contact-subtitle{

    font-size:22px;

}

.social-icons a{

    width:42px;
    height:42px;

}

.project-tags span,
.skill-tag,
.exp-tags span{

    font-size:12px;

}

.btn-primary,
.btn-secondary{

    width:100%;
    text-align:center;

}

}