 
    :root {
      --navy: #2c3e6b;
      --navy-dark: #1e2d50;
      --accent: #4a6cf7;
      --accent2: #e74c8b;
      --light-bg: #f0f2f8;
      --light-bg2: #e8ecf5;
      --text: #333;
      --muted: #777;
      --white: #fff;
      --border: #dde2ee;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      font-size: 15px;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .topbar .brand-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--navy);
      letter-spacing: -0.01em;
      line-height: 1.1;
    }
    .topbar .brand-sub {
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .topbar .contact-info a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }
    .topbar .contact-info a:hover { color: var(--accent); }
    .topbar .contact-info .icon-circle {
      width: 28px; height: 28px;
      background: var(--navy);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.75rem;
      margin-right: 6px;
    }

    /* ── HERO ── */
    .hero-section {
      background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 50%, #3d5a9e 100%);
      
      position: relative;
      overflow: hidden;
    }
    .hero-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-img-col {
      position: relative;
    }
    .hero-photo-placeholder {
      width: 100%;
       
      background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      display: flex; align-items: flex-end; justify-content: center;
      font-size: 10rem;
      padding-bottom: 0;
      overflow: hidden;
	  position:relative
    }
	.hero-photo-placeholder:before{
	    content: '';
    position: absolute;
    background: linear-gradient(272deg, #2b3d69 20%, transparent);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
		
	}
    .hero-photo-placeholder .avatar-emoji {
      filter: drop-shadow(0 -8px 30px rgba(0,0,0,0.3));
      line-height: 1;
    }
    .hero-text-col {
      display: flex; align-items: center;
       padding-left: 20px;;
    }
    .hero-greeting {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 8px;
    }
    .hero-name {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .hero-role {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .exp-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      padding: 10px 22px;
      color: #fff;
    }
    .exp-badge .exp-num {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }
    .exp-badge .exp-plus {
      font-size: 1.1rem;
      color: var(--accent2);
      font-weight: 700;
    }
    .exp-badge .exp-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.8);
    }
.social_links{}
.social_links a{text-decoration: none;
color:#fff;
font-size: 22px;
}
    /* ── SECTION HEADERS ── */
    .sec-heading {
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .sec-divider {
      width: 50px; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px;
      margin: 0 auto 36px;
    }

    /* ── WHAT I DO ── */
    .what-section { background: var(--light-bg); padding: 70px 0; }
    .service-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(44,62,107,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(44,62,107,0.15); }
    .service-card-img {
      width: 100%; height: 160px;
      background: linear-gradient(135deg, var(--navy), #5270c4);
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
    }
    .service-card-body { padding: 18px 16px; text-align: center; }
    .service-card-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600; font-size: 0.82rem;
      color: var(--navy); letter-spacing: 0.05em;
      text-transform: uppercase;
      margin: 0;
    }

    /* ── SKILLS ── */
    .skills-section { background: #fff; padding: 70px 0; }
    .skill-icon-box {
      display: flex; flex-direction: column; align-items: center;
      gap: 8px;
    }
    .skill-icon {
      width: 72px; height: 72px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transition: transform 0.25s, box-shadow 0.25s;
      font-weight: 900;
    }
    .skill-icon:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
    .skill-label { font-size: 0.68rem; font-weight: 600; color: var(--muted); text-align: center; letter-spacing: 0.05em; }

    /* icon brand colors */
    .si-ps   { background: linear-gradient(135deg, #001e36, #31a8ff); color: #fff; }
    .si-ai   { background: linear-gradient(135deg, #300000, #ff7c00); color: #fff; }
    .si-xd   { background: linear-gradient(135deg, #2b0045, #ff61f6); color: #fff; }
    .si-html { background: linear-gradient(135deg, #e44d26, #f16529); color: #fff; }
    .si-css  { background: linear-gradient(135deg, #1572b6, #33a9dc); color: #fff; }
    .si-jq   { background: linear-gradient(135deg, #0769ad, #0e6eab); color: #fff; }
    .si-php  { background: linear-gradient(135deg, #4f5b93, #777bb3); color: #fff; }
    .si-mysql{ background: linear-gradient(135deg, #00546b, #f29111); color: #fff; }
    .si-wp   { background: linear-gradient(135deg, #21759b, #464646); color: #fff; }
    .si-react{ background: linear-gradient(135deg, #20232a, #61dafb); color: #fff; }
    .si-bs   { background: linear-gradient(135deg, #7952b3, #9b72cf); color: #fff; }
    .si-js   { background: linear-gradient(135deg, #323330, #f7df1e); color: #fff; }

    /* ── CLIENTS ── */
    .clients-section { background: var(--light-bg); padding: 70px 0; }
    .client-logo-box {
      background: #fff;
      border-radius: 8px;
      border: 1px solid var(--border);
      height: 70px;
      display: flex; align-items: center; justify-content: center;
      padding: 0 16px;
      transition: box-shadow 0.25s, transform 0.25s;
      filter: grayscale(80%);
    }
    .client-logo-box img{    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: fit-content;}
    .client-logo-box:hover { filter: grayscale(0%); box-shadow: 0 6px 20px rgba(44,62,107,0.12); transform: translateY(-2px); }
    .client-logo-box span {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--navy);
      letter-spacing: 0.05em;
    }

    /* ── TESTIMONIALS ── */
    .testi-section { background: #fff; padding: 70px 0; }
    .testi-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      height: 100%;
      box-shadow: 0 3px 14px rgba(44,62,107,0.07);
      transition: box-shadow 0.3s;
    }
    .testi-card:hover { box-shadow: 0 8px 28px rgba(44,62,107,0.13); }
    .testi-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .testi-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--navy); }
    .testi-title { font-size: 0.75rem; color: var(--muted); }
    .testi-stars { color: #f5a623; font-size: 0.78rem; letter-spacing: 2px; }
    .testi-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-top: 14px; }

    /* Carousel controls */
    .carousel-control-prev, .carousel-control-next {
      width: 42px; height: 42px;
      background: var(--navy);
      border-radius: 50%;
      top: 50%; transform: translateY(-50%);
      opacity: 1;
    }
    .carousel-control-prev { left: -50px; }
    .carousel-control-next { right: -50px; }
    .carousel-control-prev-icon, .carousel-control-next-icon { width: 16px; height: 16px; }

    /* ── PORTFOLIO ── */
    .portfolio-section { background: var(--light-bg); padding: 70px 0; }
    .port-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 3px 14px rgba(44,62,107,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .port-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(44,62,107,0.15); }
    .port-thumb {
      /* height: 160px; */
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      position: relative;
      overflow: hidden;
    }
    .port-thumb  img{
        width:100%
    }
    .port-thumb::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(30,45,80,0.85));
    }
    .port-thumb-label {
      position: absolute; bottom: 10px; left: 0; right: 0;
      text-align: center; z-index: 2;
      font-family: 'Poppins', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      color: #fff; padding: 0 10px;
    }
    .port-body { padding: 12px 14px; }
    .port-title { 
            font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .port-title a{
color: #FF5722;
    padding: 0;
    border-radius: 15px;
    text-decoration: none;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    border: solid 1px;
    padding: 4px 10px;
    }
    .port-title a .bi{
        margin-left: 3px;
    }
    .port-tags { display: flex; flex-wrap: wrap; gap: 4px; }
    .port-tag {
      font-size: 0.62rem; padding: 2px 8px;
      border-radius: 50px;
      font-weight: 600; letter-spacing: 0.04em;
    }
    .tag-html { background: #fde8e0; color: #e44d26; }
    .tag-css  { background: #e0eefa; color: #1572b6; }
    .tag-js   { background: #fefbe0; color: #b8960c; }
    .tag-wp   { background: #e0f0f8; color: #21759b; }
    .tag-php  { background: #eeeaf8; color: #4f5b93; }
    .tag-react{ background: #e0f8fd; color: #00879e; }
    .tag-ps   { background: #e0f0ff; color: #31a8ff; }

    /* ── CONTACT ── */
    .contact-section { background: #fff; padding: 70px 0; }
    .contact-label {
      font-size: 0.78rem; font-weight: 700;
      color: var(--accent2); letter-spacing: 0.18em;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .contact-heading {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 40px;
      line-height: 1.2;
    }
    .form-control {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 13px 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,108,247,0.1); }
    .form-control::placeholder { color: #bbb; }
    .btn-submit {
      background: var(--navy);
      color: #fff;
      padding: 13px 48px;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,108,247,0.3); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.55);
      padding: 28px 0;
      font-size: 0.82rem;
      text-align: center;
    }
    footer span { color: var(--accent2); }

    /* Nav dots for portfolio filter */
    .filter-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
    .filter-btn {
      padding: 7px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: #fff;
      font-size: 0.78rem; font-weight: 600;
      color: var(--muted); cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--navy); color: #fff; border-color: var(--navy);
    }

    /* Reveal animation */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
 