/* ============================
   Root Variables
   ============================ */
   :root {
    /* Colors */
    --primary-dark: #121724;
    --neutral-gray: #d3d7de;
    --accent-blue: #1E90FF;
    --highlight-yellow: #EEFF00;
    --light-gray: #F3F4F6;
    --background-primary: var(--primary-dark);
    --background-secondary: #1F2A37;
    --highlight-gradient: linear-gradient(135deg, rgba(255, 255, 0, 1) 0%, rgba(255, 204, 0, 0.8) 40%, rgba(255, 153, 0, 0.6) 70%, rgba(255, 102, 0, 0.2) 100%);
    --button-border: rgba(255, 255, 255, 0.3);
    /* Fonts */
    --font1: 'Poppins';
    --font2: 'Orbitron';
    --font-size-base: 1.6rem;
    --font-size-h1: 5.2rem;
    --font-size-h2: 4.4rem;
    --font-size-h4: 2.5rem;
    --highlight-font-size: 8vw;
    --button-font-size: var(--font-size-base);
    --hero-font-size: 1.8rem;
    /* Transitions */
    --transition: all 400ms ease;
    /* Dimensions */
    --container-max-width: 1600px;
    --section-padding: 10rem;
    --hero-padding: 16rem 0;
    --circle-size: 150px;
    /* Button Styling */
    --button-padding: 20px 25px;
}

/* ============================
   Global Styles and Resets
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font2);
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 30%;
    height: 2px;
    background: var(--highlight-yellow);
    border-radius: 2px;
    transition: var(--transition);
}

.logo:hover::after {
    width: 80%;
}

.big-letter {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--highlight-yellow);
    text-shadow: 0 0 15px rgba(238, 255, 0, 0.4);
    line-height: 1;
}

.name {
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

/* ============================
   Body & Global Text Styling
   ============================ */
body {
    font-family: var(--font1);
    background-color: var(--background-primary);
    color: var(--neutral-gray);
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
}

html, body {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

/* ============================
   Container Styling
   ============================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 14rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font2);
    line-height: 1.2;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h4 { font-size: var(--font-size-h4); }

.highlight {
    color: var(--highlight-yellow);
    font-weight: bold;
}

.highlight-star {
    animation: rotate 15s linear infinite;
    width: 60px;
    height: 60px;
    display: inline-block;
}

/* Button Styling */
.primary-btn, .secondary-btn {
    outline: none;
    padding: var(--button-padding);
    min-width: 250px;
    text-align: center;
    font-size: var(--button-font-size);
    cursor: pointer;
    font-weight: normal;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: var(--font1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}
.primary-btn svg, .secondary-btn svg{
    width: 20px;
    height: 20px;
}

.secondary-btn:hover,
.primary-btn:hover{
    transform: scale(0.95) rotate(-3deg); 
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); 
}
.secondary-btn:hover{
    box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.2); 
}
.primary-btn:hover{
    box-shadow: 0px 8px 15px rgba(229, 255, 0, 0.2); 
}

.primary-btn {
    background-color: var(--highlight-yellow);
    border: 1px solid var(--highlight-yellow);
    color: var(--primary-dark);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--button-border);
    color: var(--neutral-gray);
}

/* ============================
   Sticky  Arrow
   ============================ */
   .upper-arow-sticky{
    position: fixed;
    right: 100px;
    background: var(--highlight-yellow);
    box-shadow: 0 5px 30px var(--highlight-yellow);
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 80;
    cursor: pointer;
    color: #2d2e32;
    transition: all .5s ease;
    opacity: 0;
    bottom: -50px;
}
.upper-arow-sticky:hover{
background: #2d2e32;
color: #e9e7e7;
}
.upper-arow-sticky.run{
    bottom: 50px;
    opacity: 1;
}
/* ============================
   Header Section Styling
   ============================ */
header {
    background-color: transparent;
    padding: 3rem 0;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    min-height: 80px;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(36, 2, 54, 0.608);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.light-img {
    position: absolute;
    right: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    width: 100px;
    height: auto;
}

nav .header-menu {
    display: flex;
    gap: 2rem;
}

nav .header-menu li{
    position: relative;
    color: var(--light-gray);
    text-transform: uppercase;
    font-family: var(--font1);
   
}
nav .header-menu li::after{
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0%;
    height: 0px;
    left: 0px;
    transition: var(--transition);
    background-color: var(--accent-blue);
}
nav .header-menu li:hover::after {
    height: 2px;
    width: 100%;
}
nav .header-menu li:hover{
    color: var(--accent-blue);
}
nav .header-menu li a {
    color: inherit;
    font-family: inherit;
}

.menu_icons svg {
    width: 30px;
    height: 30px;
}

.hidden {
    display: none;
}

#menuIcon,
#closeIcon {
    display: none;
    cursor: pointer;
}

/* ============================
   Hero Section Styling
   ============================ */
.hero-section {
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: var(--hero-padding);
    z-index: 10;
}

.light {
    position: absolute;
    top: 60px;
    right: 0;
    width: 600px;
    height: auto;
    z-index: 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
 .bottom-scroll-arrow{
    border: 2px solid var(--highlight-yellow);
    border-radius: 50%;
    display: inline-block;
    width: 60px;
    bottom: 0px;
    left: 10rem;
    position: absolute;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-yellow);
    animation: topBottomAnimate 1s alternate infinite;
    box-shadow:  0 1px 20px var(--highlight-yellow);
}
a{
    color: inherit;
}
.hero-left {
    width: 50%;
    position: relative;
    z-index: 10;
}

.hero-left h1 {
    color: var(--light-gray);
}

.hero-left p {
    font-family: var(--font1);
    color: var(--neutral-gray);
    font-size: var(--hero-font-size);
    max-width: 600px;
    margin: 1.5rem 0;
}

.hero-left .hero-btns {
    margin: 5.5rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    justify-content: center;
    position: relative;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: none;  /* remove herobackground.png */
    border-radius: 50%;
}

.hero-right .hero-right-start {
    position: absolute;
    top: 0;
    right: 12rem;
    width: 100px;
    animation: rotate 10s linear infinite;
    height: auto;
}

.hero-right img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(238, 255, 0, 0.2))
            drop-shadow(0 0 60px rgba(30, 144, 255, 0.1));
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 80%,
        transparent 100%
    ), linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 80%,
        transparent 100%
    ), linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    mask-composite: intersect;
    transition: filter 0.4s ease;
}

.hero-right img:hover {
    filter: drop-shadow(0 0 50px rgba(238, 255, 0, 0.4)) 
            drop-shadow(0 0 100px rgba(30, 144, 255, 0.2));
}
/* ============================
   About Section Styling
   ============================ */
   .about-section {
       background-color: var(--background-secondary);
       z-index: 10;
   
    }
    
    .about-section .about-light-img{
        position: relative;

        max-width: 1600px;
        margin: 0 auto;
    }
.rounded-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-top: -100px;
    background-color: var(--primary-dark);
}

.rounded-wrapper .rounded-div {
    position: absolute;
    border-radius: 50%;
    top: 0;
    z-index: 999;
    left: 50%;
    width: 150%;
    height: 750%;
    background-color: var(--background-secondary);
    transform: translate(-50%);
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--section-padding) 0;
    gap: 5rem;
}

.about-container .about-image {
    background-image: none;
    flex: 1;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    position: relative;
    z-index: 1;
}

.about-container .about-image .profile-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about-container .about-image .profile-wrapper::before,
.about-container .about-image .profile-wrapper::after {
    display: none;
}

.about-container .about-image .profile-wrapper::before {
    z-index: -1;
}

.about-container .about-image .profile-wrapper::after {
    z-index: 3;
    clip-path: inset(50% -50% -50% -50%);
}

.about-container .about-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(238, 255, 0, 0.15));
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 75%,
        transparent 100%
    ), linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 75%,
        transparent 100%
    ), linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-composite: intersect;
}

.about-container .about-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 10;
    gap: var(--gap-medium);
}

.about-section .about-content p {
    font-size: 1.6rem;
    color: var(--neutral-gray);
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* ============================
   Services Section Styling
   ============================ */



/* ============================
   Services Section Styling
   ============================ */

   .rounded-wrapper1 {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-top: -100px;
    background-color: var(--primary-dark);
}

.rounded-wrapper1 .rounded-div1 {
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    z-index: 99;
    left: 50%;
    width: 150%;
    height: 750%;
    background-color: var(--background-secondary);
    transform: translate(-50%);
}

.services-container{
    padding: var(--section-padding) 0;
}

.services-container .light2 {
    position: absolute;
    top: -10rem;
    z-index: -1;
}

.services-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    margin-bottom: 10rem;
}

.services-heading h4 {
    font-weight: 600;
    font-family: var(--font1) !important;
}

.services-heading p {
    font-size: 1.8rem;
    max-width: 800px;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 5.7rem 2.3rem;
}

.services-grid .service-card {
    padding: 3.2rem 2.5rem;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--background-secondary), #2B3444);
    color: var(--light-gray);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 8rem;
}
.service-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15), 0 8px 15px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
}
/* Icon Styling */
.service-card .icon {
    margin-bottom: 1rem;
    padding: 15px;
    position: absolute;
    top: -40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 252, 252, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon Hover Effect */
.service-card:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Icon SVG Styling */
.service-card .icon svg {
    width: 3.5rem;
    height: 3.5rem;
    color: white;
}

/* Heading Styling */
.service-card h3 {
    margin-bottom: 15px;
    color: var(--highlight-yellow);
}

/* Paragraph Text Styling */
.service-card p {
    font-size: 1.6rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Skills Marquee */
.skills-marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 0;
    margin: 8rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    pointer-events: none;
}

.skills-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    gap: 4rem;
}

.skills-marquee span {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--light-gray);
    text-transform: uppercase;
    font-family: var(--font2);
    letter-spacing: 3px;
    opacity: 0.5;
    transition: var(--transition);
}

.skills-marquee span:hover {
    color: var(--highlight-yellow);
    opacity: 1;
    text-shadow: 0 0 15px var(--highlight-yellow);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================
   portfolio Section Styling
   ============================ */
   .portfolio-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    margin-bottom: 10rem;
}

.portfolio-heading h4 {
    font-weight: 600;
    font-family: var(--font1) !important;
}

.portfolio-heading p {
    font-size: 1.8rem;
    max-width: 800px;
}

.portfolio-section {
    background: transparent;
}

.portfolio-card {
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    padding: 6rem 0;
}

.row-reverse {
    flex-direction: row-reverse;
}

.portfolio-card .project-img {
    width: 60%;
}

.portfolio-card .project-img img {
    width: 100%;
    height: auto;
}

.portfolio-card .project-detail {
    width: 40%;
    margin-top: 2rem;
}

.project-detail h2 {
    font-size: 3.5rem;
}

.portfolio-card .project-detail p {
    font-size: 1.5rem;
    color: #D1D5DB;
    margin-top: 2rem;
}

.project-detail a {
    background-color: var(--highlight-yellow);
    display: inline-block;
    margin-top: 4rem;
    border-radius: 8px;
    color: var(--primary-dark);
    padding: 14px 27px;
    transition: var(--transition);
}
.project-detail a:hover{
    transform: scale(0.95) rotate(-3deg); 
    box-shadow: 0px 8px 15px rgba(255, 221, 0, 0.2); 
}

/* ============================
Contact Section Styling
   ============================ */



   
/* -----------section 7 ------  */
/* Testimonial Section */
.testimonial {
    padding-top: 100px;
    padding-bottom: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
  }
  
  .testimonial__container {
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
  }
  
  .testimonial__slide {
      display: flex !important;
      align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 3.2rem 2.5rem;
    border-radius: 45px;
    background: linear-gradient(145deg, var(--background-secondary), #2B3444);
    color: var(--light-gray);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 20px rgba(250, 247, 255, 0.104);   
}
.testimonial__slide:hover{
    box-shadow: 0 1px 20px rgba(250, 247, 255, 0.285);   
}
.testimonial__slide .testimonial-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.testimonial-content .testimonial-profile img{
    width: 140px;
    height: 140px;
    border-radius: 100%;
  }
  .testimonial-content .client-review-stars{
      display: flex;
      gap: 0.5rem;
      margin: 2rem 0;
      color: var(--highlight-yellow);
    }
    
    .testimonial-content .testimonial__name{
        font-size: 2.4rem;
        font-weight: 500;
    }
    .testimonial-content .testimonial__position{
        font-size: 1.8rem;
        color: #b9b6b6;
    }
    .testimonial-content .testimonial__quote{
        margin-top: 3rem;
        text-align: center;
        color: #b9b6b6;
        font-family: var(--font1);
    }
    .testimonial-content .quote_wrapper{
        display: flex;
        align-items: center;
    }
    .quote_wrapper  svg{
        width: 80px;
        height: 80px;
        color: var(--highlight-yellow);
        
    }
 
  /* Swiper Navigation */
  .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .swiper-pagination-bullet-active {
    background-color: #4070f4;
  }
  
 

  



/* ============================
Contact Section Styling
   ============================ */
   .contact-section {
    background-color: transparent;
    color: var(--light-gray);
    padding: var(--section-padding) 0;
    position: relative;
}

.contact-section h2 {
    text-align: center;
    font-family: var(--font2);
    color: var(--highlight-yellow);
    margin-bottom: 5rem;
}

.contact-container {
    background-color: rgba(255, 252, 252, 0.038);
    border-radius: 1rem;
    padding: 6rem 5rem 10rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: clamp(300px, 95%, 1000px);
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    z-index: 11;
    backdrop-filter: blur(10px);
}

.circle-right,
.circle-left {
    background: var(--highlight-gradient);
    width: 150px;
    height: 150px;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.5), 0 0 100px rgba(255, 153, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    z-index: 0;
}

.circle-left {
    left: 200px;
}

.circle-right {
    right: 200px;
    bottom: 100px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-gray);
    resize: none;
    padding: 20px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 252, 252, 0.2);
    box-shadow: 0 10px 30px rgba(255, 252, 252, 0.1);
}

.contact-form textarea {
    height: 150px;
}

/* Input Group Styling */
.contact-form .inputs-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.inputs-wrapper input {
    flex: 1;
    width: 100%;
}

.contact-form .input-wrapper {
    display: flex;
    align-items: start;
    gap: 1rem;
    width: 100%;
    flex-direction: column;
}

/* Form Layout and Spacing */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%;
}

.contact-form button{
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
}
/* =======================
   Footer Styling
   ======================= */
footer {
    background-color: rgba(255, 252, 252, 0.038);
    border-top: 1px solid rgba(251, 255, 255, 0.4);
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    font-family: var(--font1);
    color: var(--light-gray);
}

footer .footer_icons{
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    margin-bottom: 4rem;
}
footer .footer_icons a{
    display: flex;
    background-color: var(--highlight-yellow);
    padding: 1rem;
    border-radius: 100%;
    box-shadow: 0 1px 14px var(--highlight-yellow);
     align-items: center;
     justify-content: center;
     color: black;
     transition: var(--transition);
}
footer .footer_icons a:hover{
    transform: scale(1.1);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borerAnimate {
    0% {
        transform: translate(-50%, 50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, 50%) rotate(360deg);
    }
}
@keyframes topBottomAnimate {
    0% {
        transform: translateY(0px) ;
    }
    100% {
        transform: translateY(20px) ;
    }
}

/* ========== Media Query for Screen Width 1200px or Less ========== */
@media (max-width: 1260px) {
    .container {
        width: 100%;
        padding: 0 8rem;
    }

    .secondary-btn, .primary-btn {
        min-width: auto;
        padding: 1.6rem 2rem;
        font-size: 1.4rem;
    }
    
    /* Hero Section Adjustments */
    .hero-section {
        background-position: 200%;
    }
    .hero-left p {
        font-size: 1.5rem;
    }
    .hero-left .hero-btns {
        margin: 2.5rem 0;
    }
    .hero-btns .cta-btn {
        padding: 1.4rem 1.5rem;
        font-size: 1.4rem;
    }
    h1 {
        font-size: 4.2rem;
    }
    .hero-right img {
        width: 100%;
    }

    /* About Section Adjustments */
    .about-container .about-left img {
        max-width: 100%;
    }
}

/* ========== Media Query for Screen Width 1024px or Less ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 6rem;
    }

    .hero-section {
        background-position: 350%;
    }

    h1 {
        font-size: 4.1rem;
    }

  
    /* portfolio Card Adjustments */
    .portfolio-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .portfolio-card .project-img,
    .portfolio-card .project-detail {
        width: 90%;
    }
}

/* ========== Media Query for Screen Width 868px or Less ========== */
@media (max-width: 868px) {
    .bottom-scroll-arrow,
    .upper-arow-sticky{
        display: none;
    }
    .hero-container {
        flex-direction: column;
        gap: 8rem;
    }
    .hero-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .hero-right img {
        width: 80%;
    }
    .hero-section {
        background-position: bottom;
        background-size: 500px;
    }

    /* About Section Adjustments */
    .about-container {
        flex-direction: column;
    }
    .about-container .about-left,
    .about-container .about-right {
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--gap-medium);
    }
    .about-section .about-right p {
        margin-top: 2rem;
        font-size: 1.4rem;
    }
    .about-container .about-left img {
        max-width: 80%;
    }
}

/* ========== Media Query for Screen Width 768px or Less (Tablets) ========== */
@media (max-width: 768px) {
    /* Navbar Adjustments */
    nav .header-menu {
        flex-direction: column;
        padding: 7rem 4rem;
        position: absolute;
        top: 80px;
        right: -100%;
        border-radius: 1rem;
        border: 1px solid var(--button-border);
        background: linear-gradient(var(--primary-dark), #093663);
        transition: all 0.2s ease-in;
    }
    .header-menu.open-menu {
        right: 2rem;
    }
    #menuIcon {
        display: inline-block;
    }
}

/* ========== Media Query for Screen Width 668px or Less ========== */
@media (max-width: 668px) {
    .container {
        padding: 0 3rem;
    }

    /* Services Section Adjustments */
    .services-grid {
        gap: 8.7rem 2.3rem;
    }
    .contact-form .inputs-wrapper {
        flex-direction: column;
    }
    .contact-container {
        padding: 6rem 3rem;
    }
}

/* ========== Media Query for Screen Width 468px or Less ========== */
@media (max-width: 468px) {
    /* Hero Section Adjustments */
    .hero-left .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-left .hero-btns a {
        width: 100%;
    }

    /* portfolio Card Adjustments */
    .portfolio-card .project-img,
    .portfolio-card .project-detail {
        width: 100%;
    }


}
@keyframes cursorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

#cursor {
  animation: cursorPulse 2s ease-in-out infinite;
}

/* Toast Notification Styling */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: rgba(18, 22, 29, 0.98);
    border: 2px solid var(--highlight-yellow);
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    box-shadow: 0 10px 40px rgba(238, 255, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    min-width: 300px;
    transform-origin: right bottom;
    animation: toastIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transition: all 0.3s ease;
}

.toast-success {
    border-color: #22c55e;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
}

.toast-error {
    border-color: #ef4444;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
}

.toast i {
    font-size: 20px;
}

.toast-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.toast-content p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 4px 0 0 0;
}

@keyframes toastIn {
    from { transform: translateX(100%) scale(0.5); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to { transform: translateX(120%) scale(0.5); opacity: 0; }
}

/* Experience Section Styling */
.experience-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.experience-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 8rem;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--highlight-yellow);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-family: var(--font2);
    font-size: 3.5rem;
    color: var(--highlight-yellow);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.stat-card span {
    font-size: 1.4rem;
    color: #9ca3af;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the cards */
    gap: 4rem;
    margin-top: 5rem;
}

.experience-card {
    padding: 3.2rem 4rem;
    border-radius: 45px; /* Match testimonial card radius */
    background: linear-gradient(145deg, var(--background-secondary), #2B3444);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 20px rgba(250, 247, 255, 0.104); /* Match testimonial shadow */
    transition: var(--transition);
    width: 100%;
    max-width: 1000px; /* Limit width to look better on wide screens */
}

.experience-card:hover {
    border-color: var(--highlight-yellow);
    box-shadow: 0 1px 20px rgba(250, 247, 255, 0.285); /* Match testimonial hover shadow */
    transform: translateY(-5px);
}

.exp-header {
    margin-bottom: 2.5rem;
}

.exp-header .title {
    font-size: 2.4rem;
    color: var(--highlight-yellow);
    margin-bottom: 1rem;
}

.exp-header .company-info {
    font-size: 1.8rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.exp-header .duration-type {
    font-size: 1.6rem;
    color: #9ca3af;
}

.exp-bullets {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exp-bullets li {
    font-size: 1.6rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.skill-tags .tag {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--highlight-yellow);
    color: var(--highlight-yellow);
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
}

.skill-tags .tag:hover {
    background: var(--highlight-yellow);
    color: var(--primary-dark);
}

/* Footer Styling */
footer {
    padding: 8rem 0 3rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-col h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--highlight-yellow);
}

.footer-logo {
    font-family: var(--font2);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.logo-h {
    color: var(--highlight-yellow);
}

.footer-tagline {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 400px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links li a {
    font-size: 1.6rem;
    color: #9ca3af;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--highlight-yellow);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 1.6rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-contact li i {
    color: var(--highlight-yellow);
    width: 2rem;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-social-icon {
  display: flex;
  background-color: var(--highlight-yellow);
  padding: 1rem;
  border-radius: 100%;
  box-shadow: 0 1px 14px var(--highlight-yellow);
  align-items: center;
  justify-content: center;
  color: black;
  transition: var(--transition);
  width: 42px;
  height: 42px;
}

.footer-social-icon:hover {
  transform: scale(1.1);
}

.copyright {
    font-size: 1.4rem;
    color: #6b7280;
}

/* Responsive Experience & Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .experience-stats {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Stats Fix */
    .experience-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-card h3 {
        font-size: 3rem;
    }
}
