/* ===================================
   Page Loader
   =================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--text-dark);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
    border-width: 4px;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
    border-width: 3px;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: rgba(0, 0, 0, 0.6);
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
    border-width: 2px;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: rgba(0, 0, 0, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--text-dark);
}

.loader-text .logo-text {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.loading-text {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    animation: pulse 1.5s ease infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   Global Styles
   =================================== */

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

:root {
    --primary-bg: #f5f5f5;
    --sidebar-bg: #ffffff;
    --content-bg: #ffffff;
    --text-dark: #000000;
    --text-light: #666666;
    --border-radius: 20px;
    --hover-color: #f0b217;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Main Container
   =================================== */

.main-container {
    padding: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   Left Sidebar - Fixed Navigation
   =================================== */

.sidebar-wrapper {
    position: sticky;
    top: 30px;
    height: calc(100vh - 60px);
}

.sidebar {
    background-color: var(--sidebar-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu */
.nav-menu {
    margin-top: 20px;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin-bottom: 15px;
}

.nav-menu ul li:last-child {
    margin-bottom: 0;
}

.nav-menu .nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu .nav-link:hover {
    color: var(--hover-color);
    padding-left: 5px;
}

.nav-menu .nav-link.active {
    color: var(--hover-color);
    font-weight: 600;
}

.nav-menu .nav-link.active::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: var(--hover-color);
    border-radius: 2px;
}

/* ===================================
   Right Content Area
   =================================== */

.content-wrapper {
    /* padding: 60px; */
    min-height: calc(100vh - 60px);
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
}

.content-wrapper > section {
    border-radius: var(--border-radius);
    background-color: var(--content-bg);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    position: relative;
    text-align: center;
    width: 100%;
}

/* Background Text */
.hero-bg-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

.hero-bg-text span {
    display: block;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.034);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
    text-transform: capitalize;
}

.bg-text-top {
    margin-bottom: -20px;
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.profile-image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* Hero Text Content */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.greeting {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===================================
   Skills Progress Bars
   =================================== */

.skills-progress {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.skill-item {
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: conic-gradient(
        var(--text-dark) 0deg,
        var(--text-dark) 0deg,
        #f0f0f0 0deg,
        #f0f0f0 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
}

.progress-value {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 1;
}

.skill-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   Section Headers (Common)
   =================================== */

.section-content {
    padding: 30px;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.2;
}

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


.service-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 40px 35px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.service-icon i {
    font-size: 32px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   Portfolio Section
   =================================== */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    border-color: #d0d0d0;
    background-color: #f8f8f8;
}

.filter-btn.active {
    background-color: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
}


.portfolio-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item.hide {
    display: none;
    opacity: 0;
}

.portfolio-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

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

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

.portfolio-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

/* ===================================
   Testimonial Section
   =================================== */

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper {
    position: relative;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-content-wrapper {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 50px 60px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.client-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f5f5f5;
}

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

.client-details {
    flex: 1;
}

.client-name {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.client-role {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.testimonial-text {
    position: relative;
    z-index: 2;
}

.testimonial-text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--text-dark);
    z-index: 1;
}

.quote-icon svg {
    width: 80px;
    height: 80px;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-dark);
}

.testimonial-nav:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* ===================================
   Funfact/Statistics Section
   =================================== */

.stats-container {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 50px 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   Clients Section
   =================================== */


.client-logo-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

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

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

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


.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.contact-icon i {
    font-size: 28px;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.contact-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

/* Success Message */
.form-success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.form-success-message.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    font-size: 48px;
}

.success-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.success-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    width: 100%;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

.btn-submit {
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--text-dark);
}

/* ===================================
   Content Sections (Placeholders)
   =================================== */

.content-section {
    padding: 0;
    min-height: auto;
    margin-top: 30px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Devices */
@media (max-width: 1199px) {
    .hero-bg-text span {
        font-size: 100px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

/* Medium Devices */
@media (max-width: 991px) {
    .main-container {
        padding: 20px;
    }
    
    .sidebar-wrapper {
        position: relative;
        top: 0;
        height: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--sidebar-bg);
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul li {
        margin-bottom: 20px;
    }
    
    .nav-menu .nav-link {
        font-size: 16px;
    }
    
    .sidebar {
        padding: 30px 25px;
    }
    
    .hero-section {
        padding: 40px;
    }
    
    .section-content {
        padding: 40px;
    }
    
    .hero-bg-text span {
        font-size: 80px;
    }
    
    .profile-image {
        width: 240px;
        height: 240px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Small Devices */
@media (max-width: 767px) {
    .main-container {
        padding: 15px;
    }
    
    .sidebar {
        padding: 25px 20px;
    }
    
    .nav-menu {
        margin-top: 30px;
    }
    
    .nav-menu ul li {
        margin-bottom: 20px;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 30px;
    }
    
    .section-content {
        padding: 30px;
    }
    
    .hero-bg-text span {
        font-size: 60px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
        border-width: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .skills-progress {
        margin-top: 40px;
    }
    
    .circular-progress {
        width: 100px;
        height: 100px;
    }
    
    .circular-progress::before {
        width: 75px;
        height: 75px;
    }
    
    .progress-value {
        font-size: 18px;
    }
    
    .skill-title {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .portfolio-image {
        height: 350px;
    }
    
    .portfolio-title {
        font-size: 20px;
    }
    
    .filter-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .testimonial-content-wrapper {
        padding: 40px 45px;
    }
    
    .client-image {
        width: 85px;
        height: 85px;
    }
    
    .client-name {
        font-size: 24px;
    }
    
    .quote-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
    }
    
    .stats-container {
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .content-section {
        margin-top: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .hero-section {
        padding: 25px;
    }
    
    .section-content {
        padding: 25px;
    }
    
    .hero-bg-text span {
        font-size: 45px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .greeting {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .circular-progress {
        width: 85px;
        height: 85px;
    }
    
    .circular-progress::before {
        width: 65px;
        height: 65px;
    }
    
    .progress-value {
        font-size: 16px;
    }
    
    .skill-title {
        font-size: 14px;
    }
    
    .skill-title {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    .portfolio-title {
        font-size: 18px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .testimonial-content-wrapper {
        padding: 35px 30px;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .client-image {
        width: 75px;
        height: 75px;
    }
    
    .client-name {
        font-size: 22px;
    }
    
    .client-role {
        font-size: 14px;
    }
    
    .testimonial-text p {
        font-size: 15px;
    }
    
    .quote-icon {
        top: 30px;
        right: 30px;
    }
    
    .quote-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .stats-container {
        padding: 35px 25px;
    }
    
    .stat-item {
        padding: 15px 5px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .client-logo-card {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .client-logo-card img {
        max-height: 50px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 16px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 35px 30px;
    }
    
    .contact-form .form-control {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px 40px;
        font-size: 15px;
    }
    
    .form-success-message {
        padding: 50px 30px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon i {
        font-size: 40px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-text {
        font-size: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 25px;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        font-size: 14px;
    }
    
    .copyright-text {
        font-size: 14px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
    
    .loader-spinner {
        width: 100px;
        height: 100px;
    }
    
    .loader-text .logo-text {
        font-size: 28px;
    }
    
    .loading-text {
        font-size: 14px;
    }
}

/* ===================================
   Footer Section
   =================================== */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.footer-left {
    flex: 1;
}

.copyright-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.brand-name {
    color: var(--hover-color);
    font-weight: 500;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-links li {
    margin: 0;
}

.separator {
    color: var(--text-light);
    font-size: 14px;
}

.social-link {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}

/* ===================================
   Back to Top Button
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark) 100%);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ===================================
   Smooth Scrolling
   =================================== */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
