    :root {
            --primary-color: #242ee7;
            --secondary-color: #FF6B35;
            --accent-color: #00C9B7;
            --light-color: #F8F9FA;
            --dark-color: #333333;
            --custom-color: #261d1d;
            --accent-green: #57cc99;
            --accent-yellow: #ffd166;
            --neutral-light: #f8f9fa;
            --neutral-gray: #6c757d;
            --primary-blue: #1a5f7a;
             --accent-pink: #ff6b9d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: white;
            line-height: 1.6;
            overflow-y: auto;
            /*background: linear-gradient(135deg, #ed8b8b 0%, #6ba7e3 100%);*/
            background: linear-gradient(135deg, #4a140e 0%, #7188ad 100%);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        /*.nav-primary {
            background-color: #fafbfd !important;
            
        }
        .navbar .nav-link {
            color: #161518 !important;
        }

        .navbar .nav-link:hover {
            color: #b30300 !important;
        }*/

        /* ============================= */
/* NAVBAR BASE */
/* ============================= */

.nav-primary {
    background: linear-gradient(135deg, #d8deed, #a45a71);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
}

/* ============================= */
/* FIX CONTENT UNDER FIXED NAV */
/* ============================= */

body {
    padding-top: 80px; /* Adjust based on navbar height */
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {

    .navbar-collapse {
        background: #5c73a6;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 16px;
    }

    .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #1a4a8a;
            border-color: #1a4a8a;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .text-secondary {
            color: var(--secondary-color) !important;
        }
        
        .bg-light-custom {
            background-color: var(--light-color);
        }
        
        .hero-section {
            
            background: linear-gradient(rgb(81 25 52 / 70%), rgb(120 108 108 / 80%)), url('images/hero2.jpg') no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
        }
        /* ========================= */
/* HERO SECTION BASE */
/* ========================= */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.2;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .hero-section {
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 15px;
        margin: 15px auto;
    }

    .hero-section .btn {
        font-size: 16px;
        margin-bottom: 12px;
    }


}
/* ============================= 
Hero Section Other pages
----------------------------------- */


        .hero-section-other {
            
            background: linear-gradient(rgb(99 66 7 / 70%), rgb(83 27 27 / 80%)), url(images/hero3.jpg) no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            display: flex;
            align-items: center;
            position: relative;
            color: #fff;
            height:60vh;
           }
           .hero-section-other h1 {
                font-weight: 700;
                line-height: 1.2;
            }

            .hero-section-other p {
                font-size: 18px;
                line-height: 1.6;
                max-width: 600px;
            }

            /* ========================= */
            /* MOBILE RESPONSIVE */
            /* ========================= */

            @media (max-width: 768px) {

                .hero-section-other {
                    text-align: center;
                    padding: 60px 20px;
                    min-height: auto;
                }

                .hero-section-other h1 {
                    font-size: 28px;
                    line-height: 1.3;
                }

                .hero-section-other p {
                    font-size: 15px;
                    margin: 15px auto;
                }

                .hero-section-other .btn {
                    font-size: 16px;
                    margin-bottom: 12px;
                }


            }


        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(42, 92, 170, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
        }
        /* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 576px) {

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            color:#333333
        }
        
        .card:hover {
            transform: translateY(-5px);
        
        }
        .card-body {
            padding: 1.5rem;
        }
       .card-body h5 {
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        
        .card-body p {
            font-size: 14.5px;
            line-height: 1.6;
            color: #6c757d;
            text-align: justify;
        }

         .case-study-card li {
            font-size: 14.5px;
            line-height: 1.6;
            color: #404143;
            margin-bottom: 0.5rem;
            
         }
       /* .process-card-body {
            padding: 1.8rem 1.5rem;      
            display: flex;
            flex-direction: row;          
            flex-wrap: wrap;             
            gap: 1.5rem;
            justify-content: center;    
        }

       
        .process-step {
            flex: 1 1 280px;             
            min-width: 260px;
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.2s;
            border: 1px solid #f0f2f5;
            display: flex;
            flex-direction: column;
        }*/
        /* ============================= */
/* PROCESS CARD WRAPPER */
/* ============================= */

.process-card {
    border: none;
    border-radius: 16px;
    background: transparent;
}

.process-card-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: space-between;
}

/* ============================= */
/* PROCESS STEP CARD */
/* ============================= */

.process-step {
    flex: 1 1 calc(25% - 1.8rem);   /* 4 per row */
    min-width: 200px;
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    border: 1px solid #eef1f5;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover effect */
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* STEP NUMBER CIRCLE */
/* ============================= */

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e73df, #6f42c1);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.3);
}

/* ============================= */
/* TEXT STYLING */
/* ============================= */

.process-step h5 {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 18px;
    color: #333333;
}

.process-step p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet (2 per row) */
@media (max-width: 992px) {
    .process-step {
        flex: 1 1 calc(50% - 1.8rem);
    }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
    .process-step {
        flex: 1 1 100%;
    }
}
        
        .case-study-card {
            border-top: 4px solid var(--secondary-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
           
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .skill-bar {
            height: 8px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .skill-progress {
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 4px;
        }
        
        .contact-info-box {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            margin-bottom: 1.5rem;
            
        }
         /* ----- GRAPH SECTION: SCHOOL ADMISSIONS (web & marketing impact) ----- */
        .graph-container {
            background: #fafcff;
            border-radius: 22px;
            padding: 1.5rem 1rem 1rem 1rem;
            margin: 0.5rem 0 1.2rem 0;
            border: 1px solid #e6ecf5;
        }

        .admission-chart-svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .chart-labels {
            display: flex;
            justify-content: space-around;
            margin-top: 0.25rem;
            padding: 0 0.5rem;
            font-weight: 500;
            color: #3c4f6e;
            font-size: 0.95rem;
        }

        .label-item {
            background: #f0f5fe;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
        }

        /* metrics row - admission focused */
        .admission-metrics {
            display: flex;
            justify-content: space-between;
            background: #edf3ff;
            border-radius: 28px;
            padding: 1rem 1.8rem;
            margin: 1.5rem 0 1rem 0;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #10346b;
            line-height: 1.2;
        }

        .metric-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #47648b;
            font-weight: 600;
        }

      

       

        .footnote {
            font-size: 0.85rem;
            color: #4f658d;
            margin-top: 1rem;
            border-top: 1px dashed #c2d6f5;
            padding-top: 1rem;
        }

        .footnote i {
            color: #2563eb;
        }

        /* ============================= */
/* TABLET FIX */
/* ============================= */
@media (max-width: 992px) {

    .chart-labels {
        justify-content: space-between;
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }

    .label-item {
        padding: 0.25rem 0.6rem;
    }
}


/* ============================= */
/* MOBILE FIX */
/* ============================= */
@media (max-width: 576px) {

    .chart-labels {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .label-item {
        padding: 0.3rem 0.7rem;
        border-radius: 20px;
        white-space: nowrap;
    }
}
        /* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .admission-metrics {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
    }

    .metric {
        flex: 1 1 45%;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 576px) {

    .graph-container {
        padding: 1rem;
        border-radius: 16px;
    }

  

    .admission-metrics {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        border-radius: 18px;
    }

    .metric {
        margin-bottom: 0.8rem;
    }

    .metric:last-child {
        margin-bottom: 0;
    }

    .metric-value {
        font-size: 1.4rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    .footnote {
        font-size: 0.75rem;
        text-align: center;
    }
}

        /* responsiveness */
        @media (max-width: 767px) {
            .row {
                flex-direction: column;
            }
        }
        /* ============================= */
/* ICON STYLE */
/* ============================= */

.contact-info-box i {
    font-size: 36px;
    color: #4e73df;   /* Change to your brand color */
    margin-bottom: 1rem;
    display: inline-block;
}

/* ============================= */
/* TITLE */
/* ============================= */

.contact-info-box h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0.6rem;
    color: #333;
}

/* ============================= */
/* TEXT */
/* ============================= */

.contact-info-box p {
    font-size: 14.5px;
    color: #6c757d;
    margin-bottom: 0.4rem;
}

/* Optional link styling */
.contact-info-box a {
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;

}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .contact-info-box {
        padding: 1.5rem;
        text-align: center;
    }

    .contact-info-box i {
        font-size: 30px;
    }

    .contact-info-box h5 {
        font-size: 16px;
    }

    .contact-info-box p {
        font-size: 14px;
    }
}
        
        .footer {
            background-color: #2c3e50;
            color: white;
        }
        
        .portfolio-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .process-step {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
        }
        
        .process-step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
        }
        
     /*.page-content {
            padding-top: 70px;
        }
        
            .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }*/
        /* Sections */

        section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: var(--light-color);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-align: center;
        }
        /* Services Section */
       .services-flex {
            display: flex;
            gap: 50px;
        }
        /* ============================= */
/* MOBILE FIX FOR SERVICES */
/* ============================= */
@media (max-width: 768px) {

    .services-flex {
        flex-direction: column;
        gap: 25px;
    }

    .services-flex > div {
        width: 100%;
    }
}
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--accent-green);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-icon {
            background-color: var(--primary-blue);
            color: rgb(251, 248, 248);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            font-size: 1.8rem;
        }
        
        .service-card h3 {
            color: var(--primary-blue);
            text-align: center;
            padding: 0 20px;
        }
        
        .service-card p {
            padding: 0 20px 25px;
            text-align: center;
            color: var(--neutral-gray);
        }
        
        /* Testimonials */
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-left: 5px solid var(--accent-yellow);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            color: var(--dark-color);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--neutral-gray);
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            color: var(--primary-blue);
        }
        
        .author-info p {
            margin: 0;
            color: var(--neutral-gray);
            font-size: 0.95rem;
        }
        /* Featured Project Showcase */
        .featured-project {
            border-radius: 12px;
            overflow: hidden;
            margin-top: 60px;
            display: flex;
            flex-direction: column;
        }
        
        .project-preview {
            height: 350px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .website-frame {
            width: 90%;
            max-width: 900px;
            height: 90%;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            position: relative;
        }
        
        .website-header {
            height: 50px;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            padding: 0 15px;
            border-bottom: 1px solid #ddd;
        }
        
        .browser-dots {
            display: flex;
        }
        
        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .dot-red { background-color: #ff5f56; }
        .dot-yellow { background-color: #ffbd2e; }
        .dot-green { background-color: #27ca3f; }
        
        .website-url {
            margin-left: 20px;
            font-size: 0.85rem;
            color: #555;
            font-family: monospace;
        }
        
        .website-content {
            padding: 20px;
            height: calc(100% - 50px);
            overflow-y: auto;
        }
        
        .website-content h3 {
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .website-content p {
            margin-bottom: 15px;
            color: var(--neutral-gray);
        }
        
        .mock-button {
            display: inline-block;
            background-color: var(--accent-pink);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
        }

/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {

    .project-preview {
        height: 300px;
    }

    .website-frame {
        width: 95%;
        height: 85%;
    }

    .website-content {
        padding: 15px;
    }

    .website-content h3 {
        font-size: 1.2rem;
    }
}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 576px) {

    .featured-project {
        margin-top: 40px;
    }

    .project-preview {
        height: auto;
        padding: 20px 10px;
    }

    .website-frame {
        width: 100%;
        height: auto;
    }

    .website-header {
        height: 40px;
        padding: 0 10px;
    }

    .browser-dot {
        width: 10px;
        height: 10px;
        margin-right: 6px;
    }

    .website-url {
        font-size: 0.7rem;
        margin-left: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .website-content {
        padding: 12px;
        height: auto;
    }

    .website-content h3 {
        font-size: 1.1rem;
    }

    .website-content p {
        font-size: 0.9rem;
    }

    .mock-button {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

        
        .project-details {
            padding: 40px;
        }
        
        .project-details h3 {
            color: var(--education-purple);
            margin-bottom: 20px;
        }
         .project-details p {
             max-width: 1000px;
            font-size: 1.1rem;
            line-height: 1.6; 
            margin: 25px auto;  
         }
        
        .project-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 700px;
             margin: 25px auto; /* ✅ This centers it */
            justify-items: center;
                }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            background-color: var(--accent-yellow);
            color: var(--neutral-dark);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        
        .feature-item p {
            margin: 0;
            line-height: 1.5;
        }
        
        .project-stats {
            display: flex;
            justify-content: space-around;
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: 0 15px;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.95rem;
            color: var(--neutral-gray);
            margin-top: 5px;
        }
            .mock-button {
            display: inline-block;
            background-color: var(--accent-pink);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
        }
        /* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {

    .project-details p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .project-features {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .project-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}


/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 576px) {

    .project-details{
        padding: 20px 15px;
    }
    /* Paragraph */
    .project-details p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 20px auto;
        padding: 0 12px;
        text-align: justify;
    }

    /* Features grid -> single column */
    .project-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        padding: 0 15px;
    }

    .feature-item {
        align-items: center;
    }

    .feature-icon {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        margin-right: 10px;
    }

    /* Stats section */
    .project-stats {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        gap: 20px;
    }

    .stat-item {
        padding: 0;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}
/* ============================= */
/* MOBILE LAYOUT FIX */
/* ============================= */
@media (max-width: 576px) {

    .portfolio-img img {
        border-radius: 12px;
    }

    .row.mt-3 > .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .row.mt-3 {
        margin-top: 15px !important;
    }
}

