:root {
    --primary-color: #DAFF01;
    --secondary-color: #000000;
    --background-color: #111111;
    --dark-grey: #1A1A1A;
    --text-color: #ffffff;
    --nav-width: 100px;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}

/* Container Override */
.container {
    max-width: 1440px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-link i {
    font-size: 2.5rem;
}

.logo-link span {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 3rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.7;
}

.social-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Theme Controls */
.theme-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
}

.theme-controls i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-check-input {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Menu Button */
.menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .vertical-nav {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .top-nav {
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        margin-left: auto;
    }

    .menu-btn:hover {
        color: var(--primary-color);
    }

    .menu-btn.active i::before {
        content: "\f00d";
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        visibility: hidden;
    }

    .mobile-menu.active {
        transform: translateY(0);
        visibility: visible;
    }

    .mobile-menu .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu .nav-item {
        padding: 0;
        margin: 0;
    }

    .mobile-menu .nav-link {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-menu .nav-link i {
        margin-right: 15px;
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }

    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link.active {
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.05);
    }

    .social-links {
        display: none;
    }

    .theme-controls {
        margin-left: 15px;
    }
}

/* Main Content */
.main-content {
    padding-top: 8rem;
    /* padding-right: calc(var(--nav-width) + 2rem); */
    width: 100%;
}

/* Vertical Navigation */
.vertical-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: var(--nav-width);
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
}

.vertical-nav .nav {
    gap: 1.5rem;
}

.vertical-nav .nav-item {
    width: 100%;
}

.vertical-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    color: var(--text-color);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    opacity: 0.7;
}

.vertical-nav .nav-link i {
    font-size: 1.25rem;
    min-width: 24px;
    text-align: center;
}

.vertical-nav .nav-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.vertical-nav .nav-link:hover,
.vertical-nav .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    opacity: 1;
}

.vertical-nav .nav-link:hover i,
.vertical-nav .nav-link.active i {
    color: var(--secondary-color);
}

.vertical-nav:hover {
    width: 160px;
}

.vertical-nav .nav-link span {
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    position: absolute;
    left: 3rem;
}

.vertical-nav:hover .nav-link span {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero-section {
    background-color: var(--background-color);
    /* min-height: calc(100vh - 8rem); */
    display: flex;
    align-items: center;
    padding: 4.3rem 0;
    position: relative;
    overflow: hidden;
}


.hero-content h1 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .name {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-content .profession {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content .lead {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.7;
    max-width: 90%;
    line-height: 1.6;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-weight: 500;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.btn:hover{
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    background: black;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    background: black;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Profile Image */
.hero-image {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.shape-background {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 110%;
    height: 110%;
    background-color: var(--primary-color);
    z-index: 1;
    clip-path: circle(50% at 55% 45%);
    opacity: 0.15;
    animation: pulse 2s ease-in-out infinite alternate;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(218,255,1,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 3;
    pointer-events: none;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

/* Stats Container */
.stats-container {
    background: black;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.owl-item{
    width: 400px !important;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: black;
    position: relative;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--primary-color);
}

.clients-section .highlight {
    color: var(--primary-color);
}

.section-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-link {
    text-decoration: none;
    flex: 1;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.contact-box:hover {
    border-color: var(--primary-color);
    background: rgba(218, 255, 1, 0.05);
}

.contact-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.contact-text span {
    color: var(--text-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.experience-badge,
.profile-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.experience-badge {
    top: 0;
    right: 0;
}

.profile-badge {
    bottom: 0;
    left: 0;
}

.badge-image {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.badge-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.badge-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-name {
    color: var(--text-color);
    font-weight: 500;
}

.experience-badge i,
.profile-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Resume Section */
.resume-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    position: relative;
}

.resume-intro {
    position: relative;
    padding-right: 2rem;
}

.brand-icon {
    width: 300px;
    height: 300px;
    background-color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    border: 1px solid var(--primary-color);
}

.brand-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
}

.timeline-container {
    position: relative;
    padding: 1.5rem;
    background: transparent;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #111111;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:hover {
    background: #111111;
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.timeline-marker {
    width: 46px;
    height: 46px;
    background: #111111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
}

.timeline-marker img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0.9);
}

.timeline-content {
    flex: 1;
}

.timeline-period {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.timeline-title {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.service-card {
    background: #111111;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-content {
    flex: 1;
    padding-right: 2rem;
}

.service-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-number {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.service-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.service-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.service-arrow {
    width: 40px;
    height: 40px;
    background: rgba(218, 255, 1, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-arrow:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

.service-arrow i {
    font-size: 1.2rem;
}

/* Skills Section */
.skills-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(218,255,1,0.05) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 1;
}

.skills-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(218,255,1,0.03) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(12deg);
    pointer-events: none;
    z-index: 1;
}


.skills-section .container {
    position: relative;
    z-index: 2;
}

.skills-content {
    padding-right: 2rem;
}

.section-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-card {
    background: #111111;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.skill-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.skill-value {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

.skill-info {
    flex: 1;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    position: relative;
    transition: width 1s ease;
}

.skill-percentage {
    position: absolute;
    right: 0;
    top: -25px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(218,255,1,0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(218,255,1,0.4), 0 0 30px rgba(218,255,1,0.2);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.5;
    }
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content .name {
        font-size: 4rem;
    }
    
    .image-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .hero-content .lead {
        margin: 0 auto 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .image-wrapper {
        width: 350px;
        height: 350px;
    }

    .stats-container {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content .name {
        font-size: 3rem;
    }

    .hero-content .profession {
        font-size: 2rem;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .stats-container {
        padding: 2rem;
    }
    .footer-bottom ,.col-md-6{
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --nav-width: 100%;
    }
    
    .vertical-nav {
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        height: 70px;
        border-radius: 15px 15px 0 0;
        flex-direction: row;
        padding: 0.75rem;
    }

    .vertical-nav .nav {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .vertical-nav .nav-link {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.25rem;
        justify-content: center;
        text-align: center;
    }

    .vertical-nav .nav-link i {
        font-size: 1.1rem;
        min-width: auto;
    }

    .vertical-nav .nav-link span {
        font-size: 0.75rem;
    }

    .main-content {
        /* padding-right: 1rem; */
        padding-bottom: 85px;
    }
}

@media (max-width: 768px) {

    .social-links {
        display: none;
    }

    .theme-controls .form-check-label {
        display: none;
    }
}

@media (max-width: 503px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .nav-container{
        padding: 0 !important;
    }

    .hero-section{
        padding: 0;
    }
    .stats-container{
        margin: 0;
    }
    .contact-info{
    display: flex;
    flex-direction: column;
    }
    .section-title {
    font-size: 1.2rem;
    }
    .profile-badge {
    bottom: -40px;
    }
    .experience-badge{
        top: -30px;
    }
    .button-77{
        padding: 13px 25px !important;
    }
 
}

/* Hide mobile elements in desktop */
.mobile-menu,
.menu-btn {
    display: none;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.project-card {
    background: #111111;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.project-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.project-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-color);
}

.project-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.contact-content {
    padding-right: 3rem;
}

.contact-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-features li i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.contact-form {
    background: #111111;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.form-group input::placeholder {
    color: rgb(112, 112, 112);
  }

  .form-group textarea::placeholder {
    color: rgb(112, 112, 112);
  }

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.input-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    box-shadow: none;
    color: #ffffff;
}
select option {
    background-color:#1d1d1d; /* Change options background */
    color: #ffffff; /* Text color */
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.form-control:focus + .input-icon {
    color: var(--primary-color);
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 255, 1, 0.2);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-features li {
        font-size: 0.875rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.pricing-card {
    background: #111111;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.pricing-card:hover::before,
.pricing-card.featured::before {
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.plan-save {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.plan-save span {
    color: var(--primary-color);
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3.5rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.feature-list li.active {
    color: var(--text-color);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.5;
}

.feature-list li.active i {
    opacity: 1;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: transparent;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-pricing i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-pricing:hover,
.btn-pricing.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

.btn-pricing:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card:last-child {
        margin-bottom: 0;
    }
}

/* Clients Section */
.clients-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.clients-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.client-item {
    position: relative;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #daff010f;
    border-radius: 10px;
}

.client-logo {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-logo img.colored {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
}

.client-logo img.grayscale {
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.5;
}

.client-item:hover .client-logo img.colored {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.client-item:hover .client-logo img.grayscale {
    opacity: 0;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.client-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .clients-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-item {
        padding: 1rem;
    }
    
    .client-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.5rem;
    }
}

/* Footer Section */
.footer-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-3px);
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links li {
    margin-bottom: 0.75rem;
}

.widget-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.widget-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 300px;
}

.newsletter-form .form-group {
    margin: 0;
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 5px;
}

.newsletter-form .form-control {
    flex: 1;
    background: transparent;
    border: none;
    height: 40px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
    color: #ffffff;
}

.newsletter-form .btn-subscribe {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-form .btn-subscribe:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* When input is focused, highlight the entire input group */
.newsletter-form .form-control:focus + .input-group {
    border-color: var(--primary-color);
}

.footer-bottom {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Footer Shapes */
.footer-shape-1,
.footer-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218,255,1,0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.footer-shape-1 {
    top: -150px;
    right: -150px;
}

.footer-shape-2 {
    bottom: -150px;
    left: -150px;
}

.footer-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color:black;
    position: relative;
}

.testimonial-slider {
    position: relative;
    margin-top: 2rem;
    width: 100%;
}

.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
    width: calc(50% - 15px) !important;
}

@media (max-width: 991px) {
    .testimonial-slider .owl-item {
        width: 100% !important;
    }
}

.testimonial-slider .owl-nav {
    display: block !important;
}

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none;
    color: var(--text-color) !important;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.testimonial-slider .owl-nav button.owl-prev {
    left: -70px;
}

.testimonial-slider .owl-nav button.owl-next {
    right: -70px;
}

.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.testimonial-slider .owl-nav button i {
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 1199px) {
    .testimonial-slider .owl-nav {
        position: static;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .testimonial-slider .owl-nav button.owl-prev,
    .testimonial-slider .owl-nav button.owl-next {
        position: static;
        transform: none;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
}

.testimonial-nav {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.custom-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-nav-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Owl Carousel Custom Styles */
.testimonial-slider.owl-carousel {
    display: block;
}

.testimonial-slider .owl-stage-outer {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
    /* flex: 1 0 auto; */
    width: 400px !important;
}

.testimonial-slider .owl-nav {
    display: none;
}

@media (max-width: 991px) {
    .testimonial-nav {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1199px) {
    .testimonial-slider .owl-nav {
        position: static;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .testimonial-slider .owl-nav button.owl-prev,
    .testimonial-slider .owl-nav button.owl-next {
        position: static;
        transform: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

@media (max-width: 991px) {
    .vertical-nav {
        display: none;
    }

    .mobile-menu, 
    .menu-btn {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 70px;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-nav li {
        flex: 1;
    }

    .mobile-nav a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: var(--primary-color);
    }

    .mobile-nav i {
        font-size: 1.3rem;
    }
}

.footer-section .highlight {
    color: var(--primary-color);
}


.button-77 {
  align-items: center;
  appearance: none;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: Eina01,sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 19px 26px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: auto;
  word-break: keep-all;
  z-index: 0;
}

@media (min-width: 768px) {
  .button-77 {
    padding: 16px 35px;
  }
}

.button-77:before,
.button-77:after {
  border-radius: 80px;
}

.button-77:before {
  background-color: var(--primary-color);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.button-77:after {
  background-color: white;
  background-image: linear-gradient(92.83deg, #000000 0, #000000 100%);
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}

.button-77:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
}

.button-77:active:not(:disabled) {
  color: #ccc;
}

.button-77:active:not(:disabled):after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #DAFF01 0, #71801e 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button-77:disabled {
  cursor: default;
  opacity: .24;
}