/* Base Styles */
:root {
    --primary-bg: #0D0D0D;
    --secondary-bg: #111111;
    --text-color: #ffffff;
    --text-color-muted: rgba(255, 255, 255, 0.7);
    --accent-color: #ffffff;
    --button-dark: #1a1a1a;
    --button-light: #ffffff;
    --border-radius: 50px;
    --navbar-bg: rgba(10, 10, 10, 0.9);
    --card-bg: #111111;
    --border-color: #222222;
    --button-bg: #1a1a1a;
    --hover-color: #333333;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--navbar-bg);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    width: 100%;
    max-width: 700px;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #555;
    border-radius: 50%;
}

.logo-plus {
    color: var(--text-color);
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-weight: 600;
    font-size: 1.2rem;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    font-size: 1rem;
    transition: opacity 0.3s;
}

.desktop-nav a:hover {
    opacity: 0.8;
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.cta-icon {
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    flex-direction: column;
}

.hamburger {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--text-color);
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu nav li {
    position: relative;
}

.mobile-menu nav a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
}

.indicator-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: calc(100vh - 80px);
}

.hero-content {
    max-width: 700px;
    margin-top: 2rem;
}

.tag {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.light-text {
    color: rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}


/* Floating Testimonials */
.floating-testimonials {
    position: absolute;
    right: 5%;
    top: 30%;
    width: 40%;
    max-width: 500px;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    width: 250px;
    transform: rotate(5deg);
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.author {
    font-size: 0.8rem;
    color: var(--text-color-muted);
    display: block;
    text-align: right;
}

.card-1 {
    top: 0;
    right: 0;
    transform: rotate(5deg);
}

.card-2 {
    bottom: 0;
    left: 0;
    transform: rotate(-5deg);
}

.dot-indicator {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 20%;
    right: 10%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    
    .floating-testimonials {
        width: 30%;
    }
    
    .testimonial-card {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .cta-button {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .floating-testimonials {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 3rem;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-card {
        position: relative;
        width: 100%;
        max-width: 350px;
    }
    
    .card-1 {
        align-self: flex-end;
    }
    
    .dot-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 1rem;
    }
    
    .hero {
        padding: 7rem 1rem 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
}

.overlay-div{
    background-color: var(--primary-bg);
}

/* Portfolio marquee container */
.portfolio-marquee {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Marquee track that holds the images */
.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
    padding: 20px 0;
}

/* Slow down animation on hover */
.portfolio-marquee:hover .marquee-track {
    animation-play-state: paused;
    transition: all 0.5s ease;
}

/* Individual portfolio item */
.portfolio-item {
    flex: 0 0 auto;
    margin: 0 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Portfolio image */
.portfolio-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Marquee animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-image {
        width: 250px;
        height: 170px;
    }
}

/* Optional heading styles */
.portfolio-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    margin-bottom: 15px;
}

.modal-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-nav button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-nav button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.modal-nav button:active {
    transform: translateY(0);
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
.header2 {
    text-align: center;
    margin-bottom: 3rem;
}

.small-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.text-muted {
    color: var(--text-muted);
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

/* Profile Column */
.profile-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #111111;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

.profile-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #4cf504;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background-color: #4cf504;
    border-radius: 50%;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.profile-job {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--button-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--hover-color);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.connect-button {
    display: inline-block;
    background-color: var(--button-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.connect-button:hover {
    background-color: var(--hover-color);
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #111111;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

.bio-section {
    margin-bottom: 1rem;
}

.bio-text {
    font-size: 1.4rem;
    line-height: 1.7;
}

.skills-section {
    margin-bottom: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background-color: var(--button-bg);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.experience-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.experience-role {
    font-weight: 500;
}

.experience-company {
    color: var(--text-muted);
}

.experience-year {
    text-align: right;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .profile-column {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .profile-image-container {
        aspect-ratio: 1/1;
    }
    
    .experience-item {
        grid-template-columns: 1fr 1fr;
    }
    
    .experience-year {
        grid-column: 2;
        text-align: right;
    }
    
    .experience-company {
        grid-column: 1;
        grid-row: 2;
    }

    .info-column{
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .bio-text{
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .skill-tags {
        gap: 0.5rem;
    }
    
    .skill-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .experience-company, .experience-year {
        grid-column: 1;
        text-align: left;
    }
    
    .experience-year {
        grid-row: 3;
        font-size: 0.8rem;
    }

    .cta8{
        width: 70% !important; 
    }
}

 /* Section styles */
 .tools-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Tool card */
.tool-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tool-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: #252525;
}

.tool-logo img {
    max-height: 80px;
    max-width: 80%;
}

.tool-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.tool-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tools-section {
        padding: 40px 15px;
    }
}

.work-experience-section{
    padding: 40px;
}


.work-experience-section h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  
   /* Process section styles */
   .process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works {
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.process-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-title span {
    color: #666;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Process steps grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Step card styles */
.step-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #222;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #333;
    background-color: #151515;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

.step-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.step-description {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.step-button {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.step-button:hover {
    background-color: #333;
}

/* Bottom section */
.process-footer {
    background-color: #111111;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.process-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.process-footer-subtitle {
    color: #999;
    font-size: 0.95rem;
}

.process-footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.footer-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.button-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #333;
}

.button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.button-primary {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.button-primary:hover {
    background-color: #e0e0e0;
}

/* Responsive styles */
@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-footer {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 30px 40px;
    }
    
    .process-footer-content {
        max-width: 60%;
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contain-box {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
    padding: 2rem;
}

/* heading Styles */
.heading2 {
    margin-bottom: 3rem;
    position: relative;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contain-box h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.text-gray {
    color: #9e9e9e;
}

.contain-box .subtitle2 {
    color: #9e9e9e;
    font-size: 1rem;
    max-width: 60%;
    margin-bottom: 1.5rem;
}

.contact-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2a2a2a;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #3a3a3a;
}

/* Services Grid */
.services-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 50%;
}

.service-card {
    background-color: #121212;
    border-radius: 12px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

/* Specific card heights to match design */
.website-card {
    flex: 1.6;
}

.graphic-card {
    flex: 0.4;
}

.logo-card {
    flex: 0.4;
}

.framer-card {
    flex: 1.6;
}

.service-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.service-heading i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-heading h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.service-card p {
    color: #9e9e9e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Website Gallery */
.website-gallery {
    margin-top: 3px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 370px;
    background-image: url(imgs/project1.png);
    background-size: cover;
}


/* Framer Gallery */
.framer-gallery {
    margin-top: 3px;
    display: flex;
    gap: 10px;
    height: 370px;
    background-image: url(imgs/project3.png);
    background-size: cover;
    border-radius: 8px;
}


/* Skills Marquee Section */
.skills-section {
    margin-top: 2rem;
}

.marquee-contain-box {
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-ltr .marquee-content {
    animation-name: marquee-ltr;
}

.marquee-rtl .marquee-content {
    animation-name: marquee-rtl;
}

@keyframes marquee-ltr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.skill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.8rem; /* Reduced spacing between pills */
    padding: 0.5rem 1rem;
    background-color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #9e9e9e;
}

.skill-item i {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
    
    .left-column, .right-column {
        width: 100%;
    }
    
    .subtitle2 {
        max-width: 100%;
    }
    
    .contact-btn {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
    }

    .contain-box{
        padding: 0.9rem;
    }
    
    .heading2 {
        text-align: center;
    }
    
    /* Adjust card heights for mobile */
    .website-card, .graphic-card, .logo-card, .framer-card {
        flex: auto;
    }

    .logo-card, .graphic-card{
        padding-bottom: 2px;
    }

    .website-gallery, .framer-gallery{
        height: 250px;
    }
}

/* container3 with padding instead of body */
.container3 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
}

/* Custom cursor */
.cursor-follower {
    position: fixed;
    width: 120px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    backdrop-filter: blur(4px);
    transform: translate(-50%, 20px);
}



.recent-projects {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.icon {
    width: 16px;
    height: 16px;
}

/* Title section */
.title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-container3 h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-container3 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 1rem;
    font-family: inherit;
}

.btn22 {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer; /* Ensure buttons have pointer cursor */
    font-family: inherit;
}

.primary {
    background-color: #fff;
    color: #000;
}

button{
    font-family: "Satoshi";
}

.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn22:hover {
    transform: translateY(-2px);
}

/* Projects grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
    padding: 3rem;
}

.project-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    padding: 0.8rem;
    cursor: none; /* Only hide cursor on project cards */
}

.project-img-container3 {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover .project-img {
    filter: brightness(1.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Project card sizes - more compact */
.project-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: 1 / 0.9;
}

.project-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1.5 / 0.6;
}

.project-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 1.5 / 0.6;
}

.project-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / span 2;
    aspect-ratio: 1 / 0.9;
}

/* Arrow corners */
.arrow-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.top-left {
    top: 10px;
    left: 10px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        max-height: none;
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .project-card {
        width: 100%; /* Explicitly set to 100% width on mobile */
    }

    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 1 / 0.6;
        margin-bottom: 0.8rem;
    }

    .container3{
        padding: 0.7rem;
    }

    .title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn22 {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .title-container3 h1 {
        font-size: 1.8rem;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn22 {
        width: 100%;
        text-align: center;
    }
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

/* Header Section Styles */
.testimonial-header {
    padding: 40px 0;
    text-align: center; /* Center all text in the header */
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 16px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.title span {
    color: #888;
}

.subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Square Stat Cards */
.stats-container {
    display: flex;
    justify-content: center; /* Center the stat cards */
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    aspect-ratio: 1/1; /* This ensures a perfect square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 160px; /* Fixed width for desktop */
    max-width: 160px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

/* Testimonial Cards Section */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.testimonial-header-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ff6b00;
    margin-right: 12px;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    min-width: 0; /* Prevents text overflow */
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-company {
    color: #888;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.rating-number {
    font-weight: 600;
    margin-right: 8px;
}

.stars {
    color: #ffb800;
}

.testimonial-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        text-align: left; /* Align text to left on mobile */
    }
    
    .stats-container {
        justify-content: space-between; /* Distribute cards evenly on mobile */
    }
    
    .stat-card {
        width: 30%; /* Adjust to take up approximately 1/3 of the space */
        max-width: none;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .title {
        font-size: 32px;
    }
    
    .stat-card {
        width: 30%;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        width: 30%;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

.container5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section Styles */
.hero-section2 {
    padding: 40px 0;
    text-align: center; /* Center all text in the header */
}

.tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 16px;
}

.heading4 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    
}

.heading4 span {
    color: var(--text-muted);
}

.subheading2 {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

/* Metrics Cards */
.metrics-row {
    display: flex;
    justify-content: center; /* Center the stat cards */
    gap: 10px;
    margin-top: 30px;
    flex-wrap: nowrap;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    aspect-ratio: 1/1; /* This ensures a perfect square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    width: 160px; /* Fixed width for desktop */
    max-width: 160px;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

.metric-icon {
    margin-bottom: 12px;
    color: #fff;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* Testimonial Cards Section */
.testimonials-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.testimonial-card2 {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ff6b00;
    margin-right: 12px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
    min-width: 0; /* Prevents text overflow */
}

.client-name {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-company {
    color: #888;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    display: flex;
    align-items: center;
    margin: 12px 0;
}

.rating-score {
    font-weight: 600;
    margin-right: 8px;
}

.rating-stars {
    color: #ffb800;
}

.testimonial-text2 {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-grid2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonials-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section2 {
        text-align: left; /* Align text to left on mobile */
    }
    
    .metrics-row {
        justify-content: space-between; /* Distribute cards evenly on mobile */
    }
    
    .metric-card {
        width: 30%; /* Adjust to take up approximately 1/3 of the space */
        max-width: none;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .metric-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .testimonials-grid2 {
        grid-template-columns: 1fr;
    }
    
    .heading {
        font-size: 32px;
    }
    
    .metric-card {
        width: 30%;
    }
    
    .metric-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .metric-card {
        width: 30%;
        padding: 15px 10px;
    }
    
    .metric-icon {
        margin-bottom: 8px;
    }
    
    .metric-value {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .metric-label {
        font-size: 10px;
    }
}

.faq_c7d9e {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--text-color);
    border-radius: 12px;
}

.faq_header_a3b2f {
    margin-bottom: 1rem;
}

.faq_title_wrapper_k8j2l {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq_title_wrapper_k8j2l span{
    color: var(--text-muted);
}

.faq_title_wrapper_k8j2l h1 {
    text-align: center;
    margin: auto;
}


.faq_title_e8f4c {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.faq_description_m4n7p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    padding-left: 2.5rem;
}

.faq_item_b6d1e {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq_question_f2a7d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.faq_question_f2a7d:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq_question_text_h9c3e {
    margin: 0;
    font-size: 1rem;
}

.faq_answer_d5e8b {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq_answer_text_g7f2e {
    margin: 0;
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq_item_b6d1e.active_i4j6k .faq_answer_d5e8b {
    max-height: 200px;
    padding-top: 0.25rem;
}

.faq_icon_c2e9f {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq_item_b6d1e.active_i4j6k .faq_icon_c2e9f {
    transform: rotate(45deg);
}

@media (max-width: 640px) {
    .faq_c7d9e {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .faq_title_e8f4c {
        font-size: 1.5rem;
    }

    .faq_description_m4n7p {
        font-size: 0.9rem;
        padding-left: 0;
    }

    .faq_question_f2a7d {
        padding: 0.875rem 1rem;
    }

    .faq_answer_d5e8b {
        padding: 0 1rem;
    }

    .faq_answer_text_g7f2e {
        padding-bottom: 1rem;
    }
}


  
  /* Footer styles */
.footer {
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cta-section {
    margin-bottom: 4rem;
  }
  
  .cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .cta-subheading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-block;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-info {
    max-width: 300px;
  }
  
  .footer-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .email {
    display: flex;
    align-items: center;
  }
  
  .icon-small {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-icon {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .icon {
    width: 20px;
    height: 20px;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .footer {
      padding: 3rem 1.5rem;
    }
    
    .cta-heading, .cta-subheading {
      font-size: 2rem;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 2rem;
    }
    
    .footer-info {
      max-width: 100%;
    }
    
    .footer-social {
      width: 100%;
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 2rem 1rem;
    }
    
    .cta-heading, .cta-subheading {
      font-size: 1.5rem;
    }
    
    .cta-section {
      margin-bottom: 2rem;
    }
  }
  
  .bottom-blur-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent; /* No background color */
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    z-index: 999;
  }
  
  
  .container5 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid layout */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-experience-section{
        padding: 0px;
    }
}

@media (max-width: 768px) {
 .work-experience-section{
        padding: 0px;
    }
}


/* Experience card */
.experience-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
}



/* Company section */
.company {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.arrow {
    color: var(--text-muted);
    margin-right: 8px;
    font-size: 14px;
}

.company h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

/* Role and period */
.role {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.period {
    color: #9ca3af;
    font-size: 17.6px;
    margin-bottom: 16px;
}

/* Description */
.description {
    color: #d1d5db;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Skills section */
.skills-section h4 {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.skills-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill {
    background-color: var(--hover-color);
    color: white;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 14.4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.skill-pill:hover {
    background-color: #374151;
    cursor: default;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .skills-pills {
        gap: 6px;
    }
    
    .skill-pill {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .experience-card {
        padding: 20px;
    }
}
  
.description li{
    margin-bottom: 6px;
}

/* Hero section */
.hero2 {
    min-height: calc(100vh - 80px); /* Adjust for header height */
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
  }
  
  .hero2-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
  }
  
  /* Left content area */
  .hero2-content {
    max-width: 600px;
  }
  
  .hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
  }
  
  .hero2-badge-icon {
    font-size: 0.75rem;
  }
  
  .hero2-heading {
    font-size: clamp(3.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .hero2-heading-bold {
    font-weight: 700;
    color: #ffffff;
  }
  
  .hero2-heading-light {
    font-weight: 400;
    color: #888888;
  }
  
  .hero2-arrow {
    font-size: 2rem;
    margin-left: 0.75rem;
    color: #888888;
    opacity: 0.7;
  }
  
  .hero2-text {
    font-size: 1.125rem;
    color: #aaaaaa;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }
  
  /* Buttons */
  .hero2-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero2-button {
    display: inline-block;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease; 
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .hero2-button-dark {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #333333;
  }
  
  .hero2-button-dark:hover {
    background-color: #222222;
    transform: translateY(-2px);
  }
  
  .hero2-button-light {
    background: linear-gradient(135deg, #cccccc, #999999);
    color: #000000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  
  .hero2-button-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Testimonials */
  .hero2-testimonials {
    position: relative;
    margin-top: 2rem;
  }
  
  .hero2-testimonial {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 400px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .hero2-testimonial-1 {
    transform: rotate(-5deg);
    z-index: 2;
  }
  
  .hero2-testimonial-2 {
    transform: rotate(3deg);
    margin-left: 3rem;
    margin-top: -1rem;
    z-index: 1;
  }

  .hero2-testimonial-3 {
    transform: rotate(-10deg);
    margin-left: 3rem;
    margin-top: -1rem;
    z-index: 1;
  }
  
  .hero2-testimonial:hover {
    transform: rotate(0deg) translateY(-5px);
  }
  
  .hero2-quote {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-style: italic;
  }
  
  .hero2-author {
    font-size: 0.875rem;
    color: #888888;
    font-weight: 500;
    text-align: right;
  }
  
  /* Cursor icons */
  .hero2-cursor {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3000;
  }
  
  .hero2-cursor-1 {
    top: 20px;
    right: 80px;
    animation-delay: 0s;
  }
  
  .hero2-cursor-2 {
    bottom: 40px;
    right: 40px;
    animation-delay: 1.5s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .hero2-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    
    .hero2-content {
      flex: 1;
    }
    
    .hero2-testimonials {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-top: 0;
    }
  }
  
  @media (max-width: 767px) {
    .hero2 {
      padding: 1.5rem;
      margin-top: 60px;
    }
    
    .hero2-heading {
      font-size: 3rem;
    }
    
    .hero2-text {
      font-size: 1rem;
    }
    
    .hero2-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .hero2-button {
      width: 100%;
      text-align: center;
    }
    
    .hero2-testimonial {
      max-width: 100%;
    }
    
    .hero2-testimonial-2 {
      margin-left: 0;
      margin-top: 1rem;
    }
    
    .hero2-cursor {
      display: none;
    }
  }

/* Custom cursor styles */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
  }

  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
  }

  .cursor.active {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 3px solid rgba(255, 255, 255, 0.9);
  }

  .cursor.hover {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 2.5px solid rgba(255, 255, 255, 1);
  }

  /* Trail effect */
  .trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s, width 0.3s, height 0.3s;
    z-index: 9998;
  }

  .testimonial-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem;
    width: 100%;
  }

  .card {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    flex: 1 1 300px;
    transition: transform 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px, rgba(184, 180, 180, 0.08) 0px 2px 0px 0px inset;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .quote-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .person-info {
    margin-top: 0.5rem;
  }

  .person-name {
    font-weight: bold;
    color: #ddd;
  }

  .person-title {
    font-size: 0.9rem;
    color: #aaa;
  }