/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.spinner {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.dot1, .dot2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2.0s infinite ease-in-out;
}

.dot2 {
    animation-delay: -1.0s;
}

@keyframes bounce {
    0%, 100% { 
        transform: scale(0.0);
    } 
    50% { 
        transform: scale(1.0);
    }
}

.loader-text {
    margin-top: 20px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.loaded #page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Main Styles Start Here */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-5px);
    color: white;
}

/* ===== GENERAL STYLES ===== */
:root {
    /* Light Mode (Default) */
    --primary-color: #0066ff;
    --primary-color-rgb: 0, 102, 255;
    --primary-color-dark: #0066ff9c;
    --secondary-color: #333333;
    --text-color: #121212;
    --light-color: #ffffff;
    --dark-color: #222222;
    --gray-color: #f8f9fa;
    --border-color: #bebebe;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --banner-overlay: rgba(0, 0, 0, 0.7);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --timeline-color: #eeeeee;
    --tab-hover: #f8f9fa;
    --muted-color: #555555;
    --card-background: #ffffff;
    --section-bg: #eef2f7;
    --highlight-bg: rgba(0, 102, 255, 0.08);
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #0066ff;
    --primary-color-rgb: 77, 94, 255;
    --primary-color-dark: #0066ff9c;
    --secondary-color: #ffffff;
    --text-color: #f7f7f7;
    --light-color: #333333;
    --dark-color: #f0f0f0;
    --gray-color: #2a2a2a;
    --border-color: #444444;
    --bg-color: #060606;
    --card-bg: #1a1a1a;
    --banner-overlay: rgba(0, 0, 0, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --timeline-color: #444444;
    --tab-hover: #2a2a2a;
    --muted-color: #aaaaaa;
    --card-background: #1a1a1a;
    --section-bg: #0d0d0d;
    --highlight-bg: rgba(77, 94, 255, 0.15);
}

/* Navigation and sidebar */
[data-theme="light"] .sidebar {
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-menu ul li a {
    color: var(--dark-text);
}

[data-theme="light"] .nav-menu ul li a:hover {
    background-color: var(--light-highlight-bg);
    color: var(--primary-color);
}

/* Social icons */
[data-theme="light"] .social-icons a {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--dark-text);
}

[data-theme="light"] .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Cards and sections */
[data-theme="light"] .feature-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

[data-theme="light"] .feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

[data-theme="light"] .feature-number {
    color: var(--primary-color);
}

[data-theme="light"] .portfolio-section,
[data-theme="light"] .clients-section,
[data-theme="light"] .contact-section {
    background-color: var(--light-section-bg);
}

[data-theme="light"] .portfolio-item {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .portfolio-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .resume-item {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .resume-line {
    background-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .pricing-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .pricing-card.featured {
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

/* Footer */
[data-theme="light"] .footer {
    background-color: #e9ecef;
    color: var(--dark-text);
}

[data-theme="light"] .footer .copyright {
    color: var(--light-text-muted);
}

/* Form elements */
[data-theme="light"] .form-control {
    background-color: white;
    border: 1px solid var(--border-light);
    color: var(--dark-text);
}

[data-theme="light"] .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}



body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1 {
    font-size: 30px;
    color: var(--text-color);
    font-weight: 700;
}

h2 {
    font-size: 24px;
    color: var(--text-color);
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

p {
    color: var(--muted-color);
}

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

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* background-color: var(--bg-color); */
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

#sidebar-toggle {
    background: var(--card-background);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.menu-open .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

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

/* Sidebar Styles */
.sidebar {
    background: linear-gradient(0deg,rgba(13, 28, 143, 0.93) 0%, rgba(18, 18, 18, 1) 38%);
    height: 100vh;
    position: fixed;
    padding: 40px 20px;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    width: 16.666667%;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
     scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;  
}

[data-theme="light"] .sidebar {
    background: linear-gradient(0deg, rgb(51, 98, 255) 0%, rgba(245, 245, 245, 1) 38%);
}

.profile-image {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--primary-color);
}

.nav-menu {
    margin-bottom: 30px;
}

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

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

.nav-menu ul li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-menu ul li a i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.nav-menu ul li.active a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.nav-menu ul li.active a i {
    color: #ffffff;
}

.nav-menu ul li a:hover {
    background-color: rgba(0, 89, 255, 0.1);
}

.social-links {
    margin-top: auto;
    padding: 0 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* Theme Toggle */
.theme-toggle-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-background);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.3);
}

.theme-toggle .dark-icon,
.theme-toggle .light-icon {
    position: absolute;
    font-size: 20px;
    transition: all 0.3s ease;
}

.theme-toggle .dark-icon {
    opacity: 0;
    transform: translateY(20px);
}

.theme-toggle .light-icon {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-color);
}

[data-theme="light"] .theme-toggle .dark-icon {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-color);
}

[data-theme="light"] .theme-toggle .light-icon {
    opacity: 0;
    transform: translateY(-20px);
}

.social-links h6 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;

}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;

}

.social-icons a:hover {
    background-color: var(--primary-color);
}

/* Container and Row Overrides */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    overflow-x: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}

/* Main Content Styles */
.main-content {
    margin-left: 16.666667%;
    width: 83.333333%;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    overflow-x: hidden;
    max-width: 83.333333%;
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Features Section */
.features-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

/* Resume Section (Education & Experience) */
.resume-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

/* Clients Section */
.clients-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-color);
    padding: 50px 0;
}

.pricing-section .pricing-header {
    margin-bottom: 60px;
}

.pricing-section .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.pricing-section .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.pricing-toggle-label {
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.pricing-toggle-label.active {
    color: var(--text-light);
    font-weight: 600;
}

/* Switch Container */
.switch-container {
    position: relative;
    width: 80px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50px;
    box-shadow:
        inset -4px -4px 8px rgba(255, 255, 255, 0.05),
        inset 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hidden Checkbox */
.toggle-checkbox {
    display: none;
}

/* Switch Label (Interactive Area) */
.switch {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}

/* Toggle Button */
.toggle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(145deg, #222, #181818);
    border-radius: 50px;
    top: 5px;
    left: 5px;
    box-shadow:
        -2px -2px 4px rgba(255, 255, 255, 0.05),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LED Light */
.led {
    width: 6px;
    height: 6px;
    background: #555;
    border-radius: 50%;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Active State for Toggle (ON) */
.toggle-checkbox:checked + .switch .toggle {
    left: 45px;
    background: linear-gradient(145deg, #222, #181818);
    box-shadow:
        -2px -2px 4px rgba(255, 255, 255, 0.05),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-checkbox:checked + .switch .led {
    background: var(--primary-color);
    box-shadow: 0 0 10px 2px var(--primary-color);
}

/* Hover Effect */
.switch:hover .toggle {
    box-shadow:
        -2px -2px 6px rgba(255, 255, 255, 0.05),
        2px 2px 6px rgba(0, 0, 0, 0.5);
}

.pricing-plans {
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.pricing-card.starter {
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
    background-color: var(--card-background);
    position: relative;
}

.pricing-card.starter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.pricing-card.basic {
    border: none;
    background-color: var(--card-background);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.pricing-card.premium {
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
    background-color: var(--card-background);
    position: relative;
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

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

.pricing-card .plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.pricing-card .price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.pricing-card .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-card .billing-cycle {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.feature-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
}

.pricing-footer {
    margin-top: auto;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-get-started i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover {
    background-color: rgba(0, 26, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-get-started.highlighted {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-get-started.highlighted:hover {
    background-color: var(--primary-color-dark);
}
@media (max-width: 1400px) {
.profile-image img{
    height: 160px;
}
}
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .contact-inner{
        padding: 80px 5px !important;
    }
    
    .pricing-card.basic {
        transform: translateY(0);
    }
}

.contact-inner {
    background-color: var(--card-background);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgb(142 142 142 / 10%);

}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-right: 30px;
}

.contact-info .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}

.contact-info .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-color);
}

.contact-info .description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-form {
    background-color: #151515;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.form-control::placeholder {
    color: #666;
}

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

.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn-appointment i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-appointment:hover {
    background-color: var(--primary-color-dark);
}

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

/* Footer Section */
.footer-section {
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    color: var(--text-color);
    text-transform: uppercase;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.copyright {
    margin-top: 10px;
}

.copyright p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.copyright a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mobile-header {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 999;
    }
    
    .sidebar.active {
        transform: translateX(0);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-content {
        width: 100%;
        margin-left: 0;
    }
    
    .col-lg-10.main-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #page-loader {
        z-index: 1001;
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

.clients-header .title {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-item {
    background-color: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(97, 97, 97, 0.082);

}

.client-item:hover {
    background-color: #222222;
}

.client-logo {
    max-width: 120px;
    max-height: 40px;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

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

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

    .hero-content h1 {
        font-size: 50px !important;
    }

    .hero-content h2 {
        font-size: 40px !important;
    }
}

.resume-header {
    margin-bottom: 60px;
}

.resume-header .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.resume-header .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.resume-header .description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.resume-content {
    margin-top: 60px;
}

.resume-content .col-lg-6 {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}

.resume-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.resume-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    margin-right: 20px;
    color: var(--text-color);
}

.resume-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.resume-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgb(142 142 142 / 10%);
}

.resume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.resume-card:hover::before {
    height: 100%;
}

.resume-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.resume-card:hover h4 {
    color: var(--primary-color);
}

.resume-year {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.resume-year::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--border-color);
    transition: all 0.3s ease;
}

.resume-card:hover .resume-year::after {
    width: 50px;
    background-color: var(--primary-color);
}

.resume-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Experience section specific styles */
.experience-content {
    margin-top: 80px;
}

.experience-item {
    margin-bottom: 40px;
}

.experience-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.experience-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.experience-role {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.experience-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.experience-image {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

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

.portfolio-header {
    margin-bottom: 60px;
}

.portfolio-header .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.portfolio-header .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.portfolio-header .description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-items {
    margin-top: 40px;
}

.portfolio-item {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgb(142 142 142 / 10%);

}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.portfolio-content {
    padding: 25px 30px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-category {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    display: block;
}

.portfolio-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

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

.portfolio-link:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-color);
}
/* 
.features-section .row {
    margin-left: -20px;
    margin-right: -20px;
} */

.features-section .col-lg-6 {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    border-left: 2px solid var(--primary-color);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-number {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.feature-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 100px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 90px;
    color: white;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Typed text animation */
#typed-text {
    color: var(--primary-color);
    font-weight: 700;
    min-width: 10px;
    display: inline-block;
}

/* Cursor animation */
.cursor {
    color: var(--primary-color);
    font-weight: 700;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

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

/* Hero CTA and social icons */
.hero-cta {
    margin-bottom: 30px;
}

.hero-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-cta {
    margin-bottom: 30px;
}

.btn-contact {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
}

.hero-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;

}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .main-content {
        margin-left: 0;
    }

    .hero-banner{
        height: 60vh;
    }
    .hero-section{
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 70px;
    }

    .hero-content h2 {
        font-size: 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Animation dots */
.animated-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}
