/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html{
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    color: #1e2125;
}

.navbar-nav .nav-link:hover {
    color: #ff014f;
}

.hero-section {
    padding: 100px 0;
    background-color: #fff;
}

.text-danger {
    color: #ff014f !important;
}

.btn-danger {
    background-color: #ff014f;
    border-color: #ff014f;
}

.btn-danger:hover {
    background-color: #e6013f;
    border-color: #e6013f;
}

.social-icon-hero, .skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1e2125;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 10px;
    position: relative;
    box-shadow: 
        5px 5px 10px #d1d1d1,
        -5px -5px 10px #ffffff,
        inset 0 0 0 rgba(255, 255, 255, 0);
}

.social-icon-hero:hover, .skill-icon:hover {
    transform: translateY(-3px);
    color: #ff014f;
    background: #ffffff;
    box-shadow: 
        8px 8px 15px #d1d1d1,
        -4px -4px 10px #ffffff,
        inset 2px 2px 4px rgba(209, 209, 209, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.7);
}

/* 3D Button Style */
.btn-3d {
    padding: 12px 30px;
    text-decoration: none;
    color: #1e2125;
    font-weight: 500;
    font-size: 15px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 10px;
    position: relative;
    box-shadow: 
        5px 5px 10px #d1d1d1,
        -5px -5px 10px #ffffff,
        inset 0 0 0 rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-3d:hover {
    color: #ff014f;
    background: #ffffff;
    box-shadow: 
        8px 8px 15px #d1d1d1,
        -4px -4px 10px #ffffff,
        inset 2px 2px 4px rgba(209, 209, 209, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-3d i {
    font-size: 16px;
}

.lead {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
}

h6 {
    font-size: 14px;
    color: #1e2125;
    font-weight: 500;
}

.badge {
    top: -5px;
    right: -5px;
}

.animated-text {
    display: inline-block;
    position: absolute;
    min-width: 300px;
    margin: 0 8px;
}

.animated-text .profession {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.animated-text .profession:nth-child(1) {
    animation: showHide 9s infinite;
}

.animated-text .profession:nth-child(2) {
    animation: showHide 9s infinite 3s;
}

.animated-text .profession:nth-child(3) {
    animation: showHide 9s infinite 6s;
}

@keyframes showHide {
    0%, 32% {
        opacity: 1;
        transform: translateY(0);
    }
    33%, 99% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    padding: 30px;
    z-index: 1;
}


.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.hero-image img {
    width: 75%;
    height: auto;
    border-radius: 10px;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Features Section Styles */
.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        /* Outer shadows */
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 
        /* Outer shadows */
        3px 3px 8px rgba(0, 0, 0, 0.08),
        -3px -3px 8px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-section {
    padding: 100px 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e2125;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.icon-box i {
    font-size: 20px;
    color: #ff014f;
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 100px 0;
    /* background-color: #f7f7f7; */
}

.portfolio-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        /* Outer shadows */
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
    position: relative;
}

.portfolio-content .category {
    font-size: 14px;
    color: #ff014f;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.portfolio-content .title {
    font-size: 20px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 0;
    padding-right: 40px;
}

.view-more {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    text-decoration: none;
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.08),
        -3px -3px 8px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.view-more:hover {
    transform: translateY(-2px);
    color: #ff014f;
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.1),
        -4px -4px 10px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

/* Resume Section Styles */
.resume-section {
    padding: 100px 0;
}

.resume-category-title {
    position: relative;
}

.resume-category-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e2125;
    display: inline-block;
    margin-bottom: 0;
    background: #f7f7f7;
    padding-right: 15px;
    position: relative;
    z-index: 1;
}

.resume-category-title .line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.resume-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        /* Outer shadows */
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.resume-card .date {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 1, 79, 0.1);
    color: #ff014f;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.resume-card .degree,
.resume-card .position {
    font-size: 20px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 10px;
}

.resume-card .institution,
.resume-card .company {
    font-size: 16px;
    font-weight: 500;
    color: #ff014f;
    margin-bottom: 15px;
}

.resume-card .description {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-carousel {
    position: relative;
    padding: 0 15px;
}

#testimonialCarousel {
    overflow: hidden;
}

.carousel-inner {
    overflow: visible;
}

.carousel-item {
    transition: transform .6s ease-in-out;
    perspective: 1000px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    height: calc(100% - 30px); /* Account for margin */
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    font-size: 24px;
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.08),
        -3px -3px 8px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-control {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    transition: all 0.3s ease;
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.08),
        -3px -3px 8px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.carousel-control:hover {
    transform: translateY(-2px);
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.1),
        -4px -4px 10px rgba(255, 255, 255, 1),
        inset -1px -1px 3px rgba(255, 255, 255, 1),
        inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.carousel-control i {
    font-size: 18px;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.08),
        -3px -3px 8px rgba(255, 255, 255, 1);
}

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

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 5px;
}

.client-position {
    font-size: 14px;
    color: #ff014f;
    margin-bottom: 0;
}

/* Clients Section Styles */
.clients-section {
    padding: 100px 0;
    background-color: #eeeeee;
}

.client-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        /* Outer shadows */
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -8px -8px 20px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        /* Outer shadows */
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1),
        /* Inner shadows */
        inset -2px -2px 5px rgba(255, 255, 255, 1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid #ff014f;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: #ff014f;
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 500;
    color: #ff014f;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1e2125;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #6c757d;
}

.pricing-body {
    flex: 1;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #6c757d;
}

.features-list i {
    color: #ff014f;
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 1, 79, 0.1);
}

.pricing-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-purchase {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: #ffffff;
    color: #ff014f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.05),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.btn-purchase:hover,
.btn-purchase.active {
    background: #ff014f;
    color: #ffffff;
    box-shadow: 
        inset 3px 3px 5px rgba(0, 0, 0, 0.2),
        inset -3px -3px 5px rgba(255, 255, 255, 0.1);
}
.splide__arrow--prev {
    left: 40%;
    top: 90%;
  }

  .splide__arrow--next {
    right: 40%;
    top: 90%;
  }


@media (max-width: 768px) {
    .testimonial-card {
        margin: 10px 0;
        height: auto;
    }

    .splide__arrow--prev {
        left: 30% ;
      }
    
      .splide__arrow--next {
        right: 30% ;
      }
    
    .testimonial-text {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .carousel-item {
        padding-bottom: 20px;
    }

    .client-card {
        height: 120px;
        padding: 20px;
    }

    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }

    .pricing-card {
        padding: 30px;
    }

    .amount {
        font-size: 36px;
    }

    .currency {
        font-size: 20px;
    }

    .period {
        font-size: 14px;
    }

    .features-list li {
        font-size: 14px;
    }
}

/* Footer Styles */
.footer-section {
    position: relative;
    background: #eeeeee;
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff014f;
}

.about-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.05),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.footer-social-links .social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background: #ff014f;
}

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

.footer-link {
    color: #6c757d;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff014f;
    transform: translateX(5px);
}

.newsletter-text {
    color: #6c757d;
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    padding: 0 60px 0 25px;
    background: #ffffff;
    border: none;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background: #ff014f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateX(3px);
}

.footer-bottom {
    padding: 25px 0;
}

.copyright-text {
    color: #6c757d;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff014f;
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #ff014f;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.1),
        -5px -5px 15px rgba(255, 255, 255, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn i {
    position: relative;
    z-index: 2;
    line-height: 45px;
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-path {
    fill: none;
    stroke: #ff014f;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
    cx: 22.5;
    cy: 22.5;
    r: 20;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
    }

    .widget-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright-text {
        text-align: center;
    }

    .scroll-top-btn {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
}

.contact-info {
    height: 100%;
}

.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    font-size: 20px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8),
        5px 5px 10px rgba(0, 0, 0, 0.05),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e2125;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff014f;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.05),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background: #ff014f;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 4px 3px 20px 4px rgba(0, 0, 0, 0.08), -8px -8px 20px rgba(255, 255, 255, 1);
}

.form-floating {
    position: relative;
    margin-bottom: 5px;
}

.form-control {
    height: 60px;
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 20px;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: #ff014f;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8),
        0 0 0 3px rgba(255, 1, 79, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

.form-floating label {
    padding: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-30px) scale(0.85);
    color: #ff014f;
    opacity: 1;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    background: #ff014f;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 15px rgba(0, 0, 0, 0.1),
        -8px -8px 15px rgba(255, 255, 255, 0.8);
}

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

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

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px;
    }

    .form-control {
        height: 55px;
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-content h4 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 14px;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    
    [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .feature-card,
    .portfolio-card,
    .resume-card,
    .testimonial-card,
    .client-card,
    .pricing-card,
    .contact-info-card,
    .contact-form-wrapper {
        margin-right: 0;
        margin-left: 0;
    }
}


.splide__slide {
    /* background: #eee; */
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    /* margin: 10px; */
  }


  .splide__arrow--next, .splide__arrow--prev {
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.144), 
    -3px -3px 8px rgba(255, 255, 255, 1), 
    inset -1px -1px 3px rgba(255, 255, 255, 1), 
    inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  }

  .splide__arrow svg{
    fill: #ff014f;
  }

  .splide__pagination__page.is-active{
    background: #ff014f;
  }
  .splide__pagination{
    bottom: 5.5em;
  }

  .splide__track{
    padding-bottom: 90px;

  }