/* navbar */
    body {
        font-family: 'Poppins';
      font-weight: 300; /* Light */
      margin: 0;
      padding: 0;
    }

    .navbar {
      padding: 1rem 2rem;
    }

    .navbar-brand {
      font-weight: 600;
      font-size: 24px;
      letter-spacing: 1px;
    }

    .nav-link {
      margin-right: 1rem;
      color: #6c757d !important;
    }

    .nav-link:hover {
      color: #000 !important;
    }

    .custom-toggler .navbar-toggler-icon {
      display: none;
    }

    .custom-toggler .open-icon,
    .custom-toggler.collapsed .close-icon {
      display: inline;
    }

    .custom-toggler .close-icon,
    .custom-toggler.collapsed .open-icon {
      display: none;
    }
/* navbar */

/* hero  */


    .hero-section {
      background-color: #e9edf1;
      border-radius: 20px;
      padding: 100px 20px;
      text-align: center;
      margin: 40px 100px;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 600;
      color: #1a1a1a;
    }

    .hero-title .outlined {
      color: transparent;
      -webkit-text-stroke: 1px #1a1a1a;
    }

    .hero-subtitle {
      background-color: #f5f5f5;
      display: inline-block;
      padding: 12px 20px;
      margin-top: 30px;
      border-radius: 5px;
      font-size: 1rem;
      color: #6c757d;
    }

    .hero-subtitle span::after {
      content: "●";
      color: #ccc;
      margin: 0 12px;
    }

    .hero-subtitle span:last-child::after {
      content: "";
      margin: 0;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
        .hero-section {
  
      margin: 40px 20px;
    }
    }

    /* hero */

    /* about */
      .about-section {
      padding: 60px 20px;
    }

    .about-card {
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
    }

    .about-card img {
      border-radius: 12px;
      width: 100%;
    }

    .about-name {
      font-weight: 600;
      margin-top: 20px;
      font-size: 20px;
    }

    .availability-badge {
      background: #f4f4f4;
      color: #555;
      font-size: 14px;
      padding: 6px 15px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      margin-top: 10px;
    }

    .availability-badge .status-dot {
      height: 10px;
      width: 10px;
      background-color: #28a745;
      border-radius: 50%;
      margin-left: 8px;
    }

    .social-icons a {
      margin: 10px 5px;
      display: inline-block;
      color: #333;
      font-size: 18px;
      border: 1px solid #ccc;
      padding: 10px 14px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #000;
      color: #fff;
    }

    .about-title {
      font-size: 32px;
      font-weight: 500;
      line-height: 1.4;
    }

    .highlight-box {
      display: inline-block;
      background: #f8f8f8;
      padding: 0 5px;
    }

    .download-btn {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 4px;
      margin-top: 20px;
      display: inline-block;
      text-decoration: none;
    }

    .download-btn i {
      margin-left: 5px;
    }

    .service-list {
      margin-top: 30px;
    }

    .service-item {
      margin-bottom: 10px;
      font-size: 15px;
      color: #555;
    }

    .service-item i {
      margin-right: 6px;
      font-size: 12px;
    }

    @media(max-width: 768px) {
      .about-title {
        font-size: 24px;
      }

      .download-btn {
        display: block;
        margin: 20px auto;
      }
    }

    /* about */

    /* Projects Section  */
 /* Projects Section */
    :root {
            --primary-black: #1a1a1a;
            --light-grey: #f8f9fa;
            --medium-grey: #6c757d;
            --dark-grey: #343a40;
            --accent-color: #b5b6b7;
        }
              .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header small {
            color: var(--accent-color);
        
            letter-spacing: 1px;
         
            font-size: 0.9rem;
        }

        .section-header h2 {
            color: var(--primary-black);
            font-weight: 600;
            margin-top: 0.5rem;
        }

            .company-info h3 {
            color: var(--primary-black);
            font-weight: 500;
            margin-bottom: 0.25rem;
            font-size: 1.4rem;
        }

        .position {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .duration {
            color: var(--medium-grey);
            font-size: 0.9rem;
        }

    
        .projects-section {
            padding: 80px 0;
            background-color: var(--light-grey);
        }

        .project-card {
            background: #fff;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .project-number {
            background: var(--accent-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .project-title {
            color: var(--primary-black);
            font-weight: 500;
            font-size: 1.0rem;
            margin-bottom: 1rem;
        }

        .tech-stack {
            margin-bottom: 1rem;
        }

        .tech-stack span {
            background: var(--light-grey);
            color: var(--dark-grey);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }

        .project-description {
            color: var(--dark-grey);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .project-features {
            margin-bottom: 1.5rem;
        }

        .project-features h5 {
            color: var(--primary-black);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .features-list {
            color: var(--dark-grey);
            font-size: 0.9rem;
        }

        .project-impact {
            background: var(--light-grey);
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent-color);
        }

        .project-impact h5 {
            color: var(--primary-black);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .impact-text {
            color: var(--dark-grey);
            margin: 0;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .company-header {
                flex-direction: column;
            }
            
            .company-card {
                padding: 1.5rem;
            }
            
            .project-card {
                padding: 1.5rem;
            }
        }

    /* Projects Section  */

/* language */

   .language-section {
      max-width: 800px  !important;
     
    }


    .language-label {
      font-weight: 500  !important;
      margin-bottom: 5px  !important;
    }

    .progress {
      height: 10px  !important;
      background-color: #dcdcdc  !important; 
    }

    .progress-bar {
      background-color: #000 !important;
    }

    /* language */
/* skill */
    .skills-section {
      padding: 80px 20px;
      background-color: #f1f4f8;
    }

    .skills-section h2 {
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
    }

    .skills-section p.section-subtitle {
      color: #6c757d;
      font-size: 14px;
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .skill-category {
      margin-bottom: 10px;
    }

    .skill-category h5 {
      font-weight: 600;
      margin-bottom: 20px;
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
      color: #222;
    }

    .skill-item {
      margin-bottom: 15px;
    }

    .skill-title {
      font-weight: 500;
      color: #111;
    }

    .skill-desc {
      font-size: 14px;
      color: #555;
    }

    @media (min-width: 768px) {
      .skill-columns {
        display: flex;
        justify-content: space-between;
        gap: 40px;
      }
    }

    /* skills */
/* EXPERIENCE */
 .resume-section {
      padding: 80px 0px;
      background: #e8ecf0;
      text-align: center;
    }

    .resume-section small {
      color: #999;
      letter-spacing: 1px;
      font-size: 14px;
      display: block;
      margin-bottom: 5px;
    }

    .resume-section h2 {
      font-weight: 600;
      margin-bottom: 50px;
    }

    .resume-box {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 30px;
      text-align: left;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .resume-icon {
      background: #f1f3f6;
      padding: 10px;
      border-radius: 10px;
      margin-right: 15px;
    }

    .resume-title {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
    }

    .resume-subtitle {
      font-size: 14px;
      color: #6c757d;
      margin: 0;
    }

    .resume-date {
      font-size: 13px;
      font-weight: 500;
      color: #555;
    }

    .resume-divider {
      border-top: 1px solid #e1e1e1;
      margin: 25px 0;
    }
/* EXPERIENCE */


/* work */
   .portfolio-section {
      padding: 80px 20px;
      text-align: center;
    }

    .portfolio-section small {
      color: #999;
    }

    .portfolio-section h2 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .portfolio-tabs {
      margin-bottom: 40px;
    }

    .portfolio-tabs button {
      background: none;
      border: none;
      margin: 0 10px;
      font-weight: 500;
      color: #666;
      border-bottom: 2px solid transparent;
      padding-bottom: 5px;
    }

    .portfolio-tabs button.active {
      color: #000;
      border-color: #000;
    }

    .portfolio-item {
      display: none;
      transition: all 0.4s ease;
    }

    .portfolio-item.active {
      display: block;
    }

    .portfolio-card {
      border: 1px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      transition: 0.3s;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
    }

    .portfolio-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .portfolio-card-body {
      padding: 20px;
      text-align: left;
    }

    .portfolio-category {
      color: #777;
      font-size: 14px;
    }

    .portfolio-title {
      font-weight: 600;
      font-size: 16px;
      margin-top: 5px;
    }
/* work */

/* service */
.services-section {
      padding: 80px 0px;
      text-align: center;
    }

    .services-section small {
      color: #999;
      font-size: 14px;
      letter-spacing: 1px;
      display: block;
    }

    .services-section h2 {
      font-weight: 600;
      margin-bottom: 50px;
    }

    .service-card {
      background-color: #e8ecf0;
      border-radius: 10px;
      padding: 40px 20px;
      transition: 0.3s;
      height: 100%;
    }

    .service-card i {
      font-size: 48px;
      margin-bottom: 20px;
      color: #444;
    }

    .service-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    /* service */

    /* contact */


    .contact-section {
      padding: 80px 20px 30px 20px;
    }

    .contact-section h2 {
      font-size: 32px;
      font-weight: 600;
      text-align: center;
    }

    .contact-section small {
      display: block;
      text-align: center;
      color: #888;
      margin-bottom: 20px;
    }

    .contact-info {
      background-color: #e9edf1;
      border-radius: 10px;
      padding: 30px;
    }

    .contact-info i {
      font-size: 20px;
      margin-right: 10px;
      color: #000;
    }

    .contact-info p {
      margin: 0;
      color: #444;
    }

    .form-control, textarea {
      background: #f8f8f8;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    .form-label {
      font-weight: 500;
    }

    .contact-btn {
      background-color: #000;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
    }

    .contact-btn i {
      margin-left: 5px;
    }

    footer {
      margin-top: 60px;
      text-align: center;
      font-size: 14px;
      color: #666;
    }

    .scroll-top-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #fff;
      border: 1px solid #000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .scroll-top-btn:hover {
      background-color: #000;
      color: #fff;
    }
        /* contact */