/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #373B40;
    --dark-bg: #2d3139;
    --accent-cyan: #00d4bd;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

body.loading {
    overflow: hidden;
}

/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d3139 0%, #1a1d23 100%);
    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;
    animation: fadeInScale 0.6s ease-out;
}

.loader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.loader-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 212, 189, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

/* Spinner Rings */
.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top-color: var(--accent-cyan);
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    border-right-color: var(--accent-cyan);
    animation: spin 2s linear infinite reverse;
    opacity: 0.7;
}

.spinner-ring:nth-child(3) {
    width: 80px;
    height: 80px;
    border-bottom-color: var(--accent-cyan);
    animation: spin 2.5s linear infinite;
    opacity: 0.5;
}

/* Loading Text */
.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.loading-word {
    display: inline-block;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loading-dots {
    display: inline-block;
}

.loading-dots .dot {
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Progress Bar */
.loader-progress {
    width: 250px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4bd 0%, #00a896 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 189, 0.5);
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Loader Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 189, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 189, 0.8));
    }
}

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

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

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        box-shadow: 0 0 10px rgba(0, 212, 189, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 189, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 212, 189, 0.5);
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1.5rem 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar .container-fluid {
    max-width: 95%;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    background-color: #585D65;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background-color: rgba(45, 49, 57, 1);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
}

.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-gray);
}

/* Logo Styles */
.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 189, 0.1) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 189, 0.2);
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #00d4bd, #00a896);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::before {
    opacity: 1;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 189, 0.3);
    background: linear-gradient(135deg, rgba(0, 212, 189, 0.15) 0%, rgba(0, 168, 150, 0.1) 100%);
}

.logo-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 189, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 212, 189, 0.5));
    transform: scale(1.05);
}

/* Navbar Menu Container - Capsule Style */
.navbar-collapse {
    background-color: #585D65;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-cyan);
    background-color: rgba(0, 212, 189, 0.1);
}

.navbar-nav .nav-link i {
    font-size: 0.6rem;
}

.btn-download {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.btn-download:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding-top: 100px;
    position: relative;
    padding-bottom: 0;
}

/* Fixed Image Column */
.hero-image-col {
    width: 41.666667%; /* Bootstrap col-lg-5 */
    z-index: 1;
    top: 0;
    left: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 49, 57, 0.3) 0%, rgba(63, 68, 81, 0.5) 100%);
}

/* Scrollable Content Column */
.hero-content-col {
    margin-left: 41.666667%; /* Same as col-lg-5 width */
}

.hero-content {
    padding: 8rem 4rem;
    max-width: 700px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-contact {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Fixed Social Icons Column */
.social-col {
    width: 8.333333%; /* Bootstrap col-lg-1 */
    z-index: 2;
    top: 0;
    right: 0;
}

.social-icons-wrapper {
    gap: 1.5rem;
    height: 100vh;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* ===================================
   Main Content Wrapper
   =================================== */
.main-content-wrapper {
    position: relative;
    z-index: 0;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background-color: var(--primary-bg);
}

.about-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.about-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.about-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.about-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* About Text Content */
.about-text {
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-description-full {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 0;
    margin-top: 2rem;
    font-weight: 300;
}

/* About Info Section */
.about-info {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: baseline;
}

.info-label {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 120px;
    margin-right: 1rem;
}

.info-value {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 400;
}

/* ===================================
   Services Section
   =================================== */
.services-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.services-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.services-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.services-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    margin-top: 3rem;
}

.service-card {
    padding: 0;
    margin-bottom: 3rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===================================
   Pricing Section
   =================================== */

.pricing-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.pricing-header-left {
    flex: 1;
}

.pricing-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.pricing-badge {
    display: inline-block;
}

.pricing-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header-right {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.pricing-nav-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
}

/* Pricing Cards */
.pricing-cards-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.pricing-card {
    flex: 0 0 calc(50% - 1rem);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem 0.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.pricing-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

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

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-white);
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: center;
}

.plan-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    position: relative;
}

.feature-active {
    color: var(--text-white);
    font-weight: 400;
}

.feature-inactive {
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.5;
}

.feature-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.new-badge {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: lowercase;
}

.btn-buy {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ===================================
   Experience Section
   =================================== */

.experience-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.experience-header-left {
    flex: 1;
}

.experience-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.experience-badge {
    display: inline-block;
}

.experience-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.experience-header-right {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.exp-nav-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
}

/* Experience Cards */
.experience-cards-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
}

.experience-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.experience-card {
    flex: 0 0 calc(50% - 1rem);
    padding: 0;
}

.exp-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    float: left;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.exp-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.exp-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===================================
   Education Section
   =================================== */
.education-section {
    background-color: var(--primary-bg);
    padding: 5rem 0;
}

.education-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.education-header-left {
    flex: 1;
}

.education-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.education-badge {
    display: inline-block;
}

.education-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.education-header-right {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.edu-nav-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
}

/* Education Cards */
.education-cards-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
}

.education-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.education-card {
    flex: 0 0 calc(50% - 1rem);
    padding: 0;
}

.edu-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    float: left;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.edu-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.edu-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===================================
   Language Skills Section
   =================================== */

.skills-content {
padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.skills-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.skills-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.skills-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Skills Grid */
.skills-grid {
    margin-top: 3rem;
}

.skill-item {
    margin-bottom: 3rem;
}

.skill-name {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.skill-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Skill Dots Progress Indicator */
.skill-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-cyan);
}

/* ===================================
   Coding Skills Section
   =================================== */

.coding-skills-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.coding-skills-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.coding-skills-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.coding-skills-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Coding Skills Grid */
.coding-skills-grid {
    margin-top: 3rem;
}

.coding-skill-item {
    margin-bottom: 3rem;
    text-align: center;
}

/* Circular Progress Bar - Improved Method */
.circular-progress {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 10;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    pointer-events: none;
}

.coding-skill-name {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.coding-skill-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===================================
   Reviews Section
   =================================== */

.reviews-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.reviews-header-left {
    flex: 1;
}

.reviews-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.reviews-badge {
    display: inline-block;
}

.reviews-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.reviews-header-right {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.review-nav-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
}

/* Reviews Cards */
.reviews-cards-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
}

.reviews-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(50% - 1rem);
    padding: 0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.reviewer-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
    margin: 0;
}

.review-quote {
    position: relative;
    padding-left: 2.5rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--accent-cyan);
    opacity: 0.3;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin: 0;
    font-weight: 300;
}

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

.clients-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.clients-header-left {
    flex: 1;
}

.clients-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.clients-badge {
    display: inline-block;
}

.clients-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.clients-header-right {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.client-nav-btn:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
}

/* Client Logos */
.clients-logos-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
}

.clients-logos {
    display: flex;
    gap: 3rem;
    transition: transform 0.5s ease;
    align-items: center;
}

.client-logo {
    flex: 0 0 calc(25% - 2.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.logo-text,
.logo-vintage {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.logo-script {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.portfolio-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.portfolio-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.portfolio-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--accent-cyan);
}

.filter-btn.active::after {
    width: 100%;
}

/* Portfolio Grid */
.portfolio-grid {
    margin-top: 3rem;
}

.portfolio-item {
    transition: all 0.3s ease;
}

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

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 212, 189, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-link:hover {
    transform: scale(1.1);
    color: var(--dark-bg);
}

.portfolio-info {
    padding: 1.5rem 0;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-project-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

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

.contact-content {
    padding: 3rem 0 3rem 3rem;
    max-width: 900px;
}

.contact-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.contact-badge {
    display: inline-block;
    margin-bottom: 3rem;
}

.contact-badge .badge-text {
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-wrapper {
    margin-top: 3rem;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 189, 0.1) 0%, rgba(0, 168, 150, 0.05) 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: slideInUp 0.5s ease-out;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.success-icon i {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 189, 0.4));
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    animation: slideInUp 0.5s ease-out 0.3s both;
}

.success-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    animation: slideInUp 0.5s ease-out 0.4s both;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Form */
.contact-form {
    transition: opacity 0.3s ease;
}

.contact-form.hide {
    display: none;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-send {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-send:hover {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Contact Info Card */
.contact-info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.contact-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    margin-bottom: 1.2rem;
    align-items: baseline;
}

.detail-label {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.detail-value {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 400;
}

.contact-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: var(--text-white);
    font-style: italic;
    text-align: left;
}

/* ===================================
   Placeholder Section
   =================================== */
.placeholder-section {
    min-height: 100vh;
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.placeholder-content {
    padding: 4rem 2rem;
    text-align: center;
}

.placeholder-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.placeholder-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 189, 0.3);
}

.back-to-top:hover {
    background-color: var(--text-white);
    color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 212, 189, 0.5);
}

.back-to-top.show {
    display: flex;
}

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

/* Large Devices (Desktops, 992px and up) */
@media (max-width: 1199px) {
    /* Remove fixed positioning on smaller screens */
    .hero-image-col,
    .social-col {
        position: relative !important;
        width: 100% !important;
    }
    
    .hero-content-col {
        margin-left: 0 !important;
        padding-right: 15px !important;
        offset: 0 !important;
    }
    
    /* Wider content area for all sections */
    .col-lg-6.offset-lg-5 {
        width: 100% !important;
        margin-left: 0 !important;
        max-width: 100% !important;
    }
    
    .hero-content,
    .about-content,
    .services-content,
    .pricing-content,
    .experience-content,
    .education-content,
    .skills-content,
    .coding-skills-content,
    .reviews-content,
    .clients-content,
    .portfolio-content,
    .contact-content {
        max-width: 100%;
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .social-icons-wrapper {
        flex-direction: row !important;
        justify-content: center;
        padding: 2rem 0;
        height: auto !important;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    /* Remove fixed positioning on smaller screens */
    .hero-image-col,
    .social-col {
        position: relative !important;
        width: 100% !important;
    }
    
    .hero-content-col,
    .about-section .col-lg-6 {
        margin-left: 0 !important;
        padding-right: 15px !important;
        offset: 0 !important;
    }
    
    .hero-section {
        padding-top: 10px;
    }
    
    .hero-image-wrapper {
        height: 800px;
    }
    
    .hero-content,
    .about-content,
    .services-content,
    .pricing-content,
    .experience-content,
    .education-content,
    .skills-content,
    .coding-skills-content {
        padding: 3rem 2rem;
    }
    
    .hero-title,
    .about-title,
    .services-title,
    .pricing-title,
    .experience-title,
    .education-title,
    .skills-title,
    .coding-skills-title {
        font-size: 3.5rem;
    }
    
    .pricing-card,
    .experience-card,
    .education-card {
        flex: 0 0 100%;
    }
    
    .pricing-header,
    .experience-header,
    .education-header,
    .reviews-header,
    .clients-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-header-right,
    .experience-header-right,
    .education-header-right,
    .reviews-header-right,
    .clients-header-right {
        margin-top: 0;
    }
    
    .review-card,
    .client-logo {
        flex: 0 0 100%;
    }
    
    .social-icons-wrapper {
        flex-direction: row !important;
        justify-content: center;
        padding: 2rem 0;
        height: auto !important;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-brand {
        padding: 0.6rem 1.2rem;
    }
    
    .navbar-collapse {
        margin-left: 0;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
        gap: 0.3rem;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.7rem 1rem;
        text-align: center;
    }
    
    .btn-download {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Small Devices (Phones, less than 768px) */
@media (max-width: 767px) {
    .hero-title,
    .about-title,
    .services-title,
    .pricing-title,
    .experience-title,
    .education-title,
    .skills-title,
    .coding-skills-title {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .about-content,
    .services-content,
    .pricing-content,
    .experience-content,
    .education-content,
    .skills-content,
    .coding-skills-content {
        padding: 2rem 1.5rem;
    }
    
    .skill-name,
    .coding-skill-name {
        font-size: 1.3rem;
    }

    .contact-form {
    margin-bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .circular-progress {
        width: 120px;
        height: 120px;
    }
    
    .progress-text {
        font-size: 1.5rem;
    }
    
    .coding-skill-name {
        font-size: 1.2rem;
    }
    
    .coding-skill-description {
        font-size: 0.9rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .pricing-nav-btn,
    .exp-nav-btn,
    .edu-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .exp-title,
    .edu-title {
        font-size: 1.3rem;
    }
    
    .hero-description,
    .about-description,
    .about-description-full,
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .hero-image-wrapper {
        height: 600px;
    }
    
    .btn-contact {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .info-label {
        min-width: 100px;
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
    
    .placeholder-content h2 {
        font-size: 2rem;
    }
    
    .placeholder-content p {
        font-size: 1rem;
    }
}

/* Extra Small Devices (Very small phones, less than 576px) */
@media (max-width: 575px) {
    .hero-title,
    .about-title,
    .services-title,
    .pricing-title,
    .experience-title,
    .education-title,
    .skills-title,
    .coding-skills-title {
        font-size: 2rem;
    }
    
    .hero-content,
    .about-content,
    .services-content,
    .pricing-content,
    .experience-content,
    .education-content,
    .skills-content,
    .coding-skills-content {
        padding: 1.5rem 1rem;
    }
    
    .skill-name,
    .coding-skill-name {
        font-size: 1.2rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        gap: 0.4rem;
    }
    
    .circular-progress {
        width: 110px;
        height: 110px;
    }
    
    .progress-text {
        font-size: 1.3rem;
    }
    
    .coding-skill-name {
        font-size: 1.1rem;
    }
    
    .coding-skill-description {
        font-size: 0.85rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-nav-btn,
    .exp-nav-btn,
    .edu-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .exp-title,
    .edu-title {
        font-size: 1.2rem;
    }
    
    .hero-description,
    .about-description,
    .about-description-full,
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .btn-download {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .info-label {
        min-width: 90px;
        font-size: 0.75rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
}

/* ===================================
   Smooth Scrolling & Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-badge {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.btn-contact {
    animation-delay: 0.8s;
}
