/* hero-area .portfolio-filter .portfolio-info::before ..testimonial .nav-buttons
resume-section .close-button blog-section
tablet mobile @media (min-width: 768px) and (max-width: 1024px) hero-area

mobile large
@media (max-width: 767px)
tablet
@media (min-width: 768px) and (max-width: 991px)
@media (min-width: 768px) and (max-width: 1024px)
.dialog-image-container
.pricing-card
.tab-btn.active
.rating
.card-description
.copyright-section
contact-section .rn-btn
@media (max-width: 768px) {
    .card-description
theme="dark"] .card-description
.neomorphic-card
.neomorphic-card
.contact-description-text
hero-content .title
.card-description::after
edu-details




@media (min-width: 768px) and (max-width: 991px)

  @media (max-width: 768px) 
if its not work then second: 
@media screen and (max-width: 576px)










 */

 :root{
    /* Dark Theme (Default) */
    --lighten-color:#C5CFDF;
    --text-color:#fff;
    --heading-white:#F4F4F4;
    --body-bg-color: #1a1a1a;
    --bg-color:#121212;
    --second-bg-color:#1a1a1a;
    --main-color:#4dabf7;
    --main-color-rgb:77, 171, 247;
    --other-color:#e9ecef;
    --nav-hover-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --popup-bg: linear-gradient(135deg, rgba(30, 32, 35, 0.98), rgba(18, 20, 23, 0.98));
    --popup-border: rgba(19, 187, 255, 0.15);
    --header-bg: rgba(15, 15, 15, 0.8);
    --header-border: rgba(255, 255, 255, 0.07);
  
    /* Font Sizes */
    --h1-font-size:3.5rem;
    --h2-font-size:2.5rem;
    --p-font:1rem;
  
    /* Font Families */
    --heading-font: 'Montserrat', sans-serif;
    --title-font: 'Poppins', sans-serif;
    --description-font: 'Roboto', sans-serif;
    --primary-font: 'Inter', sans-serif;
    --nav-text: "Montserrat", sans-serif;
    --helvetica-text: "Helvetica", sans-serif;
  }
  
  /* Light Theme */
  [data-theme="light"] {
    --text-color:#2c3e50;
    --heading-white:#1a202c;
    --body-bg-color: #f8fafc;
    --bg-color:#ffffff;
    --second-bg-color:#eef2f7;
    --main-color:#3b82f6;
    --main-color-rgb:59, 130, 246;
    --other-color:#475569;
    --nav-hover-bg: rgba(59, 130, 246, 0.08);
    --border-color: rgba(0, 0, 0, 0.1);
    --card-bg: rgba(255, 255, 255, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --popup-bg: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
    --popup-border: rgba(59, 130, 246, 0.15);
    --header-bg: rgba(248, 250, 252, 0.85);
    --header-border: rgba(226, 232, 240, 0.3);
    --portfolio-bg: linear-gradient(120deg, #f2f8ff 0%, #e6f0ff 100%);
  }

  /* href="https://wa.me/message/FBPZ2VMRNHXGG1" target="_blank" */
  
  /* Lets Talk Btn */


.nav-talk-btn{
  margin-top: -.1vh !important;
}
.nav-talk-btn a{
  border-radius: 3px !important;
}

/*contact form messgae*/
/* Container for the form messages */
#form-message {
    margin-top: 0px !important;
    text-align: center;
    background-color:#4dabf7 !important;
}

/* Success Message Style (Green) */
.success-message {
    padding: 1em;
    border-radius: 5px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

/* Error Message Style (Red) */
.error-message {
    padding: 1em;
    border-radius: 5px;
    background-color: #f8d7da;
    color: #a31927;
    border: 1px solid #f5c6cb;
    font-weight: 500;
}

  /* Section heading styles */
  .section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .section-heading .subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color);
    display: block;
    margin-bottom: 10px;
    font-family: var(--helvetica-text);
  }
  
  .section-heading .title {
    color: var(--heading-white);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
  }
  
  @media (max-width: 576px) {
    .section-heading .title {
      font-size: 28px;
      margin-bottom: 15px;
    }
  }
  
  .section-heading .title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
                  transparent 0%,
                  var(--main-color) 50%,
                  transparent 100%);
    background-size: 200% 100%;
    z-index: 1;
    opacity: 0.85;
    border-radius: 2px;
    animation: slideGradient 3s infinite alternate ease-in-out;
  }
  
  .section-heading .title::before {
    display: none;
  }
  
  @keyframes slideGradient {
    0% {
      background-position: 0% 50%;
      width: 30px;
    }
    50% {
      width: 70px;
    }
    100% {
      background-position: 100% 50%;
      width: 30px;
    }
  }
  
  @keyframes shimmerEffect {
    0% {
      background-position: -50px 0;
    }
    100% {
      background-position: 50px 0;
    }
  }
  
  @keyframes gradientSlide {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Portfolio section title ::before element removed */
  
  /* Hover effect removed from ::after element */
  
  @keyframes pulseOrb {
    0%, 100% { 
      transform: translateX(-50%) scale(1);
      box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.5);
    }
    50% { 
      transform: translateX(-50%) scale(1.3);
      box-shadow: 0 0 20px rgba(var(--main-color-rgb), 0.8);
    }
  }
  
  .section-heading .description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 0;
    opacity: 0.8;
  }
  
  
  
  
  
  .hero-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background:var(--bg-color);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
  }
  
  [data-theme="light"] .hero-area::after {
    background: rgb(245, 249, 255);
  }
  
  /* Theme Toggle Switch - Minimal Design */
  .theme-toggle {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    margin: 0 10px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(41, 43, 44, 0.6);
    transition: .3s;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  
  input:checked + .slider {
    background-color: rgba(226, 232, 240, 0.8);
    border-color: rgba(203, 213, 225, 0.3);
  }
  
  input:checked + .slider:before {
    transform: translateX(21px);
    background-color: #3b82f6;
  }
  
  .fa-sun, .fa-moon {
    position: absolute;
    top: 4px;
    font-size: 14px;
    transition: .3s;
    z-index: 1;
  }
  
  .fa-sun {
    left: 6px;
    color: #ff9800;
    opacity: 0;
  }
  
  .fa-moon {
    right: 6px;
    color: #f8f9fa;
    opacity: 1;
  }
  
  input:checked + .slider .fa-sun {
    opacity: 1;
  }
  
  input:checked + .slider .fa-moon {
    opacity: 0;
  }
  
  /* Mobile theme toggle */
  .mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
  }
  
  .toggle-label {
    font-family: var(--nav-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
  }
  
  @media (max-width: 576px) {
    .theme-toggle {
      margin-right: 10px;
    }
  
    .switch {
      width: 50px;
      height: 26px;
    }
  
    .slider:before {
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
    }
  
    input:checked + .slider:before {
      transform: translateX(24px);
    }
  
    .fa-sun, .fa-moon {
      font-size: 14px;
      top: 5px;
    }
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-color);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
  }
  
  body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color);
  }
  
  ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: var(--color-light);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container & Grid System */
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  .rn-header .container {
    width: 100%;
    max-width: 100%;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .col-6, .col-12, .col-lg-2, .col-lg-5, .col-lg-7, .col-lg-10, .col-md-6, .col-sm-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  @media (min-width: 576px) {
    .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  
  
  @media (min-width: 992px) {
    .col-lg-2 {
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-lg-5 {
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-lg-7 {
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-lg-10 {
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .order-lg-1 {
      order: 1;
    }
    .order-lg-2 {
      order: 2;
    }
  }
  
  .order-1 {
    order: 1;
  }
  
  .order-2 {
    order: 2;
  }
  
  .align-items-center {
    align-items: center;
  }
  /* Text animation removed */
  
  
  /* Header & Navigation Styles */
  .rn-header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: 0.4s;
    padding: 0;
    display: flex;
    justify-content: space-between;
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(8px);
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--header-border);
  }
  
  [data-theme="light"] .rn-header {
    background-color: rgba(248, 250, 252, 0.85);
  }
  
  .header--fixed {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    background-color: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--header-border);
  }
  
  [data-theme="light"] .header--fixed {
    background-color: rgba(248, 250, 252, 0.8);
  }
  
  /* Extra small devices (phones, less than 576px) */
  @media (max-width: 575.98px) {
    .hero-content {
      padding: 20px 15px;
      margin-top: 10px;
    }
    
    .hero-content .subtitle {
      font-size: 11px;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }
    
    .hero-content .title {
      font-size: 28px;
      line-height: 1.2;
    }
    
    .hero-content .title .name {
      font-size: 110%;
    }
    
    .fixed-text, .animated-text {
      font-size: 18px;
    }
    
    .container-text-animate {
      margin-bottom: 15px;
    }
    
    .tech-stack {
      gap: 8px;
      margin-bottom: 20px;
    }
    
    .tech-pill {
      padding: 3px 8px;
      font-size: 12px;
    }
    
    .description-text {
      font-size: 13px;
      padding-right: 0;
      padding-left: 8px;
    }
    
    .hero-buttons {
      gap: 10px;
      margin-top: 20px;
    }
    
    .hero-buttons .btn {
      padding: 8px 15px;
      font-size: 13px;
      min-width: 130px;
    }
    
    .wrapper-social {
      margin-top: 25px;
      gap: 12px;
    }
    
    .wrapper-social .button {
      width: 35px;
      height: 35px;
    }
    
    .wrapper-social .button .icon i {
      font-size: 18px;
    }
    
    
    


    
    .experience-badge span {
      font-size: 10px;
    }
    
    /* .framework-icons {
      right: 0;
      bottom: 20px;
      gap: 8px;
    } */
    
    /* .framework-icons i, 
    .framework-icons svg {
      width: 35px;
      height: 35px;
      font-size: 16px;
      padding: 8px;
    }
     */
   
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (min-width: 576px) {
    .hero-content .title {
      font-size: 42px;
    }
  
    .hero-content .title .name {
      font-size: 115%;
    }
  
    .hero-content {
      padding: 30px;
    }
  
    .fixed-text, .animated-text {
      font-size: 24px;
    }
  
    .wrapper-social {
      justify-content: center;
    }
  
    .description-text {
      padding-right: 0;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    .rn-header {
      padding: 0;
    }
  
    .header-wrapper {
      padding: 0 50px;
      min-height: 120px;
      width: 100%;
      margin: 0 auto;
    }
  
    .logo .avatar {
      width: 65px;
      height: 65px;
    }
  
    .logo-text {
      font-size: 30px;
    }
  
    .primary-menu .nav-link {
      padding: 40px 18px;
      font-size: 17px;
    }
  
    .hero-content .title {
      font-size: 56px;
    }
  
    .hero-content .title .name {
      font-size: 125%;
      letter-spacing: -0.8px;
    }
  
    .hero-content {
      padding: 50px;
      padding-right: 16%;
      text-align: left !important;
    }
  
    .fixed-text, .animated-text {
      font-size: 28px;
    }
  
    .description-text {
      padding-right: 10%;
    }
  
    .hero-area .row {
      align-items: center;
    }
  
    .col-lg-5 {
      display: flex;
      justify-content: center;
    }
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    .hero-content {
      padding-right: 20%;
    }
  
    .container {
      max-width: 1200px;
    }
  }
  
  .header--sticky {
    background-color: transparent;
    position: fixed;
    border-bottom: none;
  }
  
  .logo-dot {
    color: var(--main-color);
    font-size: 28px;
    position: relative;
    display: inline-block;
  }
  
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    background: transparent;
    padding: 0 1rem;
    width: 100%;
    transition: all 0.3s ease;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  @media (min-width: 576px) {
    .header-wrapper {
      min-height: 70px;
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 992px) {
    .header-wrapper {
      min-height: 70px;
      padding: 0 2rem;
    }
  }
  
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    padding-left: 0;
    position: relative;
    overflow: visible;
  }
  
  @media (min-width: 992px) {
    .logo a {
      margin-left: 2vh;
    }
  }
  
  .logo .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .logo a span {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-white);
    font-family: var(--heading-font);
    letter-spacing: -0.25px;
    position: relative;
    padding: 0 5px;
    background: linear-gradient(90deg, #ffffff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    transition: all 0.4s ease;
    text-transform: lowercase;
  }
  
  .logo a span::after {
    content: "khan";
    font-weight: 300;
    letter-spacing: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .logo-span::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--main-color);
    opacity: 0.9;
  }
  
  .logo-dot {
    -webkit-text-fill-color: var(--main-color);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
  }
  
  .logo a span::before {
    display: none;
  }
  
  .logo a:hover span {
    background-position: 100% 0;
    text-shadow: 0 0 15px rgba(19, 187, 255, 0.4);
  }
  
  .logo-link {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    transition: all 0.3s ease;
  }
  
  .logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 187, 255, 0.05);
    border-radius: 4px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .logo-link:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  
  @keyframes shine-logo {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }
  
  .header-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .primary-menu {
    display: flex;
  }
  
  .primary-menu .nav-item {
    margin: 0 10px;
    position: relative;
  }
  
  .primary-menu .nav-link {
    padding: 25px 16px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    font-family: var(--nav-text);
    letter-spacing: 0.5px;
  }
  
  [data-theme="light"] .primary-menu .nav-link {
    color: #334155;
  }
  
  [data-theme="light"] .logo a span {
    background: linear-gradient(90deg, #1a202c 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .primary-menu .nav-link:hover,
  .primary-menu .nav-link.active {
    color: var(--main-color);
  }
  
  .social-header {
    display: flex;
    gap: 10px;
  }
  
  .social-header a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    background: var(--background-color-1);
    box-shadow: var(--shadow-1);
    transition: 0.3s;
  }
  
  .social-header a:hover {
    transform: translateY(-3px);
    background: var(--color-primary);
    color: var(--color-white);
  }
  
  .hamberger-menu {
    cursor: pointer;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
  }
  
  .hamberger-menu:hover {
    transform: none;
  }
  
  /* Minimal and simple hamburger icon */
  .hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    box-shadow: none;
    transform-origin: center;
  }
  
  .hamburger-icon span:nth-child(2) {
    width: 60%;
    align-self: flex-end;
  }
  
  .hamberger-menu:hover .hamburger-icon span {
    background-color: var(--main-color);
    box-shadow: none;
  }
  
  .hamberger-menu:hover .hamburger-icon span:nth-child(2) {
    width: 100%;
  }
  
  /* Cross icon transform styles */
  .hamberger-menu.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--main-color);
    box-shadow: 0 0 8px rgba(19, 187, 255, 0.5);
    width: 100%;
  }
  
  .hamberger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    width: 100%;
  }
  
  .hamberger-menu.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--main-color);
    box-shadow: 0 0 8px rgba(19, 187, 255, 0.5);
    width: 100%;
  }
  
  .d-none {
    display: none !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  @media (min-width: 1200px) {
    .d-xl-block {
      display: block !important;
    }
    .d-xl-none {
      display: none !important;
    }
  
    .header-center {
      justify-content: flex-end;
    }
  
    .primary-menu {
      position: relative;
      display: flex;
      justify-content: flex-end;
    }
  
    .primary-menu ul {
      display: flex;
      align-items: center;
    }
  }
  
  /* Mobile Menu */
  .popup-mobile-menu {
    z-index: 9999;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    perspective: 1000px;
  }
  
  .popup-mobile-menu .inner {
    padding: 25px 20px;
    width: 80%;
    max-width: 375px;
    z-index: 999;
    position: absolute;
    background: var(--popup-bg);
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 40px var(--shadow-color);
    opacity: 0;
    left: -150px;
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.27, 1.22);
    overflow-y: auto;
    border-right: 1px solid var(--popup-border);
    backdrop-filter: blur(10px);
  }
  
  @media only screen and (max-width: 479px) {
    .popup-mobile-menu .inner {
      width: 85%;
      padding: 20px 15px;
    }
  }
  
  .popup-mobile-menu.menu-open {
    visibility: visible;
    opacity: 1;
  }
  
  .popup-mobile-menu.menu-open .inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
  }
  
  .popup-mobile-menu .menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 20px;
    position: relative;
  }
  
  .popup-mobile-menu .menu-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, 
      transparent, 
      rgba(19, 187, 255, 0.3), 
      transparent);
  }
  
  .popup-mobile-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.5vh !important;
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button .close {
    opacity: 1;
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button .close:hover {
    background: rgba(19, 187, 255, 0.06);
    border-color: rgba(19, 187, 255, 0.2);
    transform: scale(1.1);
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button .close svg {
    color: var(--text-color);
    width: 16px;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button .close:hover svg {
    color: var(--main-color);
    transform: rotate(90deg);
  }
  
  .popup-mobile-menu .menu-top.menu-header .close-button .close::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(19, 187, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .popup-mobile-menu .menu-top .menu-header .close-button .close:hover::before {
    opacity: 1;
    transform: scale(1.5);
  }
  
  .popup-mobile-menu .content {
    position: relative;
    padding: 5px 0 5px 5px;
    margin-top: 10px;
  }
  
  .popup-mobile-menu .content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(19, 187, 255, 0), rgba(19, 187, 255, 0.3), rgba(19, 187, 255, 0));
    opacity: 0.5;
    border-radius: 2px;
  }
  
  .popup-mobile-menu .content .nav-item {
    margin: 8px 0;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: calc(0.1s * var(--i, 0));
    position: relative;
  }
  
  .popup-mobile-menu.menu-open .content .nav-item {
    transform: translateX(0);
    opacity: 1;
  }
  
  .popup-mobile-menu .content .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--nav-text);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    margin: 4px 0;
  }
  
  .popup-mobile-menu .content .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--main-color);
    transition: width 0.3s ease;
  }
  
  .popup-mobile-menu .content .nav-link:hover,
  .popup-mobile-menu .content .nav-link.active {
    color: var(--main-color);
  }
  
  .popup-mobile-menu .content .nav-link:hover::before,
  .popup-mobile-menu .content .nav-link.active::before {
    width: 30px;
  }
  
  /* Add subtle line separators between nav items */
  .popup-mobile-menu .content .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  }
  
  /* Remove shadow on hover */
  .popup-mobile-menu .content .nav-link.active,
  .popup-mobile-menu .content .nav-link:hover {
    box-shadow: none;
  }
  
  
  
  /* Removed Text Animation Keyframes */
  
  /* Hero Area Styles */
  .hero-area {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height :100vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--second-bg-color);
    overflow: hidden;
  }
  
  @media (max-width: 575.98px) {
    .hero-area {
      padding-top: 80px;
      padding-bottom :120px;
    }
  }
  
  .hero-content {
    padding: 30px 15px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    .hero-content {
      padding-right: 0;
      margin-top: 20px;
      text-align: center;
    }
  
   
  }
  
  .hero-content .subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    display: block;
    margin-bottom: 12px;
    font-family: var(--helvetica-text);
    position: relative;
    bottom: -2px;
  }
  
  @media (min-width: 576px) {
    .hero-content .subtitle {
      font-size: 14px;
      letter-spacing: 3px;
    }
  }
  
  .hero-content .title {
    color: var(--heading-white);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    letter-spacing: -0.5px;
    position: relative;
  }
  
  /* Minimal styling without highlight dot */
  
  @media (max-width: 991px) {
    .hero-content .title {
      font-size: 50px;
      line-height: 1.2;
    }
  }
  
  
  /* mobile small for hero  */
  @media screen and (max-width: 576px) {
    .tech-stack .tech-pill{
      font-size: 12px !important;
      padding: 6px 12px !important;
    }
    .hero-buttons .btn{
      padding: 10px 18px !important;
    }
    .hero-area::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background:var(--bg-color);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      z-index: 1;
    }
    .popup-mobile-menu .content .nav-link{
      font-size: 13px !important;
    }
  
  
  }
  /* mobile large */
  @media (max-width: 767px) {
  .logo a span{
    font-size: 28px !important;
  }
    .hero-content .title {
      font-size: 40px;
      line-height: 50px;
    }
    /* Ensure image scaling is consistent across screen sizes */
    
  
   
    
    
    /* text animation */
    .container-text-animate {
      justify-content: center;
    }
/*   
    .card-info,
    .card-description {
      width: 100%;
    } */
  
    .text-4xl {
      font-size: 1.875rem;
    }
  
    .py-16 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  .tech-stack .tech-pill {
    padding: 8px 14px;
    font-size: 15px
  } 
  
  .hero-buttons a{
    padding: 13px 22px !important;
  }
  
  }
  /* my tablet */
  @media (min-width: 768px) and (max-width: 991px) {
    .logo a span{
      font-size: 32px !important;
    }
    .hamburger-icon{
      width: 32px !important;
      height: 24px !important;
    }
  
  
    .hero-area .col-md-6 {
      display: flex;
      justify-content: center;
    }
  
   
  
    .hero-area{
      padding-top: 60px !important;
    }
  
    /* Header & Navigation */
    .header-wrapper {
      min-height: 80px;
      padding: 0 25px;
    }
  
  
  
    /* Hero section */
    .hero-content {
      padding: 40px;
      padding-right: 8%;
      text-align: center;
    }
  
    /* .framework-icons {
      right: 0;
      bottom: 40px;
      gap: 12px;
    }
  
    .framework-icons i, 
    .framework-icons svg {
      font-size: 28px !important;
      width: 42px;
      height: 42px;
      padding: 10px;
    } */
  
    /* container text animate */
    .container-text-animate{
      justify-content: center;
    }
    .container-text-animate .text-wrapper .animated-text{
      font-size: 37px !important;
    }
    /* Social media icons */
    .wrapper-social .button {
      width: 55px !important;
      height: 55px !important;
    }
  .wrapper-social .icon i{
    font-size: 24px !important;
  }
  
  
    .tech-stack {
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .tech-stack .tech-pill{
      font-size: 16px !important;
      padding: 12px 20px !important;
    }
    .hero-buttons a{
      padding: 16px 28px !important;
      font-size: 16px !important;
    }
    
  
  
  
  
  }
  
  @media (max-width: 479px) {
    .hero-content .title {
      font-size: 32px;
      line-height: 40px;
    }
  }
  
  .hero-content .title .name {
    color: var(--main-color);
    position: relative;
    display: inline-block;
    padding: 0 2px;
    font-size: 110%;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  @keyframes textShine {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 100% center;
    }
  }
  
  @keyframes shine-text {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }
  
  @keyframes glow-underline {
    0%, 100% {
      opacity: 0.4;
      transform: translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateY(-2px);
    }
  }
  
  /* Removed Text Animation Styling */
  
  /* Tech stack badges */
  .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
    justify-content: center;
  }
  
  @media (min-width: 992px) {
    .tech-stack {
      justify-content: flex-start;
    }
  }
  
  .tech-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  /* Dark theme hover effect for tech pills */
  .tech-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(19, 187, 255, 0.2);
  }
  
  /* Light theme specific styling for tech pills */
  [data-theme="light"] .tech-pill {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(203, 213, 225, 0.5);
    color: #1e293b;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Light theme hover effect for tech pills */
  [data-theme="light"] .tech-pill:hover {
    background: #ffffff;
    border-color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.15);
  }
  
  /* Shine effect for tech pills on hover (both themes) */
  .tech-pill::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
  }
  
  .tech-pill:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
  }
  
  .tech-pill i, .tech-pill svg {
    font-size: 18px;
    color: var(--main-color);
    transition: all 0.3s ease;
  }
  
  .tech-pill:hover i, .tech-pill:hover svg {
    transform: scale(1.1);
  }
  
  .tech-pill .next-icon {
    font-weight: 700;
    font-size: 20px;
    color: var(--main-color);
    font-family: var(--heading-font);
    line-height: 1;
  }
  
  .hero-content .description {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    position: relative;
  }
  
  .description-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding-right: 0;
    font-weight: 300;
    position: relative;
    padding-left: 12px;
    margin-left: 5px;
    border-left: 2px solid var(--main-color);
    text-align: left;
  
    /* Make sure text doesn't break on small screens */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  [data-theme="light"] .description-text {
    color: rgba(30, 42, 55, 0.85);
    font-weight: 400;
  }
  
  .hero-content .description::before,
  
  /* Mobile menu item animations */
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(2) { animation-delay: 0.15s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(3) { animation-delay: 0.2s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(4) { animation-delay: 0.25s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(5) { animation-delay: 0.3s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(6) { animation-delay: 0.35s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(7) { animation-delay: 0.4s; }
  .popup-mobile-menu.menu-open .content .nav-item:nth-child(8) { animation-delay: 0.45s; }
  
  /* Enhanced navigation appearance */
  .popup-mobile-menu .content .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* Add subtle hover lift effect */
  .popup-mobile-menu .content .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Add subtle line on the side of the active menu item */
  .popup-mobile-menu .content .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--main-color);
    box-shadow: 0 0 8px rgba(19, 187, 255, 0.8);
    border-radius: 0 2px 2px 0;
    opacity: 1;
  }
  
  /* Animate menu items on open */
  @keyframes menuItemFadeIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .popup-mobile-menu.menu-open .content .nav-item {
    animation: menuItemFadeIn 0.5s forwards;
  }
  
  .hero-content .description::after {
    display: none;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .hero-content .description p {
    font-family: var(--primary-font);
  }
  
  
  
  .thumbnail {
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    width: 90% ;
    height: 60vh;
    z-index: 2;
    overflow: hidden !important;
  }
  
  .thumbnail .inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
  }

    .thumbnail .inner img {
    border-radius: 12px;
    width: 99.5%;
    height: 95%;
    bottom: -1.8vh;
    position: relative;
    z-index: 2;
    transition: .3s ease-in-out !important;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  }
  /*tablet navigation query */
  /* @media (min-width: 768px) and (max-width: 991px){
  
  
.header-center .nav-talk-btn{
  display: none !important;
}
.nav-item-hire-me{
  display: flex;
}
} */
/*mobile navigation query */
/* @media (max-width: 767px){
  
.header-center .nav-talk-btn{
  display: none !important;
}

.nav-item-hire-me{
  display: flex;
}


} */


/* tablet banner query */
  @media (min-width: 768px) and (max-width: 991px){
    
  .thumbnail {
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    width: 80%;
    height: 70vh;
    z-index: 2;
    margin-top: 7vh;
  }
  
  .thumbnail .inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
  }

    .thumbnail .inner img {
    border-radius: 12px;
    width: 99%;
    height: 98%;
    bottom:-.7vh !important;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  }

  .experience-badge {
    position: absolute;
    top: 35px !important;
    left: 0;
    background: rgba(19, 187, 255, 0.9);
    color: white !important;
    font-weight: 500;
    font-size: 24px !important;
    padding: 18px 25px !important;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1;
    z-index: 10;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(19, 187, 255, 0.25);
    letter-spacing: 0.5px;
    
    opacity: 1 !important;
    
  }
  
  .experience-badge span {
    font-size: 12px;
    font-weight: 400;
    opacity: 1 !important;
  }

  .framework-icons {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
  }

  .framework-icons .next-js-icon{
       width: 3.7rem ;
       height: 3.7rem;
  }

  .framework-icons .react-icon{
    width: 3.7rem ;
    height: 3.7rem;
  
  }

  .framework-icons .tailwind-icon{
    width: 3.7rem ;
    height: 3.7rem;
  
  }
}



/*  mobile banner query */
@media (max-width: 768px) {
   .thumbnail { 
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    width: 100% !important;
    height: 70vh;
    z-index: 2;
    margin-top: 2vh;
  }
  
  .thumbnail .inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
  }

    .thumbnail .inner img {
    border-radius: 12px;
    width: 99%;
    height: 95%;
    bottom:-1.9vh !important;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  }

  .experience-badge {
    position: absolute;
    top: 25px !important;
    left: 0;
    background: rgba(19, 187, 255, 0.9);
    color: white !important;
    font-weight: 500;
    font-size: 15px !important;
    padding: 12px 16px !important;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1;
    z-index: 10;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(19, 187, 255, 0.25);
    letter-spacing: 0.5px;
    opacity: 1 !important;
    
  }
  
  .experience-badge span {
    font-size: 12px;
    font-weight: 400;
    opacity: 1 !important;
    margin-top: 4px;
  }

 .hero-content {
  padding: 0;
    position: relative;
    z-index: 2;
    text-align: center;
  }

    .container-text-animate {
   text-align: left !important;
   margin-left: -2.8vw !important;
  }

  .fixed-text{
    font-size: 26px !important;
    margin-left: -13vw;
  }
    .animated-text {
    font-size: 26px !important;
    font-weight: 500;
    color: var(--main-color);
    font-family: var(--title-font);
    position: relative;
  }
  
  .pipe {
    display: inline-block;
    background-color: var(--main-color);
    width: 2px;
    height: 22px;
    margin-left: 3px;
    animation: blink 1s step-end infinite;
  }


}



  /* Add professional elegant reflection similar to the e-learning example */
  .thumbnail .inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
                                rgba(255, 255, 255, 0.08) 0%, 
                                transparent 60%);
    z-index: 1;
  }
  
  /* Enhanced thumbnail styling in light mode */
  [data-theme="light"] .thumbnail .inner {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 10px 20px rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  [data-theme="light"] .thumbnail .inner:hover {
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1), 0 15px 30px rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
  }
  
  /* Responsive styles for thumbnail */
  /* Mobile Portrait (320px to 480px) */

  

  
  /* Tablet Portrait (768px to 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .hero-area .container{
      padding: 30px 0px;
    }
   
  
    /* Improved spacing for tablet portrait */
    .hero-area {
      padding-top: 120px;
      min-height: 90vh;
    }
  
    .hero-content {
      padding-bottom: 20px;
    }
  
    /* Better tech stack display */
    .tech-stack {
      margin-bottom: 25px;
    }
  
    .tech-pill {
      padding: 6px 12px;
      font-size: 13px;
    }
  }
  
  /* Tablet Landscape (landscape orientation or iPad Pro) hero-area*/
  @media (min-width: 1024px) and (max-width: 1199px), 
         (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .header-wrapper {
      min-height: 80px;
      padding: 0 35px;
    }
  
    .primary-menu .nav-link {
      padding: 30px 12px;
      font-size: 15px;
    }
  
    .hero-content {
      padding: 40px;
      padding-right: 10%;
    }
  
    .hero-content .title {
      font-size: 52px;
    }
  
    .fixed-text, .animated-text {
      font-size: 26px;
    }
  
  
  
    /* .framework-icons {
      right: -5px;
      bottom: 45px;
    }
  
    .framework-icons i, 
    .framework-icons svg {
      width: 45px;
      height: 45px;
    } */
  
    /* Adjust tech pills for better display */
    .tech-pill {
      padding: 5px 14px;
    }
  }
  
  /* Tablet Landscape (1025px to 1280px) */
  @media (min-width: 1025px) and (max-width: 1280px) {
  
  }
  
  /* Small Laptops (1281px to 1440px) */
  @media (min-width: 1281px) and (max-width: 1440px) {
   
  }
  
  /* Desktops (1441px to 1919px) */
  @media (min-width: 1441px) and (max-width: 1919px) {
   
  }
  
  /* Large Desktops / TVs (1920px and up) */
  @media (min-width: 1920px) {
   
  }
  
  .thumbnail .inner::before,
  .thumbnail .inner::after {
    display: none;
  }
  
  @keyframes spin {
    from { transform: translateZ(-10px) rotate(0deg); }
    to { transform: translateZ(-10px) rotate(360deg); }
  }
  
  .hero-simple-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--main-color);
    border-radius: 20px;
    opacity: 0.3;
    transform: rotate(25deg) translateZ(20px);
    animation: float 6s ease-in-out infinite, spin 15s linear infinite;
  }
  
  .thumbnail .inner.simplified {
    isolation: isolate;
    overflow: visible;
  }
  

  
  .thumbnail .inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
                                rgba(19, 187, 255, 0.05) 0%, 
                                transparent 60%);
    z-index: 1;
  }
  
  

  
  
  
  /* Hero image hover effects removed */
  
  /* Experience badge */
  .experience-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: rgba(19, 187, 255, 0.9);
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1;
    z-index: 10;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(19, 187, 255, 0.25);
    letter-spacing: 0.5px;
  }
  

  
  .experience-badge span {
    font-size: 12px;
    font-weight: 400;
  }
  

  
  /* Framework icons - minimal and simple */
  .framework-icons {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    /* .framework-icons {
      right: 5px;
      bottom: 40px;
      gap: 12px;
    } */
  }
  
  .framework-icons i,
  .framework-icons svg {
    font-size: 18px;
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
  }
  
  /* Light mode framework icons */
  [data-theme="light"] .framework-icons i,
  [data-theme="light"] .framework-icons svg {
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 6px rgba(var(--main-color-rgb), 0.08);
    border: 1px solid rgba(var(--main-color-rgb), 0.15);
  }
  
  /* Simple hover effects */
  .framework-icons i:hover,
  .framework-icons svg:hover {
    transform: translateY(-3px);
    color: white;
    background: var(--main-color);
    border-color: transparent;
    box-shadow: 0 4px 8px rgba(var(--main-color-rgb), 0.3);
  }
  
  [data-theme="light"] .framework-icons i:hover,
  [data-theme="light"] .framework-icons svg:hover {
    color: #ffffff;
    background: var(--main-color);
    box-shadow: 0 8px 15px rgba(var(--main-color-rgb), 0.25);
    border-color: transparent;
    transform: translateY(-8px) rotate(5deg);
  }
  
  @keyframes iconShine {
    0% {
      transform: translateX(-100%) rotate(45deg);
      opacity: 0;
    }
    20% {
      opacity: 0.5;
    }
    100% {
      transform: translateX(100%) rotate(45deg);
      opacity: 0;
    }
  }
  
  .framework-icons i:nth-child(1),
  .framework-icons svg:nth-child(1) {
    animation-delay: 0s;
  }
  
  .framework-icons i:nth-child(2),
  .framework-icons svg:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .framework-icons i:nth-child(3),
  .framework-icons svg:nth-child(3) {
    animation-delay: 0.8s;
  }
  
  .framework-icons i:hover,
  .framework-icons svg:hover {
    transform: translateY(-8px) rotate(5deg);
    color: white;
    background: var(--main-color);
    box-shadow: 0 8px 15px rgba(var(--main-color-rgb), 0.25);
    border-color: transparent;
    animation-play-state: paused;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .framework-icons i:hover::after,
  .framework-icons svg:hover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 2px;
    background: var(--main-color);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(var(--main-color-rgb), 0.5);
    opacity: 0.7;
  }
  
  @keyframes iconTiltTopBottom {
    0% {
      transform: rotateX(0deg) translateY(0px);
    }
    25% {
      transform: rotateX(20deg) translateY(-6px);
    }
    50% {
      transform: rotateX(0deg) translateY(0px);
    }
    75% {
      transform: rotateX(-20deg) translateY(6px);
    }
    100% {
      transform: rotateX(0deg) translateY(0px);
    }
  }
  
  .react-icon { --i: 0; }
  .next-js-icon { --i: 1; }
  .tailwind-icon { --i: 2; }
  
  @keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  
  
  
  
  /* Ensure the hero row is using flex layout */
  .hero-area .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Mobile ordering: Image on top, text below */
  .hero-area .order-1 {
    order: 1;
  }
  .hero-area .order-2 {
    order: 2;
  }
  
  /* Large screens ordering (min-width: 992px) */
  @media (min-width: 992px) {
    /* Override mobile ordering */
    .hero-area .order-lg-1 {
      order: 1;
    }
    .hero-area .order-lg-2 {
      order: 2;
    }
  }
  
  
  
  /* Enhanced 3D Hero buttons styling */
  .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    perspective: 1000px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  @media (min-width: 768px) {
    .hero-buttons {
      gap: 20px;
      flex-wrap: nowrap;
    }
  }
  
  @media (min-width: 992px) {
    .hero-buttons {
      justify-content: flex-start;
    }
  }
  
  .hero-buttons .btn {
    cursor: pointer;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--primary-font);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 140px;
  }
  
  @media (min-width: 576px) {
    .hero-buttons .btn {
      padding: 10px 24px;
    }
  }
  
  /* Hire Me Button */
  .hero-buttons .hire-me {
    color: #fff;
    background: var(--main-color);
    border: none;
  }
  
  .hero-buttons .hire-me:hover {
    background: #218fd9;
    transform: translateY(-2px);
  }
  
  /* Download CV Button */
  .hero-buttons .download-cv {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  [data-theme="light"] .hero-buttons .hire-me {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25), 0 2px 4px rgba(59, 130, 246, 0.08);
  }
  
  [data-theme="light"] .hero-buttons .hire-me:hover {
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3), 0 3px 5px rgba(59, 130, 246, 0.12);
    transform: translateY(-3px);
  }
  
  [data-theme="light"] .hero-buttons .download-cv {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-color);
    box-shadow: 0 3px 7px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(59, 130, 246, 0.06);
  }
  
  [data-theme="light"] .hero-buttons .btn:hover .btn-icon {
    filter: none;
  }
  
  [data-theme="light"] .hero-buttons .download-cv:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--main-color);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.15), 0 2px 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
  }
  
  .hero-buttons .download-cv:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    transform: translateY(-2px);
  }
  
  /* Button icon styles */
  .hero-buttons .btn-icon {
    width: 0;
    height: 16px;
    margin-left:0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(19, 187, 255, 0.7));
  }
  
  .hero-buttons .btn:hover .btn-icon {
    width: 18px;
    margin-left: 8px;
    opacity: 1;
    transform: translateX(2px);
  }
  
  /* Ensure icons are visible in light mode */
  [data-theme="light"] .hero-buttons .btn-icon {
    color: inherit;
    filter: none;
  }
  
  [data-theme="light"] .hero-buttons .hire-me .btn-icon {
    color: #fff;
  }
  
  [data-theme="light"] .hero-buttons .download-cv .btn-icon {
    color: var(--main-color);
  }
  
  [data-theme="light"] .hero-buttons .download-cv:hover .btn-icon {
    color: var(--main-color);
  }
  
  /* Floating particle effects for buttons */
  .hero-buttons .btn::before,
  .hero-buttons .btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  /* Animations */
  @keyframes pulseButton {
    0%, 100% {
      opacity: 0.8;
      filter: brightness(1);
    }
    50% {
      opacity: 1;
      filter: brightness(1.2);
    }
  }
  
  @keyframes rotateGradient {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes borderLight {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }
  
  /* Active state */
  .hero-buttons .btn:active {
    transform: translateZ(5px) scale(0.98);
    box-shadow: 
      0 0 0 1px rgba(19, 187, 255, 0.1),
      0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
  }
  
  
   /* Futuristic Neon Social Media Icons */
  .wrapper-social {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  @media (min-width: 768px) {
    .wrapper-social {
      margin-top: 35px;
      gap: 18px;
      justify-content: flex-start;
    }
  }
  
  @media (min-width: 992px) {
    .wrapper-social {
      margin-top:.40px;
      gap: 20px;
      flex-wrap: nowrap;
    }
  }
  
  .wrapper-social .button {
  
  /* Sparkle effect for thumbnail */
  .sparkle {
    position: absolute;
    width: var(--size, 3px);
    height: var(--size, 3px);
    border-radius: 50%;
    background-color: white;
    top: var(--top, 50%);
    left: var(--left, 50%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    animation: sparkleAnimation var(--duration, 1.5s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    box-shadow: 0 0 10px 2px var(--main-color);
  }
  
  @keyframes sparkleAnimation {
    0%, 100% {
      opacity: 0;
      transform: scale(0) translateZ(0);
    }
    50% {
      opacity: 0.8;
      transform: scale(1) translateZ(0);
    }
  }
  
  /* Light beams and floating shapes removed for minimalism */
  
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  .wrapper-social .button:hover {
    transform: perspective(800px) rotateY(15deg) translateY(-7px);
    border-color: var(--main-color);
    box-shadow: 
      0 7px 20px rgba(var(--main-color-rgb, 19, 187, 255), 0.2),
      0 0 0 1px rgba(var(--main-color-rgb, 19, 187, 255), 0.2),
      0 0 15px rgba(var(--main-color-rgb, 19, 187, 255), 0.15);
  }
  
  [data-theme="light"] .wrapper-social .button {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(203, 213, 225, 0.5);
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(59, 130, 246, 0.05);
  }
  
  [data-theme="light"] .wrapper-social .button:hover {
    box-shadow: 0 5px 12px rgba(59, 130, 246, 0.12), 0 2px 5px rgba(59, 130, 246, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: perspective(800px) rotateY(15deg) translateY(-7px);
  }
  
  [data-theme="light"] .wrapper-social .button .icon i {
    color: #475569;
  }
  
  [data-theme="light"] .wrapper-social .button:hover .icon i {
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  }
  
  [data-theme="light"] .wrapper-social .button span {
    color: #334155;
    text-shadow: none;
  }
  
  [data-theme="light"] .wrapper-social .button:hover span {
    color: var(--main-color);
  }
  
  /* Glow effect */
  .wrapper-social .button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(19, 187, 255, 0.1), rgba(19, 187, 255, 0));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
  }
  
  .wrapper-social .button:hover::before {
    opacity: 1;
  }
  
  /* Neon outline */
  .wrapper-social .button::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
      135deg, 
      rgba(19, 187, 255, 0.6) 0%, 
      rgba(19, 187, 255, 0) 50%,
      rgba(19, 187, 255, 0.6) 100%
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
  }
  
  .wrapper-social .button:hover::after {
    opacity: 1;
    animation: borderRotate 4s linear infinite;
  }
  
  @keyframes borderRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Icon styles */
  .wrapper-social .button .icon {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .wrapper-social .button .icon i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 0 10px rgba(19, 187, 255, 0.3);
  }
  
  .wrapper-social .button:hover .icon {
    transform: scale(1.1);
  }
  
  .wrapper-social .button:hover .icon i {
    color: var(--main-color);
    text-shadow: 
      0 0 8px rgba(19, 187, 255, 0.8),
      0 0 20px rgba(19, 187, 255, 0.4);
  }
  
  /* Label */
  .wrapper-social .button span {
    position: absolute;
    bottom: -30px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(19, 187, 255, 0.7);
    letter-spacing: 0.5px;
  }
  
  .wrapper-social .button:hover span {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Shine effect */
  .wrapper-social .button .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  
  .wrapper-social .button:hover .shine {
    opacity: 1;
    animation: shineEffect 1.5s ease-out;
  }
  
  @keyframes shineEffect {
    0% {
      transform: scale(0);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  
  /* 3D floating particles */
  .wrapper-social .button:hover .icon::before,
  .wrapper-social .button:hover .icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 5px rgba(19, 187, 255, 0.8);
    opacity: 0;
    z-index: -1;
  }
  
  .wrapper-social .button:hover .icon::before {
    animation: particle1 1.2s ease infinite;
  }
  
  .wrapper-social .button:hover .icon::after {
    animation: particle2 1.5s ease infinite;
  }
  
  @keyframes particle1 {
    0% {
      top: 0;
      left: 0;
      opacity: 0;
    }
    50% {
      top: -15px;
      left: 15px;
      opacity: 1;
    }
    100% {
      top: -30px;
      left: 30px;
      opacity: 0;
    }
  }
  
  @keyframes particle2 {
    0% {
      bottom: 0;
      right: 0;
      opacity: 0;
    }
    50% {
      bottom: -15px;
      right: 15px;
      opacity: 1;
    }
    100% {
      bottom: -30px;
      right: 30px;
      opacity: 0;
    }
  }
  
  /* Text Animate - Minimal Version */
  .container-text-animate {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0;
  }
  
  
  
  @media (min-width: 992px) {
    .container-text-animate {
      justify-content: flex-start;
    }
  }
  
  .fixed-text {
    font-size: 22px;
    font-weight: 400;
    margin-right: 8px;
    color: var(--heading-white);
    font-family: var(--title-font);
  }
  
  [data-theme="light"] .fixed-text {
    color: #1e293b;
  }
  
  .text-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .animated-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--main-color);
    font-family: var(--title-font);
    position: relative;
  }
  
  .pipe {
    display: inline-block;
    background-color: var(--main-color);
    width: 2px;
    height: 22px;
    margin-left: 3px;
    animation: blink 1s step-end infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1 }
    50% { opacity: 0 }
  }
  
  @keyframes slideIn {
    from {
      width: 0;
      opacity: 0;
    }
    to {
      width: 100%;
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      width: 100%;
      opacity: 1;
    }
    to {
      width: 0;
      opacity: 0;
    }
  }
  
  
  /* Add liquid shine effect */
  .wrapper-social .button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 3;
  }
  
  .wrapper-social .button:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
  }
  
  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(45deg);
      opacity: 0;
    }
    20% {
      opacity: 0.3;
    }
    100% {
      transform: translateX(100%) rotate(45deg);
      opacity: 0;
    }
  }
  /* Particle background effect with fixed dot grid */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(19, 187, 255, 0.015) 0%, transparent 15%),
      radial-gradient(circle at 80% 70%, rgba(19, 187, 255, 0.015) 0%, transparent 15%);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
  }
  
  /* Hero section clean styles */
  
  /* Text animation styles removed */
  
  /* Entrance animations */
  
  /* Entrance animations for content */
  .fade-in-up {
    animation: fadeInUp 1s forwards;
    opacity: 0;
  }
  
  .fade-in-right {
    animation: fadeInRight 1s forwards;
    opacity: 0;
  }
  
  .fade-in-left {
    animation: fadeInLeft 1s forwards;
    opacity: 0;
  }
  
  .fade-in {
    animation: fadeIn 1s forwards;
    opacity: 0;
  }
  
  .fade-in-delay-1 {
    animation-delay: 0.2s;
  }
  
  .fade-in-delay-2 {
    animation-delay: 0.4s;
  }
  
  .fade-in-delay-3 {
    animation-delay: 0.6s;
  }
  
  .fade-in-delay-4 {
    animation-delay: 0.8s;
  }
  
  .fade-in-delay-5 {
    animation-delay: 1s;
  }
  
  /* Hero entrance animation effects */
  @keyframes reveal {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slide-in-right {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pop-in {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    70% {
      transform: scale(1.05);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes float-in {
    0% {
      opacity: 0;
      transform: translateY(20px) translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0) translateX(0);
    }
  }
  
  /* Special animation for hero image */
  .js-animate-hero {
    transition: all 0.8s cubic-bezier(0.17, 0.67, 0.27, 1.22);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Navigation links styling */
  .primary-menu .nav-link {
    position: relative;
  }
  
  /* Hover effect for nav links without underline */
  .primary-menu .nav-link:hover,
  .primary-menu .nav-link.active {
    color: var(--main-color);
  }
  
  /* Enhance mobile menu with better transitions */
  .popup-mobile-menu .inner {
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .popup-mobile-menu.menu-open .inner {
    transition-delay: 0.1s;
  }
  
  /* Add subtle hover glow effect to thumbnail */
  .thumbnail .inner:hover {
    border-color: rgba(19, 187, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  }
  
  .thumbnail .inner img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 35px rgba(19, 187, 255, 0.15));
  }
  
  /* Minimal Social Media Icons */
  .wrapper-social {
    margin-top: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
  }
  
  .wrapper-social .button {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .wrapper-social .button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
      rgba(19, 187, 255, 0.05), 
      rgba(19, 187, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .wrapper-social .button:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 187, 255, 0.3);
    background: rgba(19, 187, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper-social .button:hover::before {
    opacity: 1;
  }
  
  .wrapper-social .button .icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .wrapper-social .button .icon i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }
  
  .wrapper-social .button:hover .icon {
    transform: scale(1.1);
  }
  
  .wrapper-social .button:hover .icon i {
    color: var(--main-color);
  }
  
  /* Simple label effect */
  .wrapper-social .button span {
    position: absolute;
    bottom: -24px;
    font-size: 11px;
    font-weight: 500;
    color: transparent;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(2px);
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .wrapper-social .button:hover span {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Subtle shine effect */
  .wrapper-social .button .shine {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%);
  
  /* Additional decorative elements for the hero section in light mode */
  [data-theme="light"] .hero-area {
    position: relative;
    overflow: hidden;
  }
  
  /* Add subtle light beam effect */
  [data-theme="light"] .hero-area .light-beam {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(30px);
    animation: floatBeam 15s ease-in-out infinite alternate;
    z-index: -1;
  }
  
  @keyframes floatBeam {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(100px, 100px) scale(1.5); opacity: 0.5; }
    100% { transform: translate(200px, 50px) scale(1); opacity: 0.3; }
  }
  
  /* Add floating triangle shapes */
  [data-theme="light"] .hero-area .floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(59, 130, 246, 0.08);
    opacity: 0.5;
    animation: floatTriangle 20s ease-in-out infinite;
    z-index: -1;
  }
  
  [data-theme="light"] .hero-area .triangle-1 {
    top: 15%;
    left: 25%;
    transform: rotate(30deg);
    animation-delay: 0s;
  }
  
  [data-theme="light"] .hero-area .triangle-2 {
    top: 65%;
    right: 15%;
    transform: rotate(-15deg);
    animation-delay: 5s;
  }
  
  @keyframes floatTriangle {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0); }
  }

      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .wrapper-social .button:hover .shine {
    animation: socialShine 1s forwards;
    opacity: 1;
  }
  
  @keyframes socialShine {
    0% {
      transform: rotate(45deg) translateX(-100%);
    }
    100% {
      transform: rotate(45deg) translateX(100%);
    }
  }
  
  /* Floating particles for hero section */
  .glowing-dot {
    position: absolute;
    border-radius: 50%;
    background-color: var(--main-color);
    box-shadow: 0 0 10px 2px rgba(19, 187, 255, 0.5);
    z-index: -1;
    pointer-events: none;
  }
  
  .floating-particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px 2px rgba(19, 187, 255, 0.7);
    top: var(--start-y);
    left: var(--start-x);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    animation: floatingParticle var(--duration) ease-in-out forwards var(--delay);
  }
  
  @keyframes floatingParticle {
    0% {
      transform: translate(0, 0) scale(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
      transform: translate(calc(var(--end-x) * 0.1), calc(var(--end-y) * 0.1)) scale(1);
    }
    90% {
      opacity: 1;
      transform: translate(calc(var(--end-x) * 0.9), calc(var(--end-y) * 0.9)) scale(1);
    }
    100% {
      transform: translate(var(--end-x), var(--end-y)) scale(0);
      opacity: 0;
    }
  }
  
  @keyframes particle1 {
    0% {
      top: 0;
      left: 0;
      opacity: 0;
    }
    50% {
      top: -15px;
      left: 15px;
      opacity: 1;
    }
    100% {
      top: -30px;
      left: 30px;
      opacity: 0;
    }
  }
  
  @keyframes particle2 {
    0% {
      bottom: 0;
      right: 0;
      opacity: 0;
    }
    50% {
      bottom: -15px;
      right: 15px;
      opacity: 1;
    }
    100% {
      bottom: -30px;
      right: 30px;
      opacity: 0;
    }
  }
  
  .floating-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), transparent);
    opacity: 0.25;
    filter: blur(8px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
  }
  
  .floating-element {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    filter: blur(3px);
  }
  
  /* Fixed dot grid removed */
  
  .tech-circle {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(19, 187, 255, 0.3);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotateSlow 20s linear infinite;
    z-index: -1;
  }
  
  @keyframes rotateSlow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /* Light theme styles for pricing section */
  [data-theme="light"] .pricing-section {
    background-color: #f8fafc;
  }
  
  [data-theme="light"] .tabs {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }
  
  [data-theme="light"] .tab-btn {
    color: #475569;
  }
  
  [data-theme="light"] .tab-btn:hover {
    color: var(--main-color);
  }
  
  [data-theme="light"] .tab-btn.active {
    background: var(--main-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25), 
                0 4px 10px rgba(59, 130, 246, 0.15),
                0 2px 5px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
  }
  
  [data-theme="light"] .pricing-card {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }
  
  [data-theme="light"] .title-text {
    color: #1e293b;
  }
  
  [data-theme="light"] .subtitle {
    color: #64748b;
  }
  
  [data-theme="light"] .description-text {
    color: #475569;
  }
  
  [data-theme="light"] .feature-list-item > span {
    color: #334155;
  }
  
  [data-theme="light"] .price-section span {
    background: #ffffff;
    color: var(--main-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08), 0 2px 4px rgba(59, 130, 246, 0.06);
  }
  
  [data-theme="light"] .rn-btn {
    background: #ffffff;
    color: var(--main-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
  }
  
  [data-theme="light"] .rn-btn:hover {
    background: var(--main-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    border-color: transparent;
  }
  
  [data-theme="light"] .rn-btn:hover .arrow {
    color: #ffffff;
  }
  
  [data-theme="light"] .timeline-item figcaption {
    color: #64748b;
  }
  
  [data-theme="light"] .popup-mobile-menu .content .nav-link {
    color: #1e2a37;
    text-shadow: none;
  }
  
  [data-theme="light"] .popup-mobile-menu {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
  }
  
  /* The Header or Navbar and Hero section code is end here, follow this comment line */
  
  /* =============== Portfolio Section Styles Begin =============== */
  /* Initial state for portfolio cards */

  /* Container */
  .portfolio-section {
    padding:0 0 7.5rem 0;
    background-color: #121212;
  }
  
  
  .portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Portfolio Section */
  
  
  /* Portfolio Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Card */
  .portfolio-card {
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background:  linear-gradient(145deg, #191919, #1E1E1E);
    margin-top: 2vh;

  }
  
  .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  }
  .portfolio-card:hover  .portfolio-card-title{
    color:var(--main-color);
  }
  .portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }
  
  .portfolio-card:hover::before {
    opacity: 0.8;
  }
  
  /* Card Image */
  .portfolio-card-image-container {
    position: relative;
    height: 12rem;
    width: 100%;
    overflow: hidden;
  }
  
  .portfolio-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .portfolio-card:hover .portfolio-card-image {
    transform: scale(1.05);
  }
  
  /* Card Header */
  .portfolio-card-header {
    padding: 1.5rem 1.5rem 0.5rem;
  }
  
  .portfolio-card-title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
  }
  
  .portfolio-card-title {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--title-font);
    position: relative;
  
  }
  
  .portfolio-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.25rem;
  }
  
  .portfolio-card-description {
    font-family: var(--primary-font);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding-right: 0;
    font-weight: 300 !important;
    position: relative;
    padding-left: 12px;
    margin-left: 5px;
    border-left: 2px solid var(--main-color);
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Card Footer */
  .portfolio-card-footer {
    margin-top: auto;
    padding: 1rem 1.5rem 1.5rem;
  }
  
  /* Button */
  .portfolio-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 200;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid  #ffffff;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.7;
  }
  
  .portfolio-button:hover {
    background-color: var(--main-color);
    border:none;
    opacity: 1;
  }
  
  .portfolio-button i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
  }
  
  .portfolio-button:hover .portfolio-button-text {
    color: rgba(255, 255, 255, 1);
  }
  
  .portfolio-button:hover .portfolio-card-description {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .portfolio-button-text {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
  }
  
  /* Portfolio section code end now*/
  
  
  /* testimonial-section code start here */
  /*  */
  
  :root {
    --color-dark: #212428;
    --color-dark-card: #121212;
    --color-accent: #f9004d;
    --color-accent-rgb: 249, 0, 77;
    --color-light: #c4cfde;
    --color-body: #878e99;
    --color-muted: #7c838e;
    --color-quote: #46484d;
    --color-yellow: #ffc107;
    --shadow-card: 8px 8px 15px #121212, -8px -8px 15px #252525;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.7s ease;
  }
  
  /* Reset and Base Styles */
  
  
  /* Utility Classes */
  #testimonial-section{
background-color: #1a1a1a;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-accent {
    color: var(--color-accent);
  }
  
  .text-light {
    color: var(--color-light);
  }
  
  .text-body {
    color: var(--color-body);
  }
  
  .text-muted {
    color: var(--color-muted);
  }
  
  .text-quote {
    color: var(--color-quote);
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .text-xs {
    font-size: 0.75rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .text-xl {
    font-size: 1.25rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .tracking-wider {
    letter-spacing: 0.05em;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mt-10 {
    margin-top: 2.5rem;
  }
  
  .mt-12 {
    margin-top: 3rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }
  
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .pb-6 {
    padding-bottom: 1.5rem;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .gap-2 {
    gap: 0.5rem;
  }
  
  .gap-3 {
    gap: 0.75rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .items-center {
    align-items: center;
  }
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .z-20 {
    z-index: 20;
  }
  
  .w-full {
    width: 100%;
  }
  
  .h-px {
    height: 1px;
  }
  
  .h-48 {
    height: 20rem;
  }
  
  .h-600 {
    height: 600px;
  }
  
  .max-w-2xl {
    max-width: 42rem;
  }
  
  .rounded-xl {
    border-radius: 0.75rem;
  }
  
  .rounded-md {
    border-radius: 0.375rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .leading-relaxed {
    line-height: 1.625;
  }
  
  .bg-dark {
    background-color: #121212;
  }
  
  .object-cover {
    object-fit: cover;
  }
  
  .opacity-20 {
    opacity: 0.2;
  }
  
  .opacity-50 {
    opacity: 0.5;
  }
  
  .opacity-75 {
    opacity: 0.75;
  }
  
  /* Testimonial Carousel Styles */
  #testimonial-carousel {
    perspective: 1000px;
    padding:0 5vh 0 5vh !important;
  }
  
  
  .testimonial-slide {
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
    transform-style: preserve-3d;
  }
  
  .testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .testimonial-slide.slide-in-right {
    animation: slideInRight 0.7s forwards;
  }
  
  .testimonial-slide.slide-in-left {
    animation: slideInLeft 0.7s forwards;
  }
  
  .testimonial-slide.slide-out-right {
    animation: slideOutRight 0.7s forwards;
  }
  
  .testimonial-slide.slide-out-left {
    animation: slideOutLeft 0.7s forwards;
  }
  
  
  
  
  
  .card-info {
    background-color: #1D1D1D;
    border-radius: 10px 10px 10px 10px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: var(--transition-slow);
    transform: translateZ(0) rotateY(0);
  }
  
  .card-info .image-container {
    width: 100%;
    height: calc(20rem - 8vh);
    border-radius: 0.75rem;
    overflow: hidden;
  }
  
  .card-info .testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  
  .card-info .card-content {
    margin-top: 2.5rem;
    font-family: var(--primary-font);
  }
  
  .card-info .name-label {
    color: var(--main-color);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
  }
  
  .card-info .name {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  
  .card-info .role {
    font-family: var(--description-font);
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 1 ! important;
    margin-bottom: 12px;
    font-weight: 400;
  }
  
  .card-info .project-title {
    font-family: var(--helvetica-text);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }
  
  .card-info .project-date {
    font-family: var(--description-font);
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 1 ! important;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
  
  
  .testi-main .card-description {
    background-color: #1D1D1D;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
    transition: var(--transition-slow);
    transform: translateZ(0) rotateY(0);
    font-family: var(--primary-font);
    letter-spacing: 0.2px;
    line-height: 1.8;
    color: #e2e8f0;
    
  }

.card-description:hover {
    background-image: linear-gradient(rgb(18, 18, 18), rgb(26, 26, 26));
}
  
  .card-description .project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 0.2px;
    margin-bottom: 4px;
    text-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.2);
  }
  
  .card-description .project-date {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.5px;
    opacity: 0.8 !important;
  }
  
  .card-description .testimonial-content {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    line-height: 1.75;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  [data-theme="light"] .card-description {
    color: #334155;
  }
  
  [data-theme="light"] .card-description .testimonial-content {
    color: #64748b;
    font-size: 16px;
  }
  
  [data-theme="light"] .card-description::after {
    opacity: 0.15;
    filter: invert(1) sepia(0) saturate(0) brightness(0.7);
  }
  
  .card-description p {
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .card-description::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: 0;
    top: -130px;
    background: transparent;
    background-image: url(attached_assets/quote.png);
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  
  
  .image-container {
    position: relative;
  }
  
  .testimonial-image {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
    display: block;
  }
  
  .testimonial-image:hover {
    transform: scale(1.1);
  }
  
  .rating {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    box-shadow: 10px 10px 19px #121212, 
                -10px -10px 19px #2a2a2a;
    width: 13.4vh !important;
    height:4.5vh !important;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 640px){
    .rating{
      width: 12.4vh !important;
    }
  }
  /* @media screen and (max-width: 1280px){
    .rating-star{
      width: 15.5vh !important;
    }
   } */
  .rating::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
      transparent, 
      rgba(255, 255, 255, 0.03), 
      transparent);
    pointer-events: none;
  }
  
  .rating svg {
    color: #ffd700;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
  }
  
  .rating svg:hover {
    transform: scale(1.2) rotate(5deg);
    color: #ffed4a;
  }
  
  .separator::after {
      content: "";
      position: absolute;
      bottom: 0px;
      left: 0px;
      height: 1px;
      width: 100%;
      background: linear-gradient(to right, transparent, rgba(19, 187, 255, 0.3), transparent);
  }
  
  .nav-buttons {
    position: absolute;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
    z-index: 20;
  }
  
  .nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    border: 1px solid rgba(var(--main-color-rgb), 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(8px);
  }
  
  .nav-btn:hover {
    background-color: var(--main-color);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(var(--main-color-rgb), 0.25);
  }
  
  .nav-btn:active {
    transform: translateY(0);
  }
  
  .pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--main-color);
    border-radius: 50%;
    transition: var(--transition-normal);
    cursor: pointer;
  }
  
  .pagination-dot:hover {
    background-color: rgba(var(--main-color-rgb), 0.3);
  }
  
  .pagination-dot.active {
    width: 2rem;
    height: 0.75rem;
    background-color: var(--main-color);
    border-radius: 1rem;
    box-shadow: 0 0 15px var(--main-color);
  }
  
  .pagination-dot.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background-color: var(--main-color);
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  }
  
  /* Animations */
  @keyframes slideInRight {
    from {
      transform: translateX(100%) scale(0.95);
      opacity: 0;
    }
    to {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%) scale(0.95);
      opacity: 0;
    }
    to {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
  }
  
  @keyframes slideOutRight {
    from {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
    to {
      transform: translateX(100%) scale(0.95);
      opacity: 0;
    }
  }
  
  @keyframes slideOutLeft {
    from {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
    to {
      transform: translateX(-100%) scale(0.95);
      opacity: 0;
    }
  }
  
  @keyframes ping {
    0% {
      transform: scale(1);
      opacity: 0.75;
    }
    75%,
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  /* Light Theme Styles for Testimonial Section */
  [data-theme="light"] .card-info {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  [data-theme="light"] .card-description {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08) !important;
    border: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  [data-theme="light"] .card-info .name-label {
    color: var(--main-color);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(var(--main-color-rgb), 0.1);
  }
  
  [data-theme="light"] .card-info .name {
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  }
  
  [data-theme="light"] .card-info .role {
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  
  [data-theme="light"] .card-info .project-title {
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(var(--main-color-rgb), 0.1);
  }
  
  [data-theme="light"] .card-info .project-date {
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  
  [data-theme="light"] .card-description .testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    font-weight: 300;
    color: #475569;
    text-align: left;
    text-shadow: 0 1px 1px rgba(15, 23, 42, 0.03);
  }
  
  [data-theme="light"] #testimonial-section {
    background: #EEF2F7;
  }
  
  [data-theme="light"] #testimonial-carousel {
    padding: 0;
    background: transparent;
  }
  
  [data-theme="light"] .rating {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08),
                0 2px 4px rgba(59, 130, 246, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.9),
                inset 0 -1px 2px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(6px);
  }
  
  [data-theme="light"] .rating:hover {
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12),
                0 3px 6px rgba(59, 130, 246, 0.15),
                inset 0 2px 4px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    transition: all 0.3s ease;
  }
  
  [data-theme="light"] .nav-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(var(--main-color-rgb), 0.2);
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
  }
  
  [data-theme="light"] .nav-btn:hover {
    background-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(var(--main-color-rgb), 0.25);
  }
  
  [data-theme="light"] .pagination-dot {
    background-color: rgba(226, 232, 240, 0.8);
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
  }
  
  [data-theme="light"] .pagination-dot:hover {
    background-color: rgba(var(--main-color-rgb), 0.2);
  }
  
  [data-theme="light"] .pagination-dot.active {
    background-color: var(--main-color);
  }
  
  [data-theme="light"] .testimonial-content {
    color: #475569;
  }
  
  [data-theme="light"] .separator::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(19, 187, 255, 0.3), transparent);
   
}
  
  /* Media Queries */
  @media (min-width: 640px) {
    .sm-flex-row {
      flex-direction: row;
    }
  
    .sm-items-center {
      align-items: center;
    }
  
    .sm-mt-0 {
      margin-top: 0;
    }
  }
  
  @media (min-width: 768px) {
    .md-flex-row {
      flex-direction: row;
    }
  
    .md-mt-28 {
      margin-top: 7rem;
    }
  
    .md-h-500 {
      height: 500px;
    }
  
    /* .card-info {
      max-width: 395px;
      min-width: 395px;
    } */
  }
  
  
  @media (max-width: 639px) {
    .rating {
      margin-top: 1rem;
    }
  }
  /* mobile-479 */
  @media screen and (max-width: 576px){
  
      .card-info .name-label{
        font-size: 19px !important;
      }
      .card-info .role{
        letter-spacing: 0.07em !important;
      }
      .card-description .project-title{
        font-size: 24px !important;
      }
      .card-description .project-date{
        font-size: 14px !important;
      }
     .rating{
        width: 100%;
       }
     .rating-star{
        width: 17%;
       }
       /* #testimonial-section{
        max-height: 255vh !important;
      }
      #testimonial-carousel {
        height:98vh ; 
        padding: 0;
      } */
  }
  
  
  /* Responsive styles for testimonial section */
  @media (max-width: 768px) {
    .nav-buttons {
      display: none;
    }
    
    .card-description::after {
      display: none;
    }
    #testimonial-section{
     padding: 0 !important;
    }
    #testimonial-carousel {
      height:98vh ; 
      padding: 0 !important;
    }
    .testi-main {
      flex-direction: column;
      width: 100%;
    }
  
  
    .card-info .image-container {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  
    .card-info .image-container img {
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
    
    .card-description {
      padding: 1.2vh 6vw !important;
      margin-top: 2vh;
      background: rgba(255, 255, 255, 0.02);
    }
  
    .card-description .testimonial-content {
      font-size: 16px;
    line-height: 1.6;
      letter-spacing: 0.2px;
      font-weight: 300;
      color: #94a3b8;
      text-align: left;
    }
  
    .card-info .name-label {
      font-size: 22px;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }
  
    .card-info .name {
      font-size: 19px;
      margin: 4px 0;
      letter-spacing: -0.4px;
      font-weight: 500;
    }
  
    .card-info .role {
      font-size: 15px;
      opacity: 1 ! important;
      margin-bottom: 8px;
      letter-spacing: 0.4px;

    }
  
    .card-description .project-title {
      font-size: 18px ;
      margin-bottom: 2px;
      font-weight: 400;
    }
  
    card-description project-date {
      font-size: 15px;
      opacity: 0.6;
    }
    

   
    #testimonial-carousel {
      height:153vh !important; 
      padding: 0;
  } 
    .testimonial-slide {
      height: 100% !important;
      padding: 0;
    }
  }
  /* testimonial-tablet */
  @media (min-width: 768px) and (max-width: 991px){
    
  .testimonial-slide {
    height: 65vh !important;
    }
    #testimonial-carousel {
      height:79vh !important; 
      padding: 0;
    }
    .rating{
      width: 16.5% !important;
    }
  
    .testi-main .card-description::after {
      display: block;
      left: 41vh !important;
      top: -48vh !important;
    }
    .nav-buttons{
      display: block;
      right: 4vh;
      display: flex;
    }
    .card-description .project-title{
        font-size: 27px;
    }
    .card-description .project-date{
        font-size: 16px;
    }
    .card-description .rating{
        top:-1.5vh;
    }
  
  }
  
@media (min-width: 992px){
    .testi-main{

  }
  .testi-main .card-info{
    width: 30% !important;
  }
   .testi-main .card-description{
    width: 70% !important;
  }
   .card-info .card-content .name-label{
        letter-spacing: .02rem;
        font-weight: 600;
      }
   .card-info .card-content .name{
        letter-spacing: .02rem;
        font-weight: 400;
      }
      .card-info .card-content .role{
        font-size: 1rem;
font-weight: 300;
      }
}
  /* testimonial-section-end is end here  */
/* tablet testimonial query */
  @media (min-width: 768px) and (max-width: 991px) {
    #testimonial-section{
      height: 103vh;
    }
    .testi-main{
      display: flex;
      flex-direction: column;
      width: 90%;
      margin: 0 auto;
      margin-top: 5vh;
    }
    .card-description::after{
      display: none !important;
    }
    .card-info{
      width: 100% !important;
      display: flex;
      height: 20vh;
      padding: 32px;
    }

    .card-thumbnail{
      width: 25% !important;
      height: 100%;
    }
    .card-info .card-content{
      width: 75%;
      padding-left: 3vw;
      height: 100%;
      margin-top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
      .card-info .card-content .name{
        letter-spacing: .05rem;
        font-weight: 500;
      }
      .card-info .card-content .role{
        font-size: 1.2rem;
font-weight: 300;
      }
    .nav-buttons{
      display: none;
    }
   
    .card-description{
      width: 100% !important;
      margin-top: 0 !important;
    }
    .pagination-dot{
       margin-top: -15vh;
       }
  }

/* mobile testimonial query */
@media (max-width: 767px) {
    #testimonial-section{
      height: 183vh !important;
      padding-top: 9vh !important;
      padding-bottom: 6vh !important;
    }
   
    .testimonial-slide{
      height :125vh !important;
    }
    .testi-main{
    }
    .testi-main .card-description{
      height: 100% !important;
      z-index: 3;
    }
    .testi-main .card-description .project-title{
      font-size: 1.2rem !important;
    }
    .testi-main .card-description .separator{
      margin-bottom: .7rem !important;
      margin-top: -1.5rem !important;
    }
    .pagination-dot{
       margin-top: -26vh;
    }
}
  
  /* My Resume Section is start from here RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR */
  
  
  
  .resume-section{
    padding:4rem 0 0 0;
  }
  
  
  .resume-container {
    max-width: 70%;
    margin: 0 auto;
    padding: 30px 20px;
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
    .resume-container {
      max-width: 90%;
      padding: 30px 0px !important;
    }
  }
  /* mobile small for Resume section */
  @media (max-width: 576px) {
    .resume-container {
      max-width: 100%;
      padding: 0 7px;
    }
  
    .nav-menu {
      display: flex;
      flex-direction: column;
      background-color:transparent;
      gap: 10px;
      box-shadow: 10px 10px 19px #0a0a0a, -10px 0px 19px #1e1e1e !important;
    }
  
    .tab-button {
      width :100%!important;
      margin-bottom: 0;
      text-align: center;
      padding: 22px 10px !important;
      border-radius: 10px;
      background-color:var(--second-bg-color);
    }
  
    .tab-button.active {
      color: #3b82f6;
      box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e !important;
      background: #121212 !important;
    }
  }
  /* resume tabs container */

  /* Main content adjustment */
  
  
  /* Resume Section */
  
  
  
  .years-experience {
    color: #3b82f6;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 48px;
    margin-bottom: 30px;
  }
  
  /* Tabs */
  .tabs-container {
    max-width: 1024px;
    margin: 0 auto;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    background-color: var(--second-bg-color);
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 0;
    box-shadow: 12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e !important;
  }
 .tab-button {
    color: #c4cfde;
    font-family: var(--font-primary);
    padding: 30px 10px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    border: 0 none;
    transition: all 0.5s;
    background: transparent;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    cursor: pointer;
  }
  
.tab-button:hover {
    color: #3b82f6;
    box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e;
  }
  
 .tab-button.active {
    color: #3b82f6;
    font-weight: 500;
    box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e;
  }
  
  .content-panel {
    display: none;
  }
  
  .content-panel.active {
    display: block;
  }
  
  /* Timeline */
  .education-grid {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  @media (max-width:576px){
  .education-grid{
    padding: 0px 10px !important;
  }
  
  }
  .education-column {
    flex: 1 1 100%;
    position: relative;
  }
  
  .education-column::before {
    content: "";
    position: absolute;
    left: -0px !important;
    top: 112px;
    bottom: 0;
    width: 5px;
    height: 80%;
    background-color:  #1a1a1a;
    z-index: 1;
  }
  
  .year {
    color: #3b82f6;
    font-size: 14px;
  }
  
  .section-heading {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
  }
  
  /* Education & Experience Cards */
  .education-card, .experience-card {
    background-color: var(--second-bg-color);
    border-radius: 10px;
    padding: 30px !important;
    margin-bottom: 30px;
    position: relative;
    border-left: 2px solid #212428;
    border-top: 2px solid #212428;
    margin-left: 38px !important;
  }
  
  /* .education-card > hr{
    height:.0.0.1rem;
    color: black;
    margin-bottom: 20px;
    opacity: 0.06;
  }
   */
   .separator-edu-card::after{
    content: "";
    position: absolute;
    bottom: 53%;
    left: 0px;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(19, 187, 255, 0.3), transparent);
    opacity: 0.5 !important;
   }
  .education-card:hover, .experience-card:hover{
    background-image: linear-gradient(to bottom, #121212, #1a1a1a);
  }
  
  .education-card::before, .experience-card::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color:#1a1a1a;
    border: 4px solid #121212;
    left: -47px !important;
    top: 30px;
    z-index: 2;
  }
  
  /* Horizontal connector from dot to card */
  .education-card::after, .experience-card::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 30px;
    background-color: #1a1a1a;
    left: -30px;
    top: 36px;
  }
  
  .education-card:hover::before, 
  .experience-card:hover::before {
    background-color: #3b82f6;
    border: 5px solid #121212 !important;
  }
  
  .education-card:first-of-type::before, .experience-card:first-of-type::before {
    background-color: #3b82f6;
    border: 2px solid #212428;
  }
  
  .edu-details, .exp-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .edu-details h4, .exp-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
  }
 
  .institution {
    color: #a0a8b3;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .grade-badge {
    color: #3b82f6;
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #1a1a1a;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 3.2px 5px 7px #0a0a0a, -2px -3px 9px #1e1e1e;
  
  }
  
  .content-text {
    color: #a0a8b3;
    line-height: 1.7;
    font-size: 15px;
  }
  
  /* Timeline layout with two columns for larger screens */
  @media (min-width: 768px) {
    .education-grid {
      display: flex;
      gap: 30px;
    }
  
    .education-column {
      flex: 0 0 calc(50% - 15px);
    }
  
    .education-column::before {
      left: 30px;
    }
  
    .education-card, .experience-card {
      margin-left: 60px;
    }
  
    .education-card::before, .experience-card::before {
      left: -37px;
    }
  }
  
  
  
  /* Skills bar */
  
  /* Container */
  .skills-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  }
  
  /* Section */
  .skill-category {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
  }
  
  /* Features text */
  .category-label {
  font-size: 14px;
  color: #3b82f6;
  margin-bottom: 5px;
  text-transform: uppercase;
  }
  
  /* Skill heading */
  .skill-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
  }
  
  /* Skill item */
  .skill-item {
  margin-bottom: 20px;
  }
  
  /* Skill text */
  .skill-text {
  font-size: 14px;
  margin-bottom: 8px;
  color: #a0a8b3;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  }
  
  /* Skill bar */
  .skill-bar {
  height: 5px;
  background-color: var(--second-bg-color);
  margin-bottom: 15px;
  position: relative;
  border-radius: 3px;
  }
  
  /* Skill progress */
  .skill-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #3b82f6, #3b82f6);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 1s ease-out;
  border-radius: 3px;
  box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.4588235294), inset -8px -8px 16px rgba(56, 62, 68, 0.1647058824);
  }
  
  /* Media query for larger screens */
  @media (min-width: 768px) {
  .resume-container {
      display: flex;
      gap: 40px;
  }
  
  .skill-category {
      flex: 1;
  }
  }
 /* i want to add light theme feature here for resume section all element so help me codium */




/* mobile small for Resume section */

 [data-theme="light"].nav-menu {
  display: flex;
  flex-direction: column;
  background-color:transparent;
  gap: 10px;
  box-shadow 10px 10px 19px #0a0a0a, -10px 0px 19px #1e1e1e !important;
}

[data-theme="light"].tab-button {
  width :100%!important;
  margin-bottom: 0;
  text-align: center;
  padding: 22px 10px !important;
  border-radius: 10px;
  background-colorvar(--second-bg-color);
}

.tab-button.active {
  color: #3b82f6;
  box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e !important;
  background: #121212 !important;
}


.years-experience {
color: #3b82f6;
font-size: 14px;
display: block;
margin-bottom: 10px;
}

h1 {
font-size: 48px;
margin-bottom: 30px;
}

/* Tabs */
.tabs-container {
width: 100%;
margin: 0 auto;
}

.nav-menu {
display: flex;
justify-content: space-between;
background-color: var(--second-bg-color);
border-radius: 10px;
margin-bottom: 40px;
padding: 0;
box-shadow: 12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e !important;
}
.tab-button {
color: #c4cfde;
font-family: var(--font-primary);
padding: 30px 10px;
text-transform: capitalize;
font-size: 18px;
font-weight: 500;
outline: none;
border: 0 none;
transition: all 0.5s;
background: transparent;
border-radius: 10px;
width: 50%;
text-align: center;
cursor: pointer;
}

.tab-button:hover {
color: #3b82f6;
box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e;
}

.tab-button.active {
color: #3b82f6;
font-weight: 500;
box-shadow :12.2px 10px 7px #0a0a0a, -2px -3px 9px #1e1e1e;
}

.content-panel {
display: none;
}

.content-panel.active {
display: block;
}

/* Timeline */

.education-grid {
padding: 20px 0;
display: flex;
flex-wrap: wrap;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
@media (max-width:576px){
.education-grid{
padding: 0px 10px !important;
}

}
.education-column {
flex: 1 1 100%;
position: relative;
}

.education-column::before {
content: "";
position: absolute;
left: -0px !important;
top: 112px;
bottom: 0;
width: 5px;
height: 80%;
background-color:  #1a1a1a;
z-index: 1;
}

.year {
color: #3b82f6;
font-size: 14px;
margin-bottom: 15px;
}

.section-heading {
font-size: 28px;
margin-bottom: 30px;
color: #fff;
position: relative;
}

/* Education & Experience Cards */
.education-card, .experience-card {
background-color: var(--second-bg-color);
border-radius: 10px;
padding: 30px !important;
margin-bottom: 30px;
position: relative;
border-left: 2px solid #212428;
border-top: 2px solid #212428;
margin-left: 38px !important;
}

/* .education-card > hr{
height:.0.0.1rem;
color: black;
margin-bottom: 20px;
opacity: 0.06;
}
*/
.separator-edu-card::after{
content: "";
position: absolute;
bottom: 53%;
left: 0px;
height: 1px;
width: 100%;
background: linear-gradient(to right, transparent, rgba(19, 187, 255, 0.3), transparent);
opacity: 0.5 !important;
}
.education-card:hover, .experience-card:hover{
background-image: linear-gradient(to bottom, #121212, #1a1a1a);
}

.education-card::before, .experience-card::before {
content: "";
position: absolute;
width: 9px;
height: 9px;
border-radius: 50%;
background-color:#1a1a1a;
border: 4px solid #121212;
left: -47px !important;
top: 30px;
z-index: 2;
}

/* Horizontal connector from dot to card */
.education-card::after, .experience-card::after {
content: "";
position: absolute;
height: 5px;
width: 30px;
background-color: #1a1a1a;
left: -30px;
top: 36px;
}

.education-card:hover::before, 
.experience-card:hover::before {
background-color: #3b82f6;
border: 5px solid #121212 !important;
}

.education-card:first-of-type::before, .experience-card:first-of-type::before {
background-color: #3b82f6;
border: 2px solid #212428;
}

.edu-details, .exp-details {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 20px;
}

.edu-details h4, .exp-details h4 {
font-size: 20px;
margin-bottom: 8px;
color: #fff;
}

.institution {
color: #a0a8b3;
font-size: 14px;
margin-bottom: 5px;
}

.grade-badge {
color: #3b82f6;
position: absolute;
top: 30px;
right: 30px;
background-color: #1a1a1a;
padding: 5px 10px;
border-radius: 6px;
font-size: 14px;
box-shadow: 3.2px 5px 7px #0a0a0a, -2px -3px 9px #1e1e1e;

}

.content-text {
color: #a0a8b3;
line-height: 1.7;
font-size: 15px;
}

/* Timeline layout with two columns for larger screens */
@media (min-width: 768px) {
.education-grid {
  display: flex;
  gap: 30px;
}

.education-column {
  flex: 0 0 calc(50% - 15px);
}

.education-column::before {
  left: 30px;
}

.education-card, .experience-card {
  margin-left: 60px;
}

.education-card::before, .experience-card::before {
  left: -37px;
}
}



/* Skills bar */

/* Container */
.skills-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
gap: 40px;
justify-content: space-between;
}

/* Section */
.skill-category {
flex: 1;
min-width: 300px;
margin-bottom: 30px;
}

/* Features text */
.category-label {
font-size: 14px;
color: #3b82f6;
margin-bottom: 5px;
text-transform: uppercase;
}

/* Skill heading */
.skill-heading {
font-size: 32px;
font-weight: bold;
margin-bottom: 25px;
color: #ffffff;
}

/* Skill item */
.skill-item {
margin-bottom: 20px;
}

/* Skill text */
.skill-text {
font-size: 14px;
margin-bottom: 8px;
color: #a0a8b3;
text-transform: uppercase;
display: flex;
justify-content: space-between;
}

/* Skill bar */
.skill-bar {
height: 5px;
background-color: var(--second-bg-color);
margin-bottom: 15px;
position: relative;
border-radius: 3px;
}

/* Skill progress */
.skill-progress {
height: 100%;
width: 0;
background: var(--main-color);
position: absolute;
left: 0;
top: 0;
transition: width 1s ease-out;
border-radius: 3px;
box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.4588235294), inset -8px -8px 16px rgba(56, 62, 68, 0.1647058824);
}

/* Media query for larger screens */
@media (min-width: 768px) {
.resume-container {
  display: flex;
  gap: 40px;
}

.skill-category {
  flex: 1;
}
}





  /* Resume ends RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRrrr */
  
  
  
  
  /* Blog stat here
  .blog-card-read-time .blog-card-read-time .blog-card-title .tag-blue tag-purple
  */
  
  :root {
  --lighten-color:#C5CFDF;
  --primary: #e6007e;
  --primary-hover: #c4006b;
  --background: #ffffff;
  --foreground: #0f1419;
  --card: #f6f8fa;
  --card-foreground: #0f1419;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --muted: #f6f8fa;
  --muted-foreground: #6b7280;
  --blog-tag-red: #dc2626;
  --blog-tag-blue: #2563eb;
  --blog-tag-purple: #7e22ce;
  --shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition: 200ms ease;
  --blog-dialog-body-desc:#878e99;
  }
  
  
  /* Blog Section */
  .blog-section {
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0rem;
  background-color: #1A1A1A;
  }
  
  .text-center {
  text-align: center;
  }
  
  .mb-4 {
  margin-bottom: 1rem;
  }
  
  .mb-16 {
  margin-bottom: 4rem;
  }
  
  /* Blog Grid */
  .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  }
  
  @media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 3.75rem;
  }
  }
  
  @media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  }
  
  /* Blog Card */
  .blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #1A1A1A;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 10px 10px 19px #141618,  
  -10px -10px 19px #222629;
  
  opacity: 0;
  animation-duration: 500ms;
  }
  
  .blog-card:hover {
  transform: translateY(-5px);
  }
  
  .blog-card-image {
  width: 100%;
  height: 16rem;
  overflow: hidden;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  position: relative;
  }
  
  .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
  }
  
  .blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  }
  
  .blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  }
  
  .blog-card-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 9999px;
  color: var(--main-color);
  }
  
  .blog-card-read-time {
  display: flex;
  align-items: center;
  color: var(--lighten-color);
  font-size: 13px;
  }
  
  .blog-card-read-time svg {
  margin-right: 0.25rem;
  width: 1rem;
  height: 1rem;
  color: var(--lighten-color);
  }
  
  .blog-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--lighten-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  }
  .blog-card-title:hover {
  color: var(--main-color);
  }
  
  /* Dialog Styles */
  .dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .dialog-overlay.visible {
  opacity: 1;
  visibility: visible;
  }
  
  .dialog-content {
  position: relative;
  max-width: 64rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--background);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .dialog-close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 60;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem;
  color: var(--muted-foreground);
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  }
  
  .dialog-close-btn:hover {
  color: var(--foreground);
  }
  
  .dialog-image-container {
  position: relative;
  width: 100%;
  height 400px;
  overflow: hidden;
  }
  
  .dialog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  .dialog-content-container {
  padding: 1.5rem 2rem;
  padding-bottom: 3rem;
  }
  
  .dialog-header {
    margin-bottom: 1.5rem;
  }
  
  .dialog-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  }
  
  .dialog-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  }
  
  .dialog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  }
  
  .dialog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  }
  
  .dialog-read-time {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  }
  
  .dialog-read-time svg {
  margin-right: 0.25rem;
  }
  
  .dialog-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  }
  
  .dialog-comment-section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  }
  
  .comment-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  }
  
  .comment-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  }
  
  @media (min-width: 768px) {
  .comment-form-fields {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dialog-title {
    font-size: 2.25rem;
  }
  }
  
  .comment-form-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  }
  
  .form-group {
  width: 100%;
  }
  
  .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  }
  
  .form-input,
  .form-textarea {
  width: 100%;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  }
  
  .form-textarea {
  resize: vertical;
  height: 100%;
  min-height: 150px;
  }
  
  .submit-btn {
  margin-top: 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  }
  
  .submit-btn:hover {
  background-color: var(--primary-hover);
  }
  
  .animate-fade-up {
  animation-name: fadeUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  }
  
  @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
  /* Blog sec end here */
  /* tablet blog query */
  @media (max-width: 768px) {
    .blog-card-title {
      font-size: 1.2rem;
      font-weight: 400;
    }
    .blog-card-read-time svg{
      transition: 0.3s ease-in-out;
    }
    .blog-card:hover .blog-card-read-time svg{
      color: #218ED9;
    }
    .dialog-title{
      font-size: 1.3rem !important;
      font-weight: 500 ! important;
    }
    .comment-form .submit-btn{
      font-size: 0.8rem !important;
      font-weight: 400 !important;
      padding: 0.6rem 1rem  0.5rem 1rem!important;
    }
  }
  /* Pricing Sec is Start From Here PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP*/
  /* Tabs styles */
  
  .pricing-section{
    padding:4rem 0;
  }
  .tabs {
      display: flex;
      justify-content: space-between;
      background-color: var(--second-bg-color);
      border-radius: 10px;
      margin-bottom: 0;
      padding: 0;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 10px 10px 19px #0a0a0a, -10px -px 5px #1e1e1e;
  }
  
  .tab-btn {
      color: #c4cfde;
      padding: 30px 10px;
      text-transform: capitalize;
      font-size: 18px;
      font-weight: 500;
      outline: none;
      border: 0 none;
      transition: all 0.5s;
      background: transparent;
      border-radius: 10px;
      width: 33.33%;
      text-align: center;
      cursor: pointer;
  }
  
  .tab-btn:hover {
      color: #4dabf7;
  }
  
  .tab-btn.active {
      background: #121212;
      color: #4dabf7;
      font-weight: 500;
      box-shadow: 10px 10px 19px #0a0a0a, -0px -0px 0px #1e1e1e;
  }
  
  .tab-content {
      display: none;
  }
  
  .tab-content.active {
      display: block;
  }
  
  .pricing-content .prcing-two-headers,
  .pricing-content .pricing-left-and-right,
  .pricing-content .pricing-bottom {
    width: 100%;
    grid-column: 1 / -1;
  }
  /* mobile small for pricing section*/
  @media (max-width: 576px) {
    .pricing-content {
      gap: 1rem;
    }
  
    .pricing-left, .pricing-right {
      width: 50%;
    }
  
    .pricing-card {
      padding: 0;
    }
  
    .pricing-top-header {
      padding: 15px;
    }
  
    .pricing-bottom-header {
      padding: 0 15px 15px;
    }
  
    .title-text {
      font-size: 1.5rem !important;
      line-height: 1.3;
      margin-bottom: 4px;
      font-weight: 600;
      letter-spacing: -0.3px;
    }
  
    .subtitle {
      font-size: 0.875rem;
      color: var(--main-color);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
  
    .description-text {
      font-size:15px !important;
      line-height: 1.5;
      opacity: 0.85;
      margin-top: 8px;
    }
  
    .feature-list-item {
      font-size: 0.85rem;
    }
  
    .price-section {
      margin: 5px 0;
    }
  
    .price-section span {
      font-size: 1.5rem !important;
      padding: 4px 10px;
    }
  
    
  
  }
  
  @media (max-width: 576px) {
      .tabs {
          flex-direction: row;
          background-color: var(--second-bg-color);
          gap: 0;
      }
  
      .tab-btn, .tab-wrapper {
          width: 33.33%;
          padding: 3vh 0;
          font-size: 18px;
      }
  
      .tab-wrapper .tab-btn {
          width: 100%;
      }
  }
  
  /* Base styles */
  
  
  
  .pricing-card {
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 1.5vh;
    padding: 2rem 3rem 0rem;
    display: flex;
    flex-direction: column;
    background-color: var(--second-bg-color);
    border-radius: 0 0 12px 12px;
    box-shadow: 10px 10px 19px #0a0a0a, -1px 0px 1px #1e1e1e;
  }
  
  .pricing-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  
  .pricing-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  
  
  /* Left side content */
  .pricing-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .pricing-header {
    margin-bottom: 0.5rem;
  }
  
  .title-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    animation: fade-in 0.5s ease forwards;
    opacity: 0;
  }
  
  @media (min-width: 768px) {
    .title-text {
      font-size: 2.25rem;
    }
  }
  
  .subtitle {
    font-size: 1.25rem;
    color: #8A94A6;
  }
  
  .description-text {
    font-size: 1.125rem;
    color: #8A94A6;
    animation: fade-in 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
  }
  
  /* Right side content */
  .pricing-right {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .price-section {
    display: flex;
    justify-content: flex-end;
  }
  
  .price-section span {
    color: #4dabf7;
    font-size: 30px;
    font-weight: 600;
    box-shadow: 10px 10px 19px #0a0a0a,  
            -10px -10px 19px #1e1e1e;
    display: inline-block;
    padding: 9px 25px;
    border-radius: 6px;
  }
  
  /* Features */
  .feature-list {
    margin-top: auto;
    margin-bottom: 2rem;
  }
  
  .feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slide-in 0.4s ease forwards;
  }
  
  .feature-list-item > span {
    font-size: 18px;
    color: #e9ecef;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
  }
  
  @media (max-width: 576px) {
    .feature-list-item > span {
      font-size: 14px;
    }
  }
  
  .feature-list-item:hover > span {
    color: #4dabf7;
  }
  
  .feature-list-item.left {
    animation-delay: calc(var(--index) * 100ms);
  }
  
  .feature-list-item.right {
    animation-delay: calc((var(--index) + 4) * 100ms);
  }
  
  .feature-check {
    margin-right: 0.5rem;
    min-width: 20px;
    color: #4dabf7;
  }
  
  /* Order button */
  .order-button-container {
    display: flex;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    padding: 10px 0;
  }
  
  .rn-btn {
    border-radius: 6px;
    background: #121212;
    box-shadow: 10px 10px 19px #0a0a0a, -10px -10px 19px #1e1e1e;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    border: 0 none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 35px;
    list-style: none;
    text-decoration: none;
    color: #4dabf7;
    width: 100%;
    text-align: center;
    line-height: 1;
  }
  .contact-section{
    background-color: #121212 !important;
  }
  .contact-section .rn-btn {
    background: #212121;
    box-shadow: 1px 5px 16px #0a0a0a !important;
  }

  .copyright-section{
    background-color: #1A1A1A !important;
  }
  [data-theme="light"] .contact-section {
    background: #FFFFFF !important;
  }
    [data-theme="light"] .copyright-section {
    background: #EEF2F7 !important;
  }

  .rn-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(to bottom right, #121212, #1a1a1a);
  }
  
  .rn-btn:hover .arrow {
    transform: translateX(8px);
  }
  
  .arrow {
    transition: transform 0.3s;
    color: #4dabf7;
    margin-bottom: -.6vh !important;
  }
  
  /* Animations */
  @keyframes slide-in {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .timeline {
      justify-content: center;
      display: flex;
      margin-top: 2vh;
  }
  
  .timeline-item {
      margin-right: 15px;
      display: flex;
  }
  
  .timeline-item svg {
      width: 14px;
      margin-right: 7px;
      color: #9ca5b1;
      margin-top: 2px;
  }
  
  .timeline-item figcaption {
      font-size: 12px;
      font-weight: 500;
      color: #9ca5b1;
      margin-top: 5px;
      letter-spacing: 1px;
      font-family: var(--font-secondary);
  }
  
  /* Added styles from changes */
  .pricing-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .pricing-bottom-header {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  @media (max-width: 576px) {
    .pricing-top-header,
    .pricing-bottom-header {
      padding-left: 3px;
    }
  }
  
  .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-right {
    flex-shrink: 0;
  }
  
  .pricing-left-and-right {
    display: flex;
    width: 100%;
  }
  
  .pricing-left, .pricing-right {
    width: 50%;
    padding: 0 15px;
  }
  
  /*  Pricing section is End Here ppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp*/
  
  [data-theme="light"] .portfolio-section {
    background-color: #f8f9fa;
  }
  
  [data-theme="light"] .portfolio-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
      0 4px 6px -1px rgba(0, 0, 0, 0.05),
      0 2px 4px -1px rgba(0, 0, 0, 0.03),
      0 0 0 1px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="light"] .portfolio-card:hover {
    box-shadow: 
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05),
      0 0 0 1px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
  }
  
  [data-theme="light"] .portfolio-card::before {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.05)
    );
  }
  
  [data-theme="light"] .portfolio-card-title {
    color: rgba(0, 0, 0, 0.95);
  }
  
  [data-theme="light"] .portfolio-card-description {
    color: rgba(0, 0, 0, 0.7);
  }
  
  [data-theme="light"] .portfolio-button {
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }
  
  [data-theme="light"] .portfolio-button:hover {
    background-color: var(--main-color);
    color: #ffffff;
  }
  
  [data-theme="light"] .portfolio-button:hover .portfolio-button-text {
    color: #ffffff;
  }
  
  
  
  [data-theme="light"] .portfolio-card-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .portfolio-tab-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
    border-radius: 3px !important;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .portfolio-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  
  .portfolio-tab-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .portfolio-tab-btn:hover {
    color: #ffffff;
  }
  
  .portfolio-tab-btn.active {
    background: var(--main-color);
    color: #ffffff;
  }
  
  [data-theme="light"] .portfolio-tab-btn {
    border-color: var(--main-color);
    color: var(--main-color);
  }
  
  [data-theme="light"] .portfolio-tab-btn:hover {
    color: #ffffff;
  }
  
  [data-theme="light"] .portfolio-tab-btn.active {
    background: var(--main-color);
    color: #ffffff;
  }
  
  @media (max-width: 576px) {
    .portfolio-tabs {
      gap: 0.75rem;
    }
    
    .portfolio-tab-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  }
  
  /* Portfolio Tabs */
  .portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .portfolio-tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--primary-font);
    text-transform: capitalize;
  }
  
  .portfolio-tab-btn:hover {
    color: #fff;
    border-color: var(--main-color);
    transform: translateY(-2px);
  }
  
  .portfolio-tab-btn.active {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.25);
  }
  
  [data-theme="light"] .portfolio-tab-btn {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  [data-theme="light"] .portfolio-tab-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  [data-theme="light"] .portfolio-tab-btn.active {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.25);
  }
  
  @media (max-width: 768px) {
    .portfolio-tabs {
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
  
    .portfolio-tab-btn {
      padding: 0.5rem 1rem;
      font-size: 0.8125rem;
    }
  }
  
  /* Portfolio Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 3.5rem;
  }
  
  @media (min-width: 768px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  



/* Blog card styles */
.blog-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

/* Blog image overlay */
.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}

.read-more {
  color: white;
  font-weight: 600;
  border: 2px solid white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: white;
  color: #333;
}
