/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d3e 0%, #252952 50%, #1f2347 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: fadeInUp 0.8s ease;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo-icon-loader {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8787 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 90, 0.4);
}

.logo-icon-loader i {
    font-size: 2rem;
    color: white;
}

.logo-text-loader {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

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

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

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--highlight-color);
    animation-delay: 0.2s;
    animation-duration: 1.8s;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #60a5fa;
    animation-delay: 0.4s;
    animation-duration: 2.1s;
}

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

/* Loader Text */
.loader-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

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

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 50%, #60a5fa 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    animation: progressAnimation 2s ease-in-out forwards, gradientShift 1.5s ease infinite;
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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

/* Responsive Loader */
@media (max-width: 767px) {
    .logo-icon-loader {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon-loader i {
        font-size: 1.5rem;
    }
    
    .logo-text-loader {
        font-size: 2rem;
    }
    
    .loader-spinner {
        width: 100px;
        height: 100px;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .loader-text {
        font-size: 0.9rem;
    }
}

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

:root {
    --primary-bg: #1a1d3e;
    --secondary-bg: #252952;
    --accent-color: #ff6b5a;
    --accent-hover: #ff5242;
    --text-primary: #ffffff;
    --text-secondary: #9ca3c5;
    --text-muted: #7a82a8;
    --highlight-color: #9b8bf4;
}

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

body.loading {
    overflow: hidden;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(180deg, #1a1d3e 0%, #252952 50%, #1f2347 100%);
    background-image: url('../assets/images/hero_bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 80, 226, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(26, 29, 62, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

/* Navbar background when mobile menu is open */
.navbar.menu-open {
    background: rgba(26, 29, 62, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile menu expanded background */
.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    background: rgba(26, 29, 62, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8787 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.btn-hire {
    background: var(--accent-color);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 90, 0.25);
}

.btn-hire:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

/* ===================================
   Hero Content
   =================================== */
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 3rem;
}

.min-vh-90 {
    min-height: 80vh;
}

/* Left Side Info */
.hero-left-info {
    padding-left: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-bullet {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.info-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.info-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-email {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-email:hover {
    color: var(--accent-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(156, 163, 197, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Hero Image Container with Overlay */
.hero-image-container {
    position: relative;
    display: inline-block;
    /* max-width: 100%; */
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

/* Overlay Content on Image */
.hero-overlay-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.hero-name-overlay {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.name-highlight-overlay {
    color: var(--highlight-color);
}

.hero-cta-overlay {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-link-overlay {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link-overlay:hover {
    color: var(--accent-hover);
}

/* Right Side Stats */
.hero-stats {
    text-align: right;
    padding-right: 0;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

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

/* ===================================
   About Me Section
   =================================== */
.about-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

/* Left Side - Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-decoration-dots {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

/* Layered Images */
.about-images {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image-card {
    border-radius: 20px;
    overflow: hidden;
}

.back-card {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d3e 0%, #2d3154 100%);
    z-index: 1;
    border-radius: 20px;
}

.front-card {
    position: relative;
    z-index: 2;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.front-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Happy Clients Badge */
.happy-clients-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.badge-content {
    text-align: left;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Right Side - Content */
.about-content {
    padding-left: 2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.label-icon {
    color: #ffd93d;
    font-size: 1.2rem;
}

.about-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.highlight-coral {
    color: var(--accent-color);
}

.highlight-purple {
    color: #3b4de7;
}

/* Tabs */
.about-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.05em;
}

.tab-btn:hover {
    color: var(--accent-color);
    background: rgba(255, 107, 90, 0.05);
}

.tab-btn.active {
    color: var(--accent-color);
    background: rgba(255, 107, 90, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

/* Tab Content */
.tab-content-wrapper {
    margin-bottom: 2.5rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

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

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
}

.about-text strong {
    color: #1a1d3e;
    font-weight: 600;
}



/* Hire Me Button */
.btn-hire-about {
    background: var(--accent-color);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 90, 0.25);
    text-decoration: none;
    display: inline-block;
}

.btn-hire-about:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 90, 0.35);
    color: white;
}


/* ===================================
   Services Section
   =================================== */
.services-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.decorative-icon {
    position: absolute;
    top: -20px;
    right: 50px;
    font-size: 3rem;
    color: #8cc5ff;
    animation: rotate 10s linear infinite;
}

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

.section-label-services {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.services-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b4de7 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #3b4de7;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #3b4de7 0%, #5e72eb 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Service Content */
.service-content {
    flex: 1;
}

.service-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3c5;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d3e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-hover);
    gap: 0.75rem;
}

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

/* Progress Bar */
.service-progress {
    position: relative;
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: visible;
    margin-top: 1.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b4de7 0%, var(--accent-color) 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-label {
    position: absolute;
    right: 0;
    top: -22px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    background: linear-gradient(180deg, #0f1450 0%, #0f1668 50%, #0e144e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 80, 226, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Portfolio Header */
.portfolio-header {
    position: relative;
    z-index: 10;
}

.portfolio-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: 1rem;
    letter-spacing: -0.02em;
}

/* Portfolio Carousel */
.portfolio-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
}

.portfolioSwiper {
    width: 100%;
    height: 500px;
    padding: 1rem 3rem;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Portfolio Cards */
.portfolio-card {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

/* Portfolio Image */
.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Portfolio Content */
.portfolio-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(255, 107, 90, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.portfolio-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.portfolio-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    gap: 0.75rem;
}

.portfolio-link i {
    transition: transform 0.3s ease;
}

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

/* Swiper Navigation */
.portfolioSwiper .swiper-button-next,
.portfolioSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portfolioSwiper .swiper-button-next:hover,
.portfolioSwiper .swiper-button-prev:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.portfolioSwiper .swiper-button-next::after,
.portfolioSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.portfolioSwiper .swiper-button-next {
    right: 0;
}

.portfolioSwiper .swiper-button-prev {
    left: 0;
}

/* Swiper Pagination */
.portfolioSwiper .swiper-pagination {
    bottom: 0;
}

.portfolioSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolioSwiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

/* Testimonials Header */
.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.3;
    margin-top: 1rem;
    letter-spacing: -0.02em;
}

/* Testimonial Cards */
.testimonials-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.3rem;
    color: #3b4de7;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1d3e;
    margin: 0;
    line-height: 1.2;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Video Testimonial */
.video-testimonial {
    margin-bottom: 1.5rem;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

.play-button i {
    font-size: 1.8rem;
    color: #3b4de7;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.play-button:hover i {
    color: white;
}

/* Video Info */
.video-info {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.video-author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1d3e;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.video-author-title {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* ===================================
   Clients Section
   =================================== */
.clients-section {
    background: linear-gradient(180deg, #fef9f5 0%, #fff5eb 100%);
    padding: 100px 0;
    position: relative;
}

/* Clients Header */
.clients-header {
    padding-right: 2rem;
}

.clients-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.3;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.clients-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Client Cards */
.client-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.client-card:hover::before {
    opacity: 0.05;
}

/* Client Logo Container */
.client-logo {
    width: 100%;
    height: 120px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.client-logo i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.4s ease;
}

.client-name-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.client-card:hover .client-logo {
    transform: scale(1.05);
}

.client-card:hover .client-logo i {
    transform: scale(1.1) rotate(5deg);
}

/* Client Name Below Card */
.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Background Colors for Cards */
.bg-navy .client-logo {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.bg-navy::before {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.bg-green .client-logo {
    background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
}

.bg-green::before {
    background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
}

.bg-peach .client-logo {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.bg-peach::before {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.bg-teal .client-logo {
    background: linear-gradient(135deg, #5eead4 0%, #14b8a6 100%);
}

.bg-teal::before {
    background: linear-gradient(135deg, #5eead4 0%, #14b8a6 100%);
}

.bg-pink .client-logo {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
}

.bg-pink::before {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
}

.bg-yellow .client-logo {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
}

.bg-yellow::before {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
}

/* ===================================
   Education & Skills Section
   =================================== */
.education-skills-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

/* Section Main Heading */
.section-main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Hire Me Secondary Button */
.btn-hire-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hire-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 90, 0.3);
}

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

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

/* Column Headings */
.column-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1d3e;
    margin-bottom: 2.5rem;
}

/* Education Timeline */
.education-timeline {
    position: relative;
    padding-left: 1rem;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    border-left: 2px dashed var(--accent-color);
}

.education-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

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

/* Education Icon */
.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b5a 0%, #ff8a7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 90, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.education-icon i {
    font-size: 1.5rem;
    color: white;
}

.education-item:hover .education-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Education Content */
.education-content {
    flex: 1;
    padding-top: 0.5rem;
}

.education-university {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
}

.education-degree {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1d3e;
    margin: 0;
    line-height: 1.4;
}

/* Skills List */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-item {
    position: relative;
}

/* Skill Header */
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1d3e;
}

.skill-percentage {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
}

/* Skill Bar */
.skill-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b4de7 0%, #5e72eb 100%);
    border-radius: 10px;
    transition: width 1.5s ease-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
    background: linear-gradient(180deg, #0f1450 0%, #0f1668 50%, #0e144e 100%);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 80, 226, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Footer Heading */
.footer-heading {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.highlight-purple {
    color: #9b8bf4;
}

/* Let's Talk Button */
.btn-lets-talk {
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 90, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-lets-talk:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 90, 0.4);
    color: white;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.copyright-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

/* Contact Info */
.contact-info-wrapper {
    padding-right: 2rem;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d3e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Contact Details */
.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8a7a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 90, 0.3);
}

.detail-icon i {
    font-size: 1.2rem;
    color: white;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1d3e;
    margin-bottom: 0.25rem;
}

.detail-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Contact Social */
.contact-social {
    margin-top: 3rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1d3e;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1d3e;
    margin-bottom: 0.75rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1a1d3e;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 90, 0.1);
}

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

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

/* Error Messages */
.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8a7a 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 90, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 90, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form Message */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8a7a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 90, 0.5);
}

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

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

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


/* ===================================
   Video Modal
   =================================== */
#videoModal .modal-content {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

#videoModal .modal-header {
    padding: 1rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1050;
}

#videoModal .btn-close {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

#videoModal .modal-body {
    background: #000;
}

#videoModal iframe {
    width: 100%;
    height: 100%;
}



/* Large Devices */
@media (max-width: 1199px) {
    .hero-name {
        font-size: 4rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }

    .hero-name-overlay{
        font-size: 2.5rem;
    }
}

/* Responsive Navigation for Larger Screens */
@media (min-width: 992px) and (max-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem !important;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
  .hero-image-container{
            position: absolute;
            top: 0;
            right: 10px;
            width: 700px;
    }

     .hero-section{
        height: 100vh;
    }

    .hero-overlay-content{
        bottom: -5%;
    }
}

/* Medium Devices */
@media (max-width: 991px) {

      .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-heading {
        font-size: 2.5rem;
    }
    
    .about-image-wrapper {
        padding: 1rem;
    }
    
    .back-card {
        top: -20px;
        left: -20px;
    }

      .services-heading {
        font-size: 2.5rem;
    }
    
    .decorative-icon {
        left: 20px;
        font-size: 2.5rem;
    }

     .portfolio-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .portfolio-header {
        text-align: center;
    }
    
    .portfolioSwiper {
        height: 450px;
        padding: 1rem 2rem;
    }
    
    .portfolio-card {
        height: 400px;
    }

      .testimonials-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .video-wrapper {
        height: 300px;
    }

     .clients-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .clients-header {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .clients-description {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-left-info,
    .hero-stats {
        text-align: center;
        padding: 0;
    }
    
    .hero-stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 3rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
        margin-bottom: 2rem !important;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-name {
        font-size: 3.5rem;
    }
    
    .hero-name-overlay {
        font-size: 3rem;
    }

       .section-main-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .column-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .education-timeline {
        padding-left: 0;
    }
    
    .education-timeline::before {
        left: 25px;
    }

    .footer-heading {
        font-size: 3rem;
        text-align: center;
    }

      .contact-heading {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .contact-description {
        text-align: center;
    }
    
    .contact-info-wrapper {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-detail-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Small Devices */
@media (max-width: 767px) {

    .detail-content{
        text-align: start;
    }

      .about-section {
        padding: 60px 0;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .happy-clients-badge {
        padding: 0.8rem 1.5rem;
        bottom: 20px;
    }
    
    .badge-number {
        font-size: 1.3rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }

      .services-section {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-heading {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .decorative-icon {
        display: none;
    }

      .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-heading {
        font-size: 2rem;
    }
    
    .portfolioSwiper {
        height: 400px;
        padding: 1rem;
    }
    
    .portfolio-card {
        height: 350px;
    }
    
    .portfolio-title {
        font-size: 1.5rem;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolioSwiper .swiper-button-next,
    .portfolioSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .portfolioSwiper .swiper-button-next::after,
    .portfolioSwiper .swiper-button-prev::after {
        font-size: 1rem;
    }
       .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-heading {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .video-wrapper {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.4rem;
    }

     .clients-section {
        padding: 60px 0;
    }
    
    .clients-heading {
        font-size: 2rem;
    }
    
    .clients-grid {
        gap: 1rem;
    }
    
    .client-card {
        padding: 2rem 1rem 1rem;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .client-logo i {
        font-size: 2rem;
    }
    
    .client-name-logo {
        font-size: 1.2rem;
    }

    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-name-overlay {
        font-size: 2.5rem;
    }
    
    .hero-cta-overlay {
        font-size: 0.9rem;
    }
    
    .hero-overlay-content {
        bottom: 10%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .btn-hire {
        margin-top: 1rem;
        width: 100%;
    }
    
    /* Ensure mobile menu has background even when not scrolled */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: rgba(26, 29, 62, 0.98) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .education-skills-section {
        padding: 60px 0;
    }
    
    .section-main-heading {
        font-size: 2rem;
    }
    
    .column-heading {
        font-size: 1.5rem;
    }
    
    .education-icon {
        width: 50px;
        height: 50px;
    }
    
    .education-icon i {
        font-size: 1.2rem;
    }
    
    .education-degree {
        font-size: 1.1rem;
    }
    
    .skill-name {
        font-size: 1rem;
    }
    
    .btn-hire-secondary {
        width: 100%;
        justify-content: center;
    }

     .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-heading {
        font-size: 2.5rem;
    }
    
    .btn-lets-talk {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }

       .contact-section {
        padding: 60px 0;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

        .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {

    .hero-image-container{
        border-bottom: 5px solid var(--accent-color)
    }

       .about-heading {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .btn-hire-about {
        width: 100%;
        text-align: center;
    }

      .services-heading {
        font-size: 1.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
       .portfolio-heading {
        font-size: 1.75rem;
    }
    
    .portfolioSwiper {
        height: 350px;
    }
    
    .portfolio-card {
        height: 300px;
    }
    
    .portfolio-title {
        font-size: 1.3rem;
    }
    
    .portfolio-description {
        font-size: 0.85rem;
    }
    
    .portfolio-link {
        font-size: 0.75rem;
    }
    
    .project-category {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

     .testimonials-heading {
        font-size: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
    
    .video-author-name {
        font-size: 1.1rem;
    }

     .clients-heading {
        font-size: 1.75rem;
    }
    
    .clients-description {
        font-size: 0.95rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .client-card {
        padding: 1.5rem 1rem 1rem;
    }
    
    .client-logo {
        height: 90px;
    }

    .hero-name {
        font-size: 2rem;
    }
    
    .hero-name-overlay {
        font-size: 1.8rem;
    }
    
    .hero-cta-overlay {
        font-size: 0.85rem;
    }
    
    .hero-overlay-content {
        bottom: 8%;
        width: 95%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        font-size: 0.95rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

      .section-main-heading {
        font-size: 1.75rem;
    }
    
    .column-heading {
        font-size: 1.3rem;
    }
    
    .education-item {
        gap: 1rem;
    }
    
    .education-degree {
        font-size: 1rem;
    }
    
    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

        .footer-heading {
        font-size: 2rem;
    }
    
    .btn-lets-talk {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }

        .contact-heading {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .detail-icon {
        width: 45px;
        height: 45px;
    }
}





