/*  color Styles */
        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #777;
            --white: #fff;
            --black: #000;
             --primary: #4f46e5;
             --primary: #4f46e5;   /* Example primary color */
            --secondary: #06b6d4; /* Example secondary color */
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        

 body {
         font-family: 'iter';
         /*font-family: 'Poppins', 'Quicksand', 'Comic Neue', 'Arial', sans-serif;*/
        line-height: 1.6;
        color: var(--dark);
        overflow-x: hidden;
    }
    

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--dark-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color:#0066ff;
        }


 .btn {
            display: inline-block;
            padding: 12px 30px;
            /* background: var(--primary); */
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
        }

 .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
        }
        

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.highlight {
    color: var(--primary-color);
}
/* Enhanced Hero Section */
.hero-section {
    /*padding: 120px 0 100px;*/
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    margin: 0 auto;
}

/* Hero Content */
.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-icon {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e293b;
}

.title-text {
    display: inline-block;
    animation: slideInLeft 0.8s ease-out;
}

.highlight {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
    /*position: relative;*/
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.1));
    z-index: -1;
    border-radius: 4px;
}

/* Hero Role */
.hero-role-wrapper {
    margin-bottom: 30px;
}

.hero-role {
    font-size: 1.4rem;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.role-text {
    position: relative;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.role-separator {
    color: #94a3b8;
    font-weight: 300;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    max-width: 600px;
}

.text-emphasis {
    color: #1e293b;
    font-weight: 600;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #2563eb;
}

.tech-badge i {
    font-size: 1.1rem;
}

.tech-badge:nth-child(1) i { color: #e34c26; } /* HTML5 */
.tech-badge:nth-child(2) i { color: #264de4; } /* CSS3 */
.tech-badge:nth-child(3) i { color: #f0db4f; } /* JavaScript */
.tech-badge:nth-child(4) i { color: #61dafb; } /* React */
.tech-badge:nth-child(5) i { color: #42b883; } /* Vue.js */

/* Welcome Message */
.welcome-message {
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.welcome-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.welcome-text {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-ghost {
    background: transparent;
    color: #0068fd;
}

.btn-ghost:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image {
    flex: 1;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.image-container {
    position: relative;
    display: inline-block;
}

.main-image {
    width: 88%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /*border: 10px solid white;*/
}

.main-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #2563eb;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -25px;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 40px;
    left: -15px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Image Badge */
.image-badge {
    position: absolute;
    /*bottom: 40px;*/
    right: -30px;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-text {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-text {
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #2563eb, transparent);
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-role {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .main-image {
        max-width: 270px;
        transform: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .image-badge {
        /*right: 70%;*/
        transform: translateX(50%);
        bottom: -36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-role {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-role {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .role-separator {
        display: none;
    }
    
    .tech-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .welcome-message {
        padding: 20px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
}


/* Media Queries */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse; /* Image below text */
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    padding: 50px 15px;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-content h2 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-content .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}





        /* Section Styles */
        section {
            padding:50px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
             text-align: center;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-info div h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.about-info div p {
    margin: 0;
    font-weight: 600;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}




/* Skills Section */
 /* Skills Section */
        .skills-content {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .col-six {
            flex: 1;
            min-width: 300px;
        }
        
        .skill-bars {
            list-style: none;
        }
        
        .skill-bars li {
            margin-bottom: 25px;
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .skill-name i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .progress {
            height: 10px;
            background: #e2e8f0;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            position: relative;
        }
        
        .percent100 { width: 100%; }
        .percent99 { width: 99%; }
        .percent100 { width: 100%; }
        .percent80 { width: 80%; }
        .percent90 { width: 90%; }
        .percent95 { width: 95%; }



.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    /* color: #777; */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.projects-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
/* My Projects card bg color  */
.project-card,
.portfolio-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-card img,
.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 230px;
    width: auto;
}

.project-card img,
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img,
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 123, 213, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-btn {
    color: #fff;
    padding: 10px 20px;
    /* border: 2px solid #000000; */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #fff;
    color: #3a7bd5;
}

 .view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        

.project-info,
.portfolio-content {
    padding: 25px;
}

/* portfolio-content */
.project-info h3,
.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #141414;
      font-weight: bold;
}

.project-info p,
.portfolio-content p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-links,
.portfolio-links {
    display: flex;
    gap: 15px;
}

.demo-link, .code-link {
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-link {
    background: #3a7bd5;
    color: white;
}

.demo-link:hover {
    background: #2a6bc7;
}

.code-link {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.code-link:hover {
    background: #e9e9e9;
}

/* Portfolio Templates   */
    /* Media Queries */

    /* Large desktops (1200px and up) */
    @media (max-width: 1200px) {
        .portfolio-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }
    
    /* Medium devices (tablets, 992px and down) */
    @media (max-width: 992px) {
        .portfolio-section {
            padding: 60px 0;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .portfolio-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
    }
    
    /* Small devices (landscape phones, 768px and down) */
    @media (max-width: 768px) {
        .portfolio-section {
            padding: 50px 0;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .portfolio-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .portfolio-content h3 {
            font-size: 1.3rem;
        }
    }
    
    /* Extra small devices (portrait phones, 576px and down) */
    @media (max-width: 576px) {
        .portfolio-section {
            padding: 40px 15px;
        }
        
        .section-header h2 {
            font-size: 1rem;
        }
        
        .portfolio-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .portfolio-image img {
            height: 200px;
        }
        
        .portfolio-links {
            flex-direction: column;
        }
        
        .view-btn {
            text-align: center;
        }
    }
    
    /* Very small devices (phones under 400px) */
    @media (max-width: 400px) {
        .section-header h2 {
            font-size: 1.6rem;
        }
        
        .portfolio-content {
            padding: 15px;
        }
        
        .portfolio-content h3 {
            font-size: 1.2rem;
        }
        
        .portfolio-content p {
            font-size: 0.9rem;
        }
    }
    /* end Portfolio Templates */


/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    

    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-info {
        grid-template-columns: 1fr;
    }
    
    .project-links,
    .portfolio-links {
        flex-direction: column;
    }
    
    .btn-small {
        width: 100%;
        text-align: center;
    }
}


/* review css */

/* Reviews Section */
.reviews-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #222;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #007bff;
    position: absolute;
    /* bottom: -20px; */
    left: 50%;
    transform: translateX(-50%);
}

/* Reviews Container */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Review Card */
.review-card {
    /* background: #000000; */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 5px;
}

.reviewer-title {
    font-size: 0.9rem;
    color: #000000;
}

/* Review Rating */
.review-rating {
    font-size: 1.2rem;
    color: #ffc904;
    margin-bottom: 15px;
}

/* Review Content */
.review-content {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Review Date */
.review-date {
    font-size: 0.85rem;
    color: #000000;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .reviewer-name {
        font-size: 1.1rem;
    }

    .review-content {
        font-size: 0.95rem;
    }
}


    .navbar {
    width: 100%;
    z-index: 1000;
    /* background: linear-gradient(to right, #fb0b0b8e 5%, #0000ff61 50%); */
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
    position: relative;
}
.container {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

 .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo span {
            color: var(--secondary);
        }
        

 /* Base Styles */
     .logo {
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .logo-img {
        height: 60px;
        width: auto;
        transition: all 0.3s ease;
    } 



logo {
        display: inline-block;
        transition: all 0.3s ease;
    }
    
        
        .nav-links a {
            text-decoration: none;
            color: #000000;
            font-size: large;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
       
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }


    
    /* Medium devices (tablets, 768px and down) */
    @media (max-width: 768px) {
        .logo-img {
            height: 50px;
        }
    }
    
    /* Small devices (phones, 576px and down) */
    @media (max-width: 576px) {
        .logo {
            height: 45px;
            margin-left:20px;
        }
    }
    
    /* Extra small devices (phones, 400px and down) */
    @media (max-width: 400px) {
        .logo-img {
            height: 40px;
        }
    }
    
    /* For very small screens (optional) */
    @media (max-width: 350px) {
        .logo-img {
            height: 35px;
        }
    }



/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    padding: 0.5rem 0;
    border-radius: 8px;
    min-width: 180px;
    z-index: 1000;

    /* 👇 ADD THIS */
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}


.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown-menu li a:hover {
    background-color: #333;
    color: #0fdb89;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.logout-button {
    background: none;
    border: none;
    padding: 0.6rem 1.2rem;
    width: 100%;
    text-align: left;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.logout-button:hover {
    background-color: #333;
    color: #f66;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;margin-right: 10px;
    }
    
    .nav-links {
         gap: 0;
        position: fixed;
        left: -100%;
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        padding-top: 20px;
        transition: all 0.5s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
        position: relative;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 80%;
        /* text-align: center; */
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .dropdown-menu li a {
        padding: 0.8rem;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    .navbar,.navbar .container{
        padding: 0 !important
    }
    
    
}


/* my service */

    :root {
        --primary-color: #3a86ff;
        --secondary-color: #8338ec;
        --dark-color: #212529;
        --light-color: #f8f9fa;
        --gray-color: #6c757d;
        --success-color: #28a745;
          --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #7e22ce;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --accent: #f43f5e;
            --success: #10b981;
    }
    

    /* Services css Section */
    .services {
        /* padding: 100px 0; */
        position: relative;
        overflow: hidden;
    }
    
    .services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(131, 56, 236, 0.05));
        z-index: -1;
    }
       /* heading section  */
    .section-titles {
        text-align: center;
        margin-bottom: 70px;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
    }
    
    .section-titles::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #2563EB;
        /* background: linear-gradient(to right, var(--dark-color), var(--light-color)); */
        margin: 15px auto 0;
        border-radius: 2px;
    }
    /* Tablets */
@media (max-width: 992px) {
    .section-titles {
        font-size: 2rem;
        margin-bottom: 50px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-titles {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
}
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        z-index: 1;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        color: white;
    }
    
    .service-card:hover::before {
        opacity: 1;
    }
    
    .service-card:hover .service-icon,
    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover .service-list li,
    .service-card:hover .service-list li i {
        color: white;
        transform: scale(1.1);
    }
    
  .service-icon {
            width: 70px;
            height: 70px;
            background: #e0e7ff;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: background 0.3s, color 0.3s;
        }
        
        .service-card:hover .service-icon {
            background: var(--dark);
            color: white;
        }
    
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--dark-color);
        text-align: center;
        /* font-weight: 600; */
        transition: color 0.3s ease;
    }
    
    .service-card p {
        color: rgb(4, 4, 4);
        margin-bottom: 25px;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .service-list {
        list-style: none;
        padding: 0;
    }
    
    .service-list li {
        padding: 10px 0;
       color: var(--gray);
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }
    
    .service-list li i {
        color: var(--dark-color);
        margin-right: 12px;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .services {
            padding: 80px 0;
        }
        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
            margin-bottom: 50px;
        }
        .service-card {
            padding: 30px 25px;
        }
    }
    
    @media (max-width: 576px) {
        .services {
            padding: 60px 0;
        }
        .services-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        .section-title {
            font-size: 1.8rem;
        }
    }
/* end xss service      */

  
/* Pagnition css  */

    /* Pagination Styles */
/* .pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 140px;
} */

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a, 
.pagination li span {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination li.active span {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination li a:hover {
    background-color: #efe9e9;
}



/* my skill section  css  */

#skills {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
/* .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
} */
.col-twelve {
    width: 100%;
    text-align: center;
    padding: 0 20px;
}
.col-six {
    width: 48%;
    padding: 30px;
    box-sizing: border-box;
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); */
}
.section-intro h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}
.section-intro h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}
/* h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
} */

@media (max-width: 768px) {
    .col-six {
        width: 100%;
    }
}

/* .portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.tag {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 6px 12px; 
    border-radius: 20px;
    font-size: 0.9rem; 
    font-weight: 600;
} */
.portfolio-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 columns = 3 tags per row */
    gap: 20px;
    margin-bottom: 10px;
}

.tag {
    text-align: center;
    background: #e0e7ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}


/* Portfolio Templates Navigation Menu */
        /* Navigation Menu */
        .portfolio-navigation ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .portfolio-navigation li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #fff;
            border-radius: 30px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
        }

        .portfolio-navigation li a:hover {
            background: #0066ff;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .portfolio-navigation li a i {
            font-size: 14px;
        }



        /* Media Queries */
        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .portfolio-navigation ul {
                gap: 8px;
            }

            .portfolio-navigation li a {
                padding: 8px 15px;
                font-size: 0.8rem;
            }

            .portfolio-image {
                height: 180px;
            }

            .portfolio-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .portfolio-section {
                padding: 40px 0;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .portfolio-navigation ul {
                gap: 5px;
            }

            .portfolio-navigation li a {
                padding: 6px 12px;
                font-size: 0.7rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .view-btn,
            .live-btn {
                padding: 10px;
                font-size: 0.8rem;
            }
        }


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
 /* navbar link text sizes */
.nav-links li a {
    /*color: #000000;*/
    font-size: 1.2rem;
    /* font-weight: bold; */
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}
/*blog*/
 /* ===== MODERN BLOG SECTION - PREMIUM DESIGN ===== */
    
    /* Container System */
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ===== SECTION TITLE - ARTISAN LEVEL ===== */
    .section-titles {
        font-size: 2.75rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #0a1929;
        margin-bottom: 3.5rem !important;
        position: relative;
        display: inline-block;
        padding-bottom: 18px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .section-titles::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(10,25,41,0.1), rgba(10,25,41,0.02));
        border-radius: 2px;
    }

    .section-titles::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(120deg, #2563eb, #7c3aed, #db2777);
        border-radius: 4px;
        box-shadow: 0 2px 12px rgba(37,99,235,0.25);
        animation: glowline 3s infinite alternate;
    }

    @keyframes glowline {
        0% { width: 100px; opacity: 0.9; }
        100% { width: 140px; opacity: 1; }
    }

    /* ===== BLOG GRID - RESPONSIVE & BALANCED ===== */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 32px;
        margin-bottom: 50px;
    }

    /* ===== BLOG CARD - ELEVATED, TACTILE, MEMORABLE ===== */
    .blog-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 15px 35px -10px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.15, 0.75, 0.4, 1);
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid rgba(255,255,255,0.3);
        backdrop-filter: blur(5px);
    }

    .blog-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 50px -15px rgba(37,99,235,0.15);
        border-color: rgba(37,99,235,0.2);
    }

    /* ===== IMAGE WRAPPER - PRESERVED YOUR DYNAMIC CODE ===== */
    .blog-image {
        height: 230px;
        overflow: hidden;
        position: relative;
        background: #f0f4fa;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.3, 1);
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.08);
    }

    /* Image overlay - subtle gradient */
    .blog-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
        pointer-events: none;
    }

    /* ===== CONTENT AREA - TYPOGRAPHIC EXCELLENCE ===== */
    .blog-content {
        padding: 28px 28px 32px;
        display: flex;
        flex-direction: column;
        flex: 1;
        background: white;
        position: relative;
    }

    /* Blog Meta - date, category */
    .blog-meta {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 14px;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #5b6f82;
    }

    .blog-meta i {
        margin-right: 6px;
        font-size: 0.75rem;
        color: #2563eb;
    }

    .blog-date, .blog-category {
        display: inline-flex;
        align-items: center;
    }

    /* Title - dynamic, elegant */
    .blog-content h3 {
        font-size: 1.45rem;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: -0.01em;
        color: #0a1929;
        margin-bottom: 14px;
        transition: color 0.25s ease;
    }

    .blog-card:hover .blog-content h3 {
        color: #2563eb;
    }

    /* Excerpt - clean reading */
    .blog-content p {
        color: #475569;
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 22px;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1;
    }

    /* Blog Footer - read more + read time */
    .blog-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        border-top: 1px solid #edf2f7;
        padding-top: 20px;
    }

    /* ===== READ MORE LINK - ANIMATED ARROW ===== */
    .blog-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        padding: 6px 0;
        position: relative;
    }

    .blog-link span {
        position: relative;
    }

    .blog-link span::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #2563eb;
        transition: width 0.3s ease;
    }

    .blog-link:hover span::after {
        width: 100%;
    }

    .blog-link i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .blog-link:hover i {
        transform: translateX(6px);
    }

    /* Read time - subtle */
    .blog-read-time {
        font-size: 0.8rem;
        color: #64748b;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f8fafc;
        padding: 5px 12px;
        border-radius: 30px;
        font-weight: 450;
    }

    .blog-read-time i {
        color: #94a3b8;
        font-size: 0.75rem;
    }

    /* ===== EXPLORE BUTTON - PREMIUM CTA ===== */
    .btn-explore {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #0a1929, #0f2a40);
        color: white;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 16px 38px;
        border-radius: 60px;
        text-decoration: none;
        box-shadow: 0 15px 30px -8px rgba(10,25,41,0.25);
        transition: all 0.35s ease;
        border: 1px solid rgba(255,255,255,0.15);
        gap: 8px;
        letter-spacing: 0.02em;
    }

    .btn-explore i {
        font-size: 0.95rem;
        transition: transform 0.3s ease;
    }

    .btn-explore:hover {
        background: linear-gradient(145deg, #0f2a40, #0a1929);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 25px 40px -10px #0a1929cc;
        color: white;
    }

    .btn-explore:hover i:last-child {
        transform: translateX(8px);
    }

    .btn-explore:hover i:first-child {
        transform: scale(1.05);
    }

    /* Utility classes */
    .d-flex { display: flex; }
    .justify-content-end { justify-content: flex-end; }
    .mt-5 { margin-top: 3.5rem; }
    .ms-2 { margin-left: 0.6rem; }
    .ms-1 { margin-left: 0.3rem; }
    .mb-5 { margin-bottom: 2.5rem; }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 992px) {
        .blog-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
        .section-titles { font-size: 2.4rem; }
    }

    @media (max-width: 768px) {
        .section-titles { font-size: 2rem; margin-bottom: 2.5rem !important; }
        .blog-content h3 { font-size: 1.3rem; }
        .blog-image { height: 210px; }
        .btn-explore { padding: 14px 32px; font-size: 1rem; }
    }

    @media (max-width: 576px) {
        .container { padding: 0 20px; }
        .blog-grid { gap: 24px; }
        .blog-content { padding: 24px 22px 28px; }
        .blog-footer { flex-direction: column; align-items: flex-start; gap: 15px; }
        .section-titles::after { width: 80px; }
    }

    /* Font import */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
     
    /*footer  */
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0d6efd; /* Primary color */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #222;
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background-color: #0d6efd;
    color: #fff;
}

.footer input[type="email"] {
    border-radius: 50px;
    border: none;
    padding: 8px 15px;
}

.footer button {
    border-radius: 50px;
    padding: 8px 20px;
}

  /* out achievement */
        .counter-up {
            width: 100%;
            max-width: 1200px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 50px 30px;
            overflow: hidden;
            margin: auto;
            /* Center in page */
            position: relative;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            /* Center align */
        }

        .col-lg-3 {
            flex: 0 0 22%;
            max-width: 22%;
            padding: 20px;
            margin: 15px 0;
            position: relative;
            text-align: center;
            background: #f9f9f9;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .col-lg-3:hover {
            transform: translateY(-10px);
            background: #fff;
            box-shadow: 0 15px 25px rgba(106, 17, 203, 0.15);
        }

        .icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: #fff;
            font-size: 36px;
            border-radius: 50%;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.25);
            transition: all 0.3s ease;
        }

        .counter {
            font-size: 50px;
            font-weight: 700;
            color: #2c3e50;
            margin: 15px 0;
        }

        .title-2 {
            font-size: 20px;
            font-weight: 600;
            color: #7e8a9a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive design */
        @media (max-width: 991px) {
            .col-lg-3 {
                flex: 0 0 45%;
                max-width: 45%;
            }
        }

        @media (max-width: 575px) {
            .col-lg-3 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .counter {
                font-size: 40px;
            }

            .icon {
                width: 70px;
                height: 70px;
                font-size: 30px;
            }
        }

        /* Decorative elements */
        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: -50px;
            right: -50px;
        }

        .achievement-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        /* Tablets */
@media (max-width: 992px) {
    .achievement-title {
        font-size: 2rem;
    }

    .counter-up .icon {
        font-size: 2.5rem;
    }

    .counter-up .counter {
        font-size: 1.5rem;
    }

    .counter-up .title-2 {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .achievement-title {
        font-size: 1.5rem;
    }

    .counter-up .icon {
        font-size: 2rem;
    }

    .counter-up .counter {
        font-size: 1.2rem;
    }

    .counter-up .title-2 {
        font-size: 0.9rem;
    }

    /* Make columns stack vertically */
    .counter-up .row > div {
        margin-bottom: 30px;
        text-align: center;
    }
}
       
    /* ====== Portfolio Section Styles ====== */
    .portfolio-section {
        /*padding: 100px 0;*/
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        position: relative;
        overflow: hidden;
    }

    .portfolio-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    }

    /* ====== Section Header ====== */
    .section-header {
        position: relative;
        margin-bottom: 80px;
    }

    .header-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .decor-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    }

    .title-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .section-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .title-gradient {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /*.highlight {*/
    /*    background: linear-gradient(120deg, #a5b4fc 0%, #a5b4fc 100%);*/
    /*    background-repeat: no-repeat;*/
    /*    background-size: 100% 0.3em;*/
    /*    background-position: 0 88%;*/
    /*    padding: 0.1em 0;*/
    /*}*/

    /* ====== Stats Container ====== */
    .stats-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        /*background: linear-gradient(135deg, #3b82f6, #8b5cf6);*/
        background-color: #000000;
        background-clip: text;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 5px;
    }

    .stat-divider {
        color: #cbd5e1;
        font-size: 2rem;
        font-weight: 300;
    }

    /* ====== Category Filter ====== */
    .category-filter {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        margin-bottom: 50px;
        border: 1px solid #e2e8f0;
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f1f5f9;
    }

    .filter-header h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
    }

    .filter-count {
        background: #f1f5f9;
        color: #475569;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* ====== Navigation Menu ====== */
    .portfolio-navigation {
        position: relative;
    }

    .nav-scroll-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .nav-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .nav-track {
        display: flex;
        gap: 3px;
        padding: 0 1px;
        min-width: min-content;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        /*padding: 15px 20px;*/
        /*background: white;*/
        /*border: 2px solid #e2e8f0;*/
        border-radius: 15px;
        min-width: 100px;
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
    }

    .nav-item:hover {
        transform: translateY(-5px);
        border-color: #3b82f6;
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
    }

    .nav-item.active {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        border-color: transparent;
        color: white;
    }

    .nav-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }

    .nav-item:hover .nav-icon {
        transform: scale(1.1);
    }

    .nav-label {
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .active-indicator {
        position: absolute;
        bottom: -5px;
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
    }

    .nav-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #64748b;
        transition: all 0.3s ease;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-scroll-btn:hover {
        background: #3b82f6;
        color: white;
        border-color: #3b82f6;
    }

    .nav-scroll-btn.prev {
        left: -50px;
    }

    .nav-scroll-btn.next {
        right: -50px;
    }

    /* ====== Grid Controls ====== */
    .grid-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        padding: 20px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }

    .view-toggle {
        display: flex;
        gap: 10px;
        background: #f1f5f9;
        padding: 5px;
        border-radius: 12px;
    }

    .view-btn {
        padding: 10px 20px;
        border: none;
        background: transparent;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 500;
        color: #64748b;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .view-btn.active {
        background: white;
        color: #3b82f6;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .sort-dropdown .form-select {
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 20px;
        font-weight: 500;
        color: #475569;
        min-width: 180px;
        background: white;
        transition: all 0.3s ease;
    }

    .sort-dropdown .form-select:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    /* ====== Portfolio Grid ====== */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }

    .portfolio-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 1px solid #f1f5f9;
    }

    .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
        border-color: #dbeafe;
    }

    /* Card Badge */
    .card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 2;
    }

    .badge-image-count {
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Image Container */
    .portfolio-image {
        position: relative;
        height: 220px;
        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.05);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 40%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 30px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .portfolio-card:hover .image-overlay {
        opacity: 1;
    }

    .quick-view-btn {
        background: white;
        color: #3b82f6;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .quick-view-btn:hover {
        background: #3b82f6;
        color: white;
        transform: scale(1.05);
    }

    .preview-btn {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3b82f6;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .portfolio-card:hover .preview-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .preview-btn:hover {
        background: #3b82f6;
        color: white;
        transform: scale(1.1);
    }

    /* No Image Placeholder */
    .no-image-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #64748b;
    }

    .placeholder-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    .no-image-placeholder p {
        font-size: 0.9rem;
        margin: 0;
    }

    /* Card Content */
    .portfolio-content {
        padding: 25px;
    }

    .content-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .portfolio-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        flex: 1;
    }

    .portfolio-title a {
        color: #1e293b;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .portfolio-title a:hover {
        color: #3b82f6;
    }

    /* Rating Stars */
    .portfolio-rating {
        margin-left: 15px;
    }

    .stars {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .stars i {
        font-size: 0.9rem;
        color: #e2e8f0;
    }

    .stars i.filled {
        color: #f59e0b;
    }

    .rating-count {
        font-size: 0.8rem;
        color: #94a3b8;
        margin-left: 5px;
    }

    /* Tags */
    .portfolio-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }

    .tag {
        background: #f1f5f9;
        color: #475569;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .tag:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    /* Description */
    .portfolio-desc {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    /* Meta Info */
    .portfolio-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #64748b;
        font-size: 0.85rem;
    }

    .meta-item i {
        color: #94a3b8;
    }

    /* Action Buttons */
    .portfolio-actions {
        display: flex;
        gap: 10px;
    }

    .action-btn {
        flex: 1;
        padding: 7px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .primary-btn {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
    }

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

    .secondary-btn {
        background: #f1f5f9;
        color: #475569;
        border: 2px solid #e2e8f0;
    }

    .secondary-btn:hover {
        background: #e2e8f0;
        border-color: #cbd5e1;
        transform: translateY(-2px);
    }

    .icon-btn {
        flex: 0 0 45px;
        background: white;
        border: 2px solid #e2e8f0;
        color: #64748b;
    }

    .icon-btn:hover {
        background: #fee2e2;
        border-color: #fecaca;
        color: #dc2626;
        transform: scale(1.1);
    }

    /* ====== Pagination ====== */
    .pagination-wrapper {
        position: relative;
    }

    .pagination-container {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .pagination-info {
        font-size: 0.9rem;
    }

    /* ====== Responsive Design ====== */
    @media (max-width: 1200px) {
        .portfolio-grid {
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        }
    }

    @media (max-width: 992px) {
        .section-title {
            font-size: 2.8rem;
        }
        
        .nav-scroll-btn {
            display: none;
        }
        
        .nav-track {
            justify-content: flex-start;
        }
    }

    @media (max-width: 768px) {
        .portfolio-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2.3rem;
        }
        
        .grid-controls {
            flex-direction: column;
            gap: 15px;
            align-items: stretch;
        }
        
        .view-toggle {
            justify-content: center;
        }
        
        .portfolio-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .stats-container {
            gap: 25px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .category-filter {
            padding: 20px;
        }
        
        .portfolio-content {
            padding: 20px;
        }
        
        .portfolio-actions {
            flex-direction: column;
        }
        
        .portfolio-meta {
            flex-wrap: wrap;
            gap: 15px;
        }
        
        
    }

    