/**********  CSS **********/
:root {
    --primary: #4CAF50;        /* Light Green */
    --secondary: #2196F3;      /* Light Blue */
    --accent: #FF9800;         /* Orange for accents */
    --light: #F5F9FF;          /* Very Light Blue */
    --dark: #2E3A47;           /* Dark Blue-Gray */
    --success: #4CAF50;        /* Success Green */
    --warning: #FFC107;        /* Amber */
    --info: #00BCD4;           /* Cyan */
    --gradient-start: #4CAF50;
    --gradient-end: #2196F3;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}


/* ==========================
   Title Fonts
   ========================== */
h1,
h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

p,
small {
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 991px) {

    /* Main Title (1st line) */
    .d-block.d-lg-none h5 {
        color: var(--secondary) !important;
        font-size: 12px;
        display: block;
        text-align: center;
        margin: 0;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* Subtitle (2nd line) */
    .d-block.d-lg-none small {
        color: #6c757d;
        font-size: 8px;
        display: block;
        text-align: center;
        margin-top: 2px;
        white-space: nowrap;
    }
}


/* ✅ Responsive Navbar Fix by Asif Jan */

.college-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.college-affiliation {
    font-size: 14px;
    color: var(--secondary);
    display: block;
    margin-top: 2px;
    font-style: italic;
}

/* Mobile Fixes */
@media (max-width: 767px) {
    .navbar {
        padding: 6px 10px !important;
        background: white !important;
    }

    .college-logo {
        height: 38px !important;
        margin-right: 6px;
    }

    .navbar-brand h5 {
        font-size: 15px !important;
        line-height: 1.2;
        color: var(--dark) !important;
    }

    .navbar-toggler {
        margin-left: auto;
        border: none;
        color: var(--primary);
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 5px;
        border-radius: 5px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark) !important;
        border-bottom: 1px solid #f0f0f0;
    }
}


/* End */





/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.btn.btn-secondary:hover {
    background-color: #1e88e5;
    border-color: #1e88e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel Start ***/


/* ===================================================start Carousel=================================================== */

.carousel-section {
    padding: 0;
    margin: 0;
    background: #f8f9fa;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: white;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    flex: 0 0 100%;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback background */
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from 'contain' to 'cover' for better visual */
    object-position: center;
    filter: brightness(0.8);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 30px;
    max-width: 600px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #007bff;
    text-shadow: 
        0 0 10px #ffeb3b,
        0 0 20px #ffeb3b,
        0 0 30px #ffeb3b,
        0 0 40px #ffeb3b;
    animation: glow 2s ease-in-out infinite alternate;
    text-align: center;
    width: 100%;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #ffeb3b,
            0 0 20px #ffeb3b,
            0 0 30px #ffeb3b,
            0 0 40px #ffeb3b;
    }
    to {
        text-shadow: 
            0 0 15px #ffeb3b,
            0 0 25px #ffeb3b,
            0 0 35px #ffeb3b,
            0 0 45px #ffeb3b,
            0 0 55px #ffeb3b;
    }
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.cta-button {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(to right, #0056b3, #004494);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    margin: 0 auto;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffeb3b;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px #ffeb3b;
}

.indicator:hover {
    background: #ffeb3b;
    transform: scale(1.2);
    box-shadow: 0 0 8px #ffeb3b;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        padding: 12px;
    }
    
    .slide-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .cta-button {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/*=================================================== end=================================================== */



/* Pages Background pic  */

.page-header-about {
    background: linear-gradient(rgba(76, 175, 80, 0), rgba(33, 150, 243, 0.8)), url(../img/about.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.page-header-ai-prompts {
    background: linear-gradient(rgba(76, 175, 80, 0.0), rgba(255, 152, 0, 0.8)), url(../img/slider/2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.page-header-contact {
    background: linear-gradient(rgba(33, 150, 243, 0.5), rgba(76, 175, 80, 0.8)), url(../img/Contactus.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.page-header-blogs {
    background: linear-gradient(rgba(255, 152, 0, 0.8), rgba(33, 150, 243, 0.5)), url(../img/slider/3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-skills {
    background: linear-gradient(rgba(255, 152, 0, 0.8), rgba(33, 150, 243, 0.6)), url(../img/slider/7.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-boss {
    background: linear-gradient(rgba(255, 152, 0, 0.8), rgba(33, 150, 243, 0.0)), url(../img/slider/5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-404 {
    background: linear-gradient(rgba(76, 175, 80, 0.8), rgba(33, 150, 243, 0.8)), url(../img/404.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}





/* End */





.page-header-inner {
    background: rgba(46, 58, 71, 0.9);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--dark);
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 3px;
    top: 4px;
    left: -40px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 3px;
    bottom: 5px;
    left: -60px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** ============================Service start============== ***/

/* ===== Features Section Styles ===== */
.features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.features-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8, #fff9e6) !important;
    border-radius: 25px;
    padding: 8px 25px !important;
    border: 2px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.features-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.features-intro-text {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Toolkit Section ===== */
.features-toolkit {
    background: linear-gradient(135deg, #4CAF50 0%, #FFC107 100%);
    position: relative;
    overflow: hidden;
}

.features-toolkit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.toolkit-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.toolkit-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
    background: rgba(255, 255, 255, 1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.feature-card:hover .feature-icon-wrapper::before {
    left: 100%;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-text {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* ===== Color Variations for Cards ===== */
.feature-card:nth-child(1) .feature-icon-wrapper {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: linear-gradient(135deg, #FFC107, #FFB300);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: linear-gradient(135deg, #8BC34A, #CDDC39);
}

.feature-card:nth-child(4) .feature-icon-wrapper {
    background: linear-gradient(135deg, #FFA000, #FF8F00);
}

.feature-card:nth-child(1) .feature-card-title {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(2) .feature-card-title {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(3) .feature-card-title {
    background: linear-gradient(135deg, #8BC34A, #CDDC39);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(4) .feature-card-title {
    background: linear-gradient(135deg, #FFA000, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .features-main-title {
        font-size: 2.2rem;
    }
    
    .toolkit-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        padding: 6px 20px !important;
    }
}

@media (max-width: 576px) {
    .features-main-title {
        font-size: 1.8rem;
    }
    
    .toolkit-title {
        font-size: 1.6rem;
    }
    
    .features-intro-text {
        font-size: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.7rem;
    }
}

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

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }





/* =========================end Servises =============================== */




/* =====================================IT-skil Start===================== */


/* ===== IT Skills Section Styles ===== */
.it-skills-section {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
}

.it-skills-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8, #fff9e6) !important;
    border-radius: 25px;
    padding: 8px 25px !important;
    border: 2px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.it-skills-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.it-skills-intro-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== IT Skill Cards ===== */
.it-skill-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
}

/* Animated Gradient Border */
.it-skill-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #4CAF50, #FFC107, #4CAF50, #FFC107);
    background-size: 400% 400%;
    border-radius: 23px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.it-skill-card:hover::before {
    opacity: 1;
}

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

.it-skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.15);
}

/* Image Styles */
.skill-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.skill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(76, 175, 80, 0.1));
    transition: background 0.4s ease;
}

.it-skill-card:hover .skill-image {
    transform: scale(1.1);
}

.it-skill-card:hover .skill-overlay {
    background: linear-gradient(to bottom, transparent, rgba(76, 175, 80, 0.3));
}

/* Card Content */
.skill-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-card-text {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Action Buttons */
.skill-actions {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.btn-like {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-like:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.05);
}

.btn-like.liked {
    background: #ff6b6b;
    color: white;
}

.btn-like.liked i {
    color: white;
}

.btn-share {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-share:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.like-count {
    font-weight: 700;
}

/* Individual Card Color Variations */
.it-skill-card:nth-child(1)::before {
    background: linear-gradient(45deg, #4CAF50, #66BB6A, #4CAF50, #66BB6A);
}

.it-skill-card:nth-child(2)::before {
    background: linear-gradient(45deg, #FFC107, #FFB300, #FFC107, #FFB300);
}

.it-skill-card:nth-child(3)::before {
    background: linear-gradient(45deg, #8BC34A, #CDDC39, #8BC34A, #CDDC39);
}

.it-skill-card:nth-child(4)::before {
    background: linear-gradient(45deg, #FFA000, #FF8F00, #FFA000, #FF8F00);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .it-skills-main-title {
        font-size: 2.2rem;
    }
    
    .it-skill-card {
        margin-bottom: 2rem;
    }
    
    .skill-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .it-skills-main-title {
        font-size: 1.8rem;
    }
    
    .it-skills-intro-text {
        font-size: 1rem;
    }
    
    .skill-card-title {
        font-size: 1.1rem;
    }
    
    .skill-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-like, .btn-share {
        width: 100%;
        justify-content: center;
    }
}

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

.it-skill-card {
    animation: fadeInUp 0.6s ease-out;
}

.it-skill-card:nth-child(1) { animation-delay: 0.1s; }
.it-skill-card:nth-child(2) { animation-delay: 0.2s; }
.it-skill-card:nth-child(3) { animation-delay: 0.3s; }
.it-skill-card:nth-child(4) { animation-delay: 0.4s; }



/* ===================IT Skill End========================= */



/* Home Page Specific Styles */
#homeCardsContainer .ai-card {
    margin-bottom: 20px;
}

#homeCardsContainer .prompt-text {
    max-height: 80px;
    overflow: hidden;
}

#goToPromptsBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#goToPromptsBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#goToPromptsBtn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

#goToPromptsBtn:hover i {
    transform: translateX(3px);
}



























/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}



/*** Team ***/
.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

/* Team Card Hover + Modern Look */
.team-item {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    border: 1px solid #e3f2fd;
}

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.team-item img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: auto;
}

/* Social Icons */
.team-social a {
    border-radius: 50% !important;
    padding: 10px;
    transition: 0.3s;
    background: var(--light);
    color: var(--secondary);
}

.team-social a:hover {
    transform: scale(1.2);
    background: var(--secondary);
    color: white;
}

/* Section Title */
.section-title-custom {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Fix for Team Columns */
@media (min-width: 1200px) {

    /* XL screens */
    .team-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    /* LG screens */
    .team-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* MD screens */
    .team-col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 767.98px) {

    /* SM screens */
    .team-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {

    /* XS screens */
    .team-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* end */








/*** Testimonial  Start***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}


/* footer start  */

/* Footer Enhancements */
.footer .btn-link:hover {
    color: #4CAF50 !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer .btn-social {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .btn-social:hover {
    background: #4CAF50 !important;
    border-color: #4CAF50 !important;
    transform: translateY(-3px);
}

.footer .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer .form-control:focus {
    background: rgba(255,255,255,0.15);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row.g-4 {
        gap: 2rem !important;
    }
    
    .footer .d-flex.flex-column .btn-link {
        padding: 0.25rem 0;
    }
}

/* Zero Spacing Quick Links */
.quick-links-zero .btn-link {
    padding: 2px 0 !important;
    font-size: 0.8rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.quick-links-zero .btn-link i {
    width: 12px !important;
    font-size: 0.7rem !important;
}

.quick-links-zero .d-flex.flex-column {
    gap: 0 !important;
}







/* ================================== start for short courses Read More button =============================  */


/* ===== WhatsApp Button Style (Short Courses Section) ===== */
.btn-primary-shourtcourse {
    background: linear-gradient(135deg, var(--success), #25d366);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 5;
}

.btn-primary-shourtcourse i {
    font-size: 16px;
}

/* Hover effect */
.btn-primary-shourtcourse:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #25d366, var(--success));
    color: #fff;
}

/* ===== Positioning for PC (Left Corner) ===== */
@media (min-width: 768px) {
    .btn-primary-shourtcourse {
        position: absolute;
        bottom: 15px;
        left: 15px;
    }
}

/* ===== Positioning for Mobile (Center Bottom) ===== */
@media (max-width: 767px) {
    .btn-primary-shourtcourse {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
}

/* ===== Course Card Styles (general) ===== */
.course-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 18px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e3f2fd;
}

.course-card:hover {
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.course-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
    transition: transform 0.3s ease;
}

.course-card:hover .course-img {
    transform: scale(1.05);
}

.course-info {
    padding: 15px;
}

/* Adjust for small mobile screens */
@media (max-width: 480px) {
    .btn-primary-shourtcourse {
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 24px;
    }

    .course-img {
        height: 150px;
    }
}


/* ===============================  end for short courses Read More button ===============================  */

/* ===== Section Title ===== */
.asif-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.asif-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.asif-section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* ===== Cards Row ===== */
.asif-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* ===== Individual Card ===== */
.asif-card {
    border: 2px solid var(--primary);
    border-radius: 12px;
    background-color: #fff;
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.asif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
    border-color: var(--secondary);
}

/* ===== Card Image ===== */
.asif-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asif-card:hover .asif-card-img {
    transform: scale(1.05);
}

/* ===== Card Content ===== */
.asif-card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== Card Title ===== */
.asif-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 8px 0;
}

/* ===== Card Description ===== */
.asif-card-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ===== Download Button ===== */
.asif-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.asif-card-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .asif-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .asif-card {
        width: 100%;
    }
}

/* Additional attractive elements */
.attractive-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

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

/* Enhanced shadows and transitions */
.enhanced-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.enhanced-shadow:hover {
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    transform: translateY(-5px);
}

/* Light blue background variations */
.light-blue-bg {
    background: linear-gradient(135deg, #E3F2FD, #F5F9FF);
}

.light-green-bg {
    background: linear-gradient(135deg, #E8F5E8, #F5F9FF);
}

/* ===================================it Skill Card new add end============================= */



/* Blog Section Styles */
.blogs-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blogs-main-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-main-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.blogs-main-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Blog Social Buttons */
.blog-card .social-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-like-btn,
.blog-share-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.blog-like-btn:hover {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.blog-like-btn.liked {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.blog-share-btn:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.blog-share-btn.shared {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.social-buttons .count {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004494);
}

.show-more-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blogs-main-section {
        padding: 50px 0;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blogs-main-section .section-header h2 {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .social-buttons {
        justify-content: flex-start;
    }
}

/* Language Filter Dropdown Styling */
.language-filter {
    text-align: center;
    margin-bottom: 30px;
}

.lang-select {
    padding: 12px 20px;
    border: 2px solid #3498db;
    border-radius: 25px;
    background: white;
    color: #2c3e50;
    font-size: 1em;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.2);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233498db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 45px;
}

.lang-select:hover {
    border-color: #2980b9;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.lang-select:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.3);
}

/* Urdu option styling */
.lang-select option[value="urdu"] {
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Segoe UI', serif;
    font-size: 1.1em;
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lang-select {
        min-width: 180px;
        font-size: 0.95em;
        padding: 10px 15px;
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    .language-filter {
        margin-bottom: 20px;
    }
    
    .lang-select {
        min-width: 160px;
        font-size: 0.9em;
    }
}


/* end */



/* for go to more button */
.load-more-btn {
    display: block;
    margin: 0 auto;
}

/* end */



/* ============================== Start Profilio=================== AJ=============== */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --secondary: #065F46;
    --accent: #A7F3D0;
    --dark: #064E3B;
    --light: #ECFDF5;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(16, 185, 129, 0.15);
}

body {
    background: linear-gradient(135deg, var(--light) 0%, #FFFFFF 100%);
    color: var(--dark);
    line-height: 1.7;
    min-height: 100vh;
    padding: 20px;
}

section.portfolio {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.main-text {
    text-align: center;
    margin-bottom: 70px;
}

.heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.heading span {
    color: var(--primary);
    position: relative;
}

.heading span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    z-index: -1;
    opacity: 0.7;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Filter Buttons */
.fillter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.fillter-buttons button {
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.fillter-buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.fillter-buttons button:hover::before,
.fillter-buttons button.mixitup-control-active::before {
    width: 100%;
}

.fillter-buttons button:hover,
.fillter-buttons button.mixitup-control-active {
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.portfolio-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.portfolio-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-links {
    display: flex;
    gap: 15px;
}

.portfolio-links a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    transform: translateY(20px);
}

.portfolio-box:hover .portfolio-links a {
    transform: translateY(0);
}

.portfolio-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.portfolio-links a:nth-child(2) {
    transition-delay: 0.1s;
}

.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.category {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
    font-weight: 700;
}

.portfolio-content p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.portfolio-tech span {
    background: var(--gray-light);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.readMore {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
    padding: 10px 0;
    position: relative;
}

.readMore::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.readMore:hover::after {
    width: 100%;
}

.readMore i {
    margin-left: 10px;
    transition: var(--transition);
}

.readMore:hover {
    color: var(--primary-dark);
}

.readMore:hover i {
    transform: translateX(8px);
}

/* Animation for filtering */
.mix {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .heading {
        font-size: 3rem;
    }
    
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .fillter-buttons {
        gap: 8px;
    }
    
    .fillter-buttons button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    section.portfolio {
        padding: 60px 20px;
    }
    
    .heading {
        font-size: 2.2rem;
    }
    
    .main-text span {
        font-size: 1rem;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-content h3 {
        font-size: 1.3rem;
    }
}





    /* ===================end protfilo by aj======================= */





    /* add for it pic */
/* IT Skills Specific Styles */
.it-skill-card {
    min-height: 380px;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.it-card-img-container {
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f8f9fa;
}

.it-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.it-card-image:hover {
    transform: scale(1.05);
}

.it-view-btn {
    margin-top: 10px;
    padding: 6px 20px;
    font-size: 13px;
}

/* Hidden Cards */
.it-hidden-card {
    display: none !important;
}

/* IT Skills Modal */
.it-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: itModalFade 0.3s;
}

@keyframes itModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.it-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.it-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.it-modal-close:hover {
    color: #ff6b6b;
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.it-modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-modal-img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: itZoomIn 0.4s;
}

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

/* IT Load More Button */
.it-load-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.it-load-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.it-load-btn.loading {
    padding-right: 45px;
    pointer-events: none;
}

.it-load-btn.loading:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.7);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: itSpin 1s linear infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .it-skill-card {
        min-height: 350px;
        max-height: 350px;
    }
    
    .it-card-img-container {
        height: 180px;
    }
    
    .it-modal-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .it-modal-content {
        padding: 20px;
    }
}
    


    /* end for it pic */

