 
 @import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
 
 :root {
            --blue-400: #60a5fa;
            --sky-600: #0284c7;
            --white: #ffffff;
             --primary-blue: #025091;
            --light-blue: #e0f2fe;
            --accent-sky: #0ea5e9;
            --text-color: #1f2937;
            --bg-color: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }









      












        
#backToTopBtn {
    
    position: fixed; 
    bottom: 50px; 
    right: 30px; 
    transition: all .3s ease-in-out;
    
    font-size: 24px;
    font-weight: bold;
    background-color: #032b61; 
    color: white; 
    border: none;
    border-radius: 50%; 
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    
    opacity: 0; 
    visibility: hidden;
    
    transition: opacity 0.3s, visibility 0.3s;
    
    z-index: 1000; 
}

#backToTopBtn:hover {
    background-color: #026bcd;
}

#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
}





   .about-wrapper {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e8f4ff 100%);
        }

        /* Wavy SVG Styles */
        .wave-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-top svg {
            position: relative;
            display: block;
            width: calc(300% + 1.3px);
            height: 80px;
            animation: wave-move 20s linear infinite;
        }

        .wave-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-bottom svg {
            position: relative;
            display: block;
            width: calc(300% + 1.3px);
            height: 80px;
            animation: wave-move-reverse 15s linear infinite;
        }

        @keyframes wave-move {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-66.666%);
            }
        }

        @keyframes wave-move-reverse {
            0% {
                transform: translateX(-66.666%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .about-page-section {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            padding: 100px 1rem 80px;
            position: relative;
            z-index: 1;
        }

        .HeadingH1 {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .HeadingH1::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #026bcd, #032b61);
            border-radius: 2px;
        }

        .HeadingH1 .subtitle {
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            color: #026bcd;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .HeadingH1 .subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #026bcd;
        }

        .HeadingH1 h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: #032b61;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(-40deg, #026bcd 0%, #032b61 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .HeadingH1 p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 1rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .about-container1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            gap: 4rem;
            flex-wrap: wrap;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(3, 43, 97, 0.08);
            position: relative;
            overflow: hidden;
        }

        .about-container1::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(2, 107, 205, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .aboutcontent {
            width: 50%;
            height: 100%;
            min-width: 300px;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .aboutcontent .label {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #026bcd15 0%, #032b6115 100%);
            color: #026bcd;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 30px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .aboutcontent h1 {
            margin-bottom: 1.5rem;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1.5px;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(-40deg, #026bcd 0%, #032b61 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .aboutcontent p {
            font-size: clamp(15px, 2vw, 17px);
            line-height: 1.8;
            color: #4b5563;
            font-weight: 400;
        }

        .aboutImage {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            height: 100%;
            overflow: hidden;
            
            border-top-right-radius:5rem ;
            border-bottom-left-radius:5rem ;
            min-width: 300px;
            flex: 1;
            position: relative;
            box-shadow: 0 15px 40px rgba(3, 43, 97, 0.12);
        }

        .aboutImage::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 106, 193, 0.318) 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .aboutImage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease-in-out;
        }

        .aboutImage:hover img {
            transform: scale(1.08);
        }

        /* Tablet breakpoint */
        @media (max-width: 768px) {
            .wave-top svg,
            .wave-bottom svg {
                height: 50px;
            }

            .about-page-section {
                padding: 80px 1rem 60px;
            }

            .HeadingH1 {
                margin-bottom: 60px;
            }

            .about-container1 {
                flex-direction: column;
                gap: 2rem;
                padding: 1.5rem;
            }

            .aboutcontent,
            .aboutImage {
                width: 100%;
                min-width: 100%;
            }

            .aboutImage {
                
            border-top-right-radius:3rem ;
            border-bottom-left-radius:3rem ;
                max-height: 400px;
            }
        }

        /* Mobile breakpoint */
        @media (max-width: 480px) {
            .wave-top svg,
            .wave-bottom svg {
                height: 40px;
            }

            .about-page-section {
                padding: 60px 1rem 40px;
            }

            .HeadingH1 {
                margin-bottom: 40px;
            }

            .HeadingH1::before {
                width: 40px;
                height: 3px;
            }

            .about-container1 {
                padding: 1.5rem;
                gap: 1.5rem;
                border-radius: 16px;
            }

            .aboutcontent h1 {
                letter-spacing: -1px;
            }

            .aboutImage {
                max-height: 300px;
            border-top-right-radius:2rem ;
            border-bottom-left-radius:2rem ;
            }
        }











.vision-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
    margin: 0 auto;
    background-image: url("/assets/bgp5.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem 1rem;
    position: relative;
}

.vision-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 43, 97, 0.05);
    pointer-events: none;
}

.vision-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 1rem;
}

.vision-content h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: clamp(0.5rem, 3vw, 2rem);
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-40deg, #026bcd92 0%, #032b61 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.vision-content p {
    max-width: 1000px;
    font-size: clamp(1rem, 3vw, 1.8rem);
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: #1f2937;
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    .about-container1 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .aboutcontent,
    .aboutImage {
        width: 100%;
        min-width: 100%;
    }

    .aboutImage {
        max-height: 400px;
    }

    .vision-container {
        min-height: 400px;
        background-attachment: scroll;
    }

    .vision-content h2 {
        letter-spacing: clamp(0.3rem, 2vw, 1rem);
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .HeadingH1 {
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .about-container1 {
        padding: 0.5rem;
        gap: 1rem;
    }

    .aboutcontent h1 {
        letter-spacing: -1px;
    }

    .aboutImage {
        max-height: 300px;
        border-radius: 0.5rem;
    }

    .vision-container {
        min-height: 350px;
        padding: 1.5rem 1rem;
    }

    .vision-content h2 {
        letter-spacing: 0.2rem;
        padding: 1rem 0;
    }

    .vision-content p {
        line-height: 1.5;
    }
}

/* Large desktop optimization */
@media (min-width: 1400px) {
    .about-page-section {
        max-width: 1400px;
    }

    .vision-content {
        max-width: 1300px;
    }
}












  .section32r {
            font-family: 'Arial', sans-serif;
            background-color: #f8f8f8;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 50px 0;
            min-height: 80vh;
        }

        .section-title {
            font-size: 2.5em;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .faculty1-container1 {
            width: 100%;
            overflow: hidden;
            margin: 20px auto;
        }

        .scroll-wrapper {
            margin-top: 1.5rem;
            display: flex;
            width: fit-content;
            gap: 20px;
            
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .faculty1-container1:hover .scroll-wrapper {
            animation-play-state: paused;
        }

        .tech-item {
            flex-shrink: 0; 
            width: 200px; 
            
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .tech-logo {
            margin-bottom: 12px;
        }

        .tech-logo img {
            height: 40px; 
            width: auto;
        }
        
        .tech-name {
            font-size: 1em;
            font-weight: 600;
            color: #555;
            margin: 0;
        }

        /* Left scroll animation */
        .scroll-wrapper.scroll-left {
            animation-name: scroll-to-left;
        }

        @keyframes scroll-to-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 10px));
            }
        }

        /* Right scroll animation */
        .scroll-wrapper.scroll-right {
            animation-name: scroll-to-right;
        }

        @keyframes scroll-to-right {
            0% {
                transform: translateX(calc(-50% - 10px));
            }
            100% {
                transform: translateX(0);
            }
        }

        @media (max-width: 600px) {
            .section-title {
                font-size: 2em;
            }
            .tech-item {
                width: 140px; 
                padding: 15px 8px;
            }
            .tech-logo img {
                height: 35px;
            }
            .tech-name {
                font-size: 0.9em;
            }
        }



















        
       
        .faculty-container {
            width: 95%;
            overflow: hidden;
            padding: 5rem 0;
            max-width: 1300px;
            margin: 3rem auto;
            position: relative;
        }

        .faculty-container::before,
        .faculty-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .faculty-container::before {
            left: 0;
            background: linear-gradient(to right, rgb(255, 255, 255), transparent);
        }

        .faculty-container::after {
            right: 0;
            background: linear-gradient(to left, rgb(255, 255, 255), transparent);
        }

        .scroll-wrapper {
            margin-top: 3rem;
            display: flex;
            width: fit-content;
            animation: scroll 30s linear infinite;
        }

        .faculty-container:hover .scroll-wrapper {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .container1 {
            display: flex;
            gap: 3rem;
            padding: 0 1.5rem;
        }

        .card {
            position: relative;
            padding: 1rem;
            background: #fff;
            width: 320px;
            min-width: 280px;
            /*height: 280px;*/
            padding-top: 7rem !important;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }

        

        .card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }



        .card img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid #fff;
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
            object-fit: cover;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .card:hover img {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 12px 32px rgba(0,0,0,0.35);
        }

        .card h3 {
            margin: 10px 0 5px;
            font-size: 1.1rem;
            color: #2c2c74;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .card p {
            margin: 0;
            font-size: 15px;
            color: #666;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

    


    
        /* Responsive Design */
        @media (max-width: 1024px) {
           
            
            .container1 {
                gap: 2.5rem;
            }
            
            .card {
                width: 300px;
                min-width: 260px;
                height: 280px;
            }

            .scroll-wrapper {
                animation: scroll 25s linear infinite;
            }
        }

        @media (max-width: 768px) {
           
            .section-header {
                padding-left: 4rem;
                margin-bottom: 3rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }
            
            .faculty-container::before,
            .faculty-container::after {
                width: 80px;
            }

            .container1 {
                gap: 2rem;
            }
            
            .card {
                width: 280px;
                min-width: 240px;
                height: 290px;
            }

            .card img {
                width: 120px;
                height: 120px;
            }

            .scroll-wrapper {
                animation: scroll 20s linear infinite;
            }
        }

        @media (max-width: 480px) {
           

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 0.9rem;
            }

            .faculty-container {
                padding: 2rem 0;
            }

            .faculty-container::before,
            .faculty-container::after {
                width: 50px;
            }

            .container1 {
                gap: 1.5rem;
                padding: 0 0.75rem;
            }
            
            .card {
                width: 260px;
                min-width: 220px;
                height: 300px;
                border-radius: 16px;
            }

            .card img {
                width: 100px;
                height: 100px;
                top: -5px;
            }

            .card h3 {
                font-size: 1.1rem;
            }

            .card p {
                font-size: 13px;
            }

         
            .scroll-wrapper {
                animation: scroll 15s linear infinite;
            }
        }


















.design-section-data{
    max-width: 1300px;
    margin: 4rem auto;
    width: 95%;
    height: 100%;
}

        .design1Data p{
            font-size: 3rem;
            font-weight: 200;
            font-family: "Raleway",sans-serif;
            max-width: 800px;
        }
        .design1Data p::first-line{
            font-weight: 400;
        }


@media (max-width:768px) {
    .design1Data p{
        font-size: 2.3rem;
    }
}




@media (max-width:480px) {
    .design1Data p{
        font-size: 1.5rem;
    }
}














        
        .services-section {
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #1a1a1a;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .service-card {
            padding: 50px 40px;
            border-right: 2px solid #717171;
            border-bottom: 2px solid #717171;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        /* Remove right border for last column */
        .service-card:nth-child(3n) {
            border-right: none;
        }

        /* Remove bottom border for last row */
        .service-card:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
        }

        .service-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .service-description {
            list-style: none;
            padding: 0;
        }
            .service-description p {
            margin-bottom: 10px;
            text-align: justify;
            color: #333;
            font-weight: 500;
        }

        .service-description li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
            color: #4a4a4a;
            font-size: 0.95em;
            line-height: 1.6;
        }

        .service-description li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0284c7;
            font-weight: bold;
        }

        .highlight {
            color: #0284c7;
            font-weight: 600;
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card:nth-child(3n) {
                border-right: 1px solid #e0e0e0;
            }

            .service-card:nth-child(2n) {
                border-right: none;
            }

            .service-card:nth-last-child(-n+3) {
                border-bottom: 1px solid #e0e0e0;
            }

            .service-card:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .section-title {
                font-size: 2.2em;
            }

            .service-card {
                padding: 40px 30px;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .services-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 1.8em;
                margin-bottom: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 35px 25px;
                border-right: none;
            }

            .service-card:nth-child(n) {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

            .service-card:last-child {
                border-bottom: none;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 20px;
            }

            .service-title {
                font-size: 1.3em;
                margin-bottom: 20px;
            }

            .service-description li {
                font-size: 0.9em;
                margin-bottom: 12px;
            }
        }

        /* 4K styles */
        @media (min-width: 2560px) {
            .services-section {
                max-width: 2200px;
                padding: 100px 40px;
            }

            .section-title {
                font-size: 3.5em;
                margin-bottom: 100px;
            }

            .service-card {
                padding: 70px 60px;
            }

            .service-icon {
                width: 120px;
                height: 120px;
                margin-bottom: 35px;
            }

            .service-title {
                font-size: 2em;
                margin-bottom: 35px;
            }

            .service-description li {
                font-size: 1.2em;
                margin-bottom: 20px;
                padding-left: 35px;
            }
        }


















         .container {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 2rem 0;
        }

        .container h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
            font-weight: 700;
        }
        .subtitle{
            font-size: 1.1rem;
            color: #333;
            text-align: center;
            max-width: 800px;
        }
        .design-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
            margin-bottom: 3rem;
        }

        .design-card {
            background: white;
            padding: 2.5rem 2rem;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1 1 calc(25% - 2px);
            max-width: calc(25% - 2px);
        }

        .design-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
            z-index: 10;
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper svg {
            width: 100%;
            height: 100%;
        }

        .design-card h2 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .design-card p {
            color: #333;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .design-card a {
            color: #0284c7;
            text-decoration: none;
            font-weight: 500;
        }

        .design-card a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .design-card {
                flex: 1 1 calc(50% - 2px);
                max-width: calc(50% - 2px);
            }
        }

        @media (max-width: 768px) {
            .container h1 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .design-card {
                flex: 1 1 100%;
                max-width: 100%;
                padding: 2rem 1.5rem;
                min-height: auto;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .design-card h2 {
                font-size: 1.3rem;
            }

            .design-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container{
                padding: 0 0;
            }

            .container h1 {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .design-card {
                padding: 1.5rem 1rem;
            }

            .icon-wrapper {
                width: 50px;
                height: 50px;
                margin-bottom: 1rem;
            }

            .design-card h2 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }
        }
































        
        .container1d {
            max-width: 1400px;
            margin: 3rem auto;
            padding-top: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .container1d h1 {
            font-size: 2.75rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.05rem;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-bottom: 3rem;
        }

        .industry-card {
            background: white;
            padding: 2.5rem 1.8rem;
            border: 1px solid #e0e0e0;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
            z-index: 10;
        }

        .icon-letter {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            
        }

        .industry-card:nth-child(1) .icon-letter {
    background: url('/assets/vector/ecom.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(2) .icon-letter {
    background: url('/assets/vector/healthcare.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(3) .icon-letter {
    background: url('/assets/vector/education.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(4) .icon-letter {
    background: url('/assets/vector/tech.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(5) .icon-letter {
    background: url('/assets/vector/realstate.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(6) .icon-letter {
    background: url('/assets/vector/finance.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card:nth-child(7) .icon-letter {
    background: url('/assets/vector/hospital.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .industry-card h2 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .industry-card p {
            color: #444;
            line-height: 1.7;
            font-size: 0.95rem;
            flex-grow: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
           
            .industries-grid{
                grid-template-columns: repeat(2,1fr);
            }
            .container1d h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 0.95rem;
            }

            .header {
                margin-bottom: 2.5rem;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .industry-card {
                padding: 2rem 1.5rem;
                min-height: auto;
            }

            .icon-letter {
                width: 50px;
                height: 50px;
                font-size: 2.5rem;
                margin-bottom: 1.2rem;
            }

            .industry-card h2 {
                font-size: 1.35rem;
            }

            .industry-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .industries-grid{
                grid-template-columns: repeat(1,1fr);
            }

            .container1d h1 {
                font-size: 1.7rem;
                margin-bottom: 1rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .industry-card {
                padding: 1.5rem 1.2rem;
            }

            .icon-letter {
                width: 45px;
                height: 45px;
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .industry-card h2 {
                font-size: 1.25rem;
                margin-bottom: 1rem;
            }

            .industry-card p {
                font-size: 0.88rem;
            }
        }



















             .process-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        .main-heading {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .main-heading h1 {
            font-size: clamp(1.5rem, 3vw, 2.3rem);
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #000;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .main-heading h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 4px;
            background: #026bcd;
            border-radius: 2px;
        }

        .main-heading p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #1f2937;
            max-width: 900px;
            margin: 2rem auto 0;
            line-height: 1.6;
        }

        .tabs-container {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
            margin: 3rem 0;
            background: #fff;
            padding: 0.8rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem 0.5rem;
            background: #e2e6ee;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
        }

        .tab-item:hover {
            background: #e5e7eb;
            transform: translateY(-3px);
        }

        .tab-item.active {
            background: #fff;
            border-color: #026bcd;
            box-shadow: 0 8px 25px rgba(25, 155, 255, 0.15);
            transform: translateY(-5px);
        }

        .tab-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .tab-item.active .tab-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        .tab-title {
            font-size: clamp(0.75rem, 1.2vw, 0.9rem);
            font-weight: 600;
            color: #6b7280;
            font-family: 'Montserrat', sans-serif;
            transition: color 0.3s ease;
            line-height: 1.3;
        }

        .tab-item.active .tab-title {
            color: #026bcd;
        }

        .content-container {
            background: #fff;
            padding: 3rem 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            min-height: 300px;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #000;
            margin-bottom: 1.5rem;
        }

        .content-description {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            line-height: 1.8;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

        .content-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .content-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #374151;
        }

        .content-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #026bcd;
            font-weight: bold;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .tabs-container {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 0.8rem;
                padding: 0.8rem;
            }

            .tab-item {
                padding: 1.2rem 0.8rem;
            }

            .tab-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .content-container {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .tabs-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .tab-icon {
                font-size: 1.8rem;
            }

            .content-container {
                padding: 1.5rem 1rem;
            }
        }




























          /* Main Section */
        .wbm-contact-section {
            background: linear-gradient(135deg, #026bcd 0%, #025091 100%);
            color: rgb(0, 0, 0);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }

        /* Wavy Background SVG - Bottom */
        .wbm-contact-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Wavy Background SVG - Top */
        .wbm-contact-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.08)" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,170.7C672,171,768,117,864,112C960,107,1056,149,1152,154.7C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Container */
        .wbm-contact-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Heading Section */
        .wbm-contact-heading {
            max-width: 1000px;
            margin-bottom: 60px;
        }

        .wbm-contact-heading h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
        }

        .wbm-white-text {
            color: white;
        }

        .wbm-gray-text {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Contact Grid */
        .wbm-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            margin-top: 60px;
        }

        /* Contact Item */
        .wbm-contact-item {
            position: relative;
            padding-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .wbm-contact-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
        }

        .wbm-contact-item:hover {
            transform: translateY(-5px);
        }

        /* Contact Details */
        .wbm-contact-details {
            margin-bottom: 20px;
        }

        .wbm-contact-phone {
            display: block;
            font-size: 24px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .wbm-contact-item:hover .wbm-contact-phone {
            color: #0f0f0f;
        }

        .wbm-contact-email {
            font-size: 17px;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .wbm-contact-email:hover {
            color: #090909;
        }

        .wbm-contact-email svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .wbm-contact-item:hover .wbm-contact-email svg {
            opacity: 1;
            transform: translateX(0);
        }

        /* Description */
        .wbm-contact-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

     

        /* Responsive Design */
        @media (max-width: 1200px) {
            .wbm-contact-section {
                padding: 70px 35px;
            }

            .wbm-contact-heading h1 {
                font-size: 42px;
            }

            .wbm-contact-grid {
                gap: 50px;
            }
        }

        @media (max-width: 992px) {
            .wbm-contact-section {
                padding: 60px 30px;
            }

            .wbm-contact-heading h1 {
                font-size: 36px;
            }

            .wbm-contact-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .wbm-contact-phone {
                font-size: 22px;
            }

            .wbm-contact-email {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .wbm-contact-section {
                padding: 50px 25px;
                min-height: auto;
            }

            .wbm-contact-heading {
                margin-bottom: 40px;
            }

            .wbm-contact-heading h1 {
                font-size: 28px;
            }

            .wbm-contact-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                margin-top: 40px;
            }

            .wbm-contact-phone {
                font-size: 20px;
            }

            .wbm-contact-email {
                font-size: 15px;
            }

            .wbm-contact-description {
                font-size: 15px;
            }

  
        }

        @media (max-width: 480px) {
            .wbm-contact-section {
                padding: 40px 20px;
            }

            .wbm-contact-heading h1 {
                font-size: 22px;
                line-height: 1.3;
            }

            .wbm-contact-grid {
                gap: 30px;
                margin-top: 30px;
            }

            .wbm-contact-item {
                padding-bottom: 20px;
            }

            .wbm-contact-phone {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .wbm-contact-email {
                font-size: 14px;
            }

            .wbm-contact-email svg {
                width: 16px;
                height: 16px;
            }

            .wbm-contact-description {
                font-size: 14px;
            }

           
        }

        @media (max-width: 360px) {
            .wbm-contact-section {
                padding: 30px 15px;
            }

            .wbm-contact-heading h1 {
                font-size: 20px;
            }

            .wbm-contact-phone {
                font-size: 16px;
            }

            .wbm-contact-email {
                font-size: 13px;
            }

            .wbm-contact-description {
                font-size: 13px;
            }
        }





























        /* starting the custom website development section  */











                /* 1. Main Hero Container */





    /* Hero Banner Main Container */
        .hero-banner-main {
            position: relative;
            width: 100%;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        /* Media Background Container */
        .media-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Fallback Image (shows first, then hides when video loads) */
        .image-bg-unique {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        /* Video Background */
        .video-bg-unique {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* When video loads, show it */
        .video-bg-unique.loaded {
            opacity: 1;
        }

        /* Dark Overlay */
        .dark-overlay-unique {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 3;
        }

        /* Gradient Overlay */
        .gradient-overlay-unique {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.1) 100%
            );
            z-index: 4;
        }

        /* Hero Content Container */
        .hero-content-container-unique {
            position: relative;
            z-index: 5;
            color: #ffffff;
            padding: 60px 10%;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Content Tag */
        .content-tag-unique {
            display: inline-block;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: rgba(2, 132, 199, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(2, 132, 199, 0.3);
        }

        /* Content Heading */
        .content-heading-unique {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 20px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Content Description */
        .content-description-unique {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 0 35px 0;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Content Button */
        .content-button-unique {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 8px;
            background: linear-gradient(135deg, #0284c7, #0369a1);
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(2, 132, 199, 0.4);
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .content-button-unique i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .content-button-unique:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(2, 132, 199, 0.6);
        }

        .content-button-unique::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #026bcd, #032b61); 
    border-radius: 40px;
    transition: .3s ease-in-out;
    z-index: -1;
}

.content-button-unique:hover::after {
    cursor: pointer;
    bottom: 0;
    border-radius: 0;
}

        .content-button-unique:hover i {
            transform: translate(4px, -4px);
        }

        /* Tablet Responsive */
        @media (max-width: 768px) {
            .hero-banner-main {
                min-height: 450px;
                align-items: center;
            }

            .hero-content-container-unique {
                padding: 40px 6%;
                text-align: center;
            }

            .content-heading-unique {
                font-size: 2.2rem;
            }

            .content-description-unique {
                font-size: 1.05rem;
                margin: 0 auto 30px auto;
            }

            .content-tag-unique {
                font-size: 0.85rem;
                padding: 5px 14px;
            }

            /* Hide video on mobile for performance */
            .video-bg-unique {
                display: none;
            }

            .image-bg-unique {
                opacity: 1 !important;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .hero-banner-main {
                min-height: 400px;
            }

            .hero-content-container-unique {
                padding: 30px 5%;
            }

            .content-heading-unique {
                font-size: 1.8rem;
            }

            .content-description-unique {
                font-size: 0.95rem;
            }

            .content-button-unique {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }












        



         .features-main-container {
            max-width: 1300px;
            margin: 2rem auto;
        }

        .features-section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .features-section-header h1 {
            font-size: 48px;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }

        .features-title-underline {
            width: 180px;
            height: 3px;
            background: #026bcd;
            margin: 0 auto 25px;
        }

        .features-section-header p {
            font-size: 16px;
            color: #000;
            font-weight: 500;
            max-width: 900px;
            margin: 0 auto;
        }

        .features-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 80px;
            margin-top: 60px;
        }

        .features-single-item {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            transition: transform 0.3s ease;
        }

        .features-single-item:hover {
            transform: translateX(10px);
        }

        .features-icon-circle {
            min-width: 100px;
            width: 100px;
            height: 100px;
            border: 3px solid #026bcd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            transition: all 0.4s ease;
        }

        .features-single-item:hover .features-icon-circle {
            background: #026bcd;
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 8px 20px rgba(3, 93, 204, 0.3);
        }

        .features-icon-circle svg {
            width: 50px;
            height: 50px;
            stroke: #666;
            transition: stroke 0.3s ease;
        }

        .features-single-item:hover .features-icon-circle svg {
            stroke: white;
        }

        .features-text-content {
            flex: 1;
        }

        .features-text-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .features-single-item:hover .features-text-content h3 {
            color: #026bcd;
        }

        .features-text-content p {
            font-size: 15px;
            color: #333;
            line-height: 1.8;
            text-align: justify;
        }

        @media (max-width: 1024px) {
            .features-grid-wrapper {
                gap: 50px 60px;
            }

            .features-text-content h3 {
                font-size: 24px;
            }

            .features-text-content p {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .features-grid-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-section-header h1 {
                font-size: 36px;
            }

            .features-section-header p {
                font-size: 15px;
            }

            .features-icon-circle {
                min-width: 70px;
                width: 70px;
                height: 70px;
            }

            .features-icon-circle svg {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
           

            .features-section-header h1 {
                font-size: 28px;
            }

            .features-single-item {
                align-items: center;
                gap: 20px;
            }

            .features-icon-circle {
                min-width: 40px;
        width: 40px;
        height: 40px;
            }

            .features-icon-circle svg {
                width: 25px;
                height: 25px;
            }

            .features-text-content h3 {
                font-size: 20px;
            }

            .features-text-content p {
                font-size: 13px;
            }
        }















 /* Vision Mission Goal Section */
        .vis-mis-goal-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 3rem;
            padding: 1rem;
            overflow: hidden;
        }

        .vis_left-sec {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vis_left-sec img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .vis_right_sec {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .vis_right_sec h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .vis-data {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .vision-dets {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .vision-dets:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .vis-circle {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            padding: .3rem;
            background-color: #032b61;
            display: flex;
            align-items: center;
            overflow: hidden;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(3, 107, 192, 0.3);
        }

    

        .vis-circle img {
            width: 98%;
            height: 98%;
            border-radius: 50%;
            object-fit: contain;
        }

        /* If no image, show icon placeholder */
        .vis-circle:empty::before {
            content: '✓';
            font-size: 2rem;
            color: white;
            font-weight: bold;
        }

        .vis-content {
            flex: 1;
        }

        .vis-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #032b61;
            margin-bottom: 10px;
        }


        .vis-content p {
            font-size: .8rem;
            color: #555;
            line-height: 1.8;
            text-align: justify;
        }

        /* Tablet View */
        @media (max-width: 1024px) {
            .vis-mis-goal-section {
                gap: 2rem;
                padding: 50px 30px;
            }

            .vis_right_sec h1 {
                font-size: 2.2rem;
            }

            .vis-content h2 {
                font-size: 1.6rem;
            }

            .vis-content p {
                font-size: 1rem;
            }

            .vis-circle {
                width: 65px;
                height: 65px;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .vis-mis-goal-section {
                flex-direction: column;
                padding: 40px 20px;
                gap: 3rem;
            }

            .vis_left-sec,
            .vis_right_sec {
                width: 100%;
            }

            .vis_left-sec img {
                max-width: 70%;
            }

            .vis_right_sec h1 {
                font-size: 2rem;
                text-align: center;
            }

            .vis-data {
                gap: 1.5rem;
            }

            .vision-dets {
                padding: 20px;
                gap: 1.2rem;
            }

            .vis-circle {
                width: 60px;
                height: 60px;
            }

            .vis-circle img {
                width: 30px;
                height: 30px;
            }

            .vis-content h2 {
                font-size: 1.5rem;
            }

            .vis-content p {
                font-size: 0.95rem;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
            .vis-mis-goal-section {
                padding: 30px 15px;
            }

            .vis_right_sec h1 {
                font-size: 1.7rem;
            }

            .vision-dets {
                display: flex;
                align-items: center;
                padding: 18px;
                gap: 1rem;
            }

            .vis-circle {
                width: 55px;
                height: 55px;
            }
              .vis_left-sec img {
                max-width: 50%;
            }

            .vis-circle img {
                width: 28px;
                height: 28px;
            }

            .vis-content h2 {
                font-size: 1.3rem;
            }

            .vis-content p {
                text-align: start;
                font-size: 0.8rem;
                line-height: 1.4;
            }
        }







        .custom-web-section{
            max-width: 1300px;
            width: 100%;
            height: 100%;
            margin: 3rem auto;
        }



                .globalCssH1 {
            text-transform: uppercase;
            font-size: 1.5rem;
            position: relative;
            font-weight: 800;
            color: #032b61;
            margin-top: .5rem;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

       

        .globalCssH1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 190px;
            height: 5px;
            background: linear-gradient(90deg, #032b61 0%, #026bcd 100%);
            border-radius: 3px;
        }
        .custom-data-left{
            font-size: 1.05rem;
            color: #3f3f3f;
            line-height: 1.4;
        }
        .custom-data-right{
            padding-top: 2rem;
            width: 100%;
            height: auto;
        }
        .custom-data-right img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


@media (max-width:480px) {
    .globalCssH1{
        font-size: 1rem;
    }
    .custom-data-left{
        font-size: 0.85rem;
    }

}
















            .icon-letter2 {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            
        }

        .design-card:nth-child(1) .icon-letter2 {
    background: url('/assets/reasons/93de97f96f4cbcc8f0b85d0ef1aa6dfa.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(2) .icon-letter2 {
    background: url('/assets/vector/healthcare.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(3) .icon-letter2 {
    background: url('/assets/vector/education.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(4) .icon-letter2 {
    background: url('/assets/vector/tech.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(5) .icon-letter2 {
    background: url('/assets/vector/realstate.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(6) .icon-letter2 {
    background: url('/assets/vector/finance.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }

        .design-card:nth-child(7) .icon-letter2 {
    background: url('/assets/vector/hospital.jpg') no-repeat center center / cover;
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Firefox */
    color: transparent; /* Firefox */
        }



































        /* journal website starts here  */


        .dev-steps-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .dev-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .dev-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .dev-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #032b61, #026bcd);
            border-radius: 2px;
        }

        .dev-header p {
            font-size: 1.2rem;
            color: #666;
            margin-top: 25px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline-wrapper {
            position: relative;
            padding: 40px 0;
        }

        /* Vertical line in center */
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #032b61, #026bcd);
            border-radius: 2px;
        }

        .step-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
            align-items: center;
        }

        /* Left side steps */
        .step-item:nth-child(odd) {
            justify-content: flex-start;
        }

        /* Right side steps */
        .step-item:nth-child(even) {
            justify-content: flex-end;
        }

        .step-content {
            width: 45%;
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        /* Arrow pointing to timeline */
        .step-item:nth-child(odd) .step-content::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }

        .step-item:nth-child(even) .step-content::after {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-right: 20px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2196F3, #1976D2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
            z-index: 2;
            border: 5px solid white;
        }

        /* Different colors for different steps */
        .step-item:nth-child(2) .step-number {
            background: linear-gradient(135deg, #0085b6, #142889);
            box-shadow: 0 5px 20px rgba(6, 237, 250, 0.4);
        }

        .step-item:nth-child(3) .step-number {
            background: linear-gradient(135deg, #025091, #026bcd);
            box-shadow: 0 5px 20px rgba(1, 114, 158, 0.4);
        }

        .step-item:nth-child(4) .step-number {
            background: linear-gradient(135deg, #2c2c74, #025091);
            box-shadow: 0 5px 20px rgba(13, 92, 201, 0.4);
        }

        .step-item:nth-child(5) .step-number {
            background: linear-gradient(135deg, #032b61, #0284c7);
            box-shadow: 0 5px 20px rgba(31, 31, 31, 0.4);
        }

        .step-item:nth-child(6) .step-number {
            background: linear-gradient(135deg, #01499b, #142889);
            box-shadow: 0 5px 20px rgba(37, 37, 37, 0.4);
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .step-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            flex: 1;
        }

        .step-content p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .step-features {
            list-style: none;
            margin-top: 20px;
        }

        .step-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: #666;
            font-size: 1rem;
        }

        .step-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* Tablet View */
        @media (max-width: 1024px) {
            .dev-steps-container {
                padding: 60px 30px;
            }

            .dev-header h1 {
                font-size: 2.5rem;
            }

            .step-content {
                padding: 30px;
            }

            .step-content h3 {
                font-size: 1.6rem;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .dev-steps-container {
                padding: 50px 20px;
            }

            .dev-header h1 {
                font-size: 2rem;
            }

            .dev-header p {
                font-size: 1rem;
            }

            .timeline-wrapper::before {
                left: 30px;
            }

            .step-item {
                justify-content: flex-end !important;
                margin-bottom: 50px;
            }

            .step-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }

            .step-content::after {
                display: none;
            }

            .step-number {
                left: 30px;
                transform: translateX(-50%);
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .step-icon {
                width: 45px;
                height: 45px;
            }

            .step-content h3 {
                font-size: 1.4rem;
            }

            .step-content p {
                font-size: 0.95rem;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
            .dev-steps-container {
                padding: 40px 15px;
            }

            .dev-header h1 {
                font-size: 1.7rem;
            }

            .step-content {
                padding: 25px 20px;
                width: calc(100% - 70px);
                margin-left: 70px;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                border: 3px solid white;
            }

            .step-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .step-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .step-content h3 {
                font-size: 1.2rem;
            }

            .step-content p {
                font-size: 0.9rem;
            }

            .step-features li {
                font-size: 0.9rem;
                padding-left: 25px;
            }
        }




























        .features-section {
            
            padding: 80px 40px;
            background: white;
        }

        .features-header {
            text-align: center;
            margin-bottom: 60px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-header h1 {
            font-size: 2.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .features-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #032b61, #026bcd);
            border-radius: 2px;
        }

        .features-header p {
            font-size: 1.1rem;
            color: #666;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .carousel-track {
            display: flex;
            gap: 25px;
            animation: scroll 60s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Feature Cards */
        .feature-card {
            flex: 0 0 320px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #032b61, #026bcd);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(3, 43, 97, 0.15);
        }

        .feature-icon1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #032b61, #026bcd);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(3, 43, 97, 0.3);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            min-height: 60px;
            display: flex;
            align-items: center;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* Second Row - Reverse Animation */
        .carousel-track-reverse {
            display: flex;
            gap: 25px;
            animation: scroll-reverse 40s linear infinite;
            margin-top: 25px;
        }

        .carousel-track-reverse:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-reverse {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Gradient Overlays for fade effect */
        .carousel-container::before,
        .carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .carousel-container::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .carousel-container::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .features-header h1 {
                font-size: 2.3rem;
            }

            .feature-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 60px 15px;
            }

            .features-header {
                margin-bottom: 40px;
            }

            .features-header h1 {
                font-size: 1.9rem;
            }

            .features-header p {
                font-size: 1rem;
            }

            .feature-card {
                flex: 0 0 260px;
                padding: 25px;
            }

            .feature-icon1 {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }

            .feature-card h3 {
                font-size: 1.2rem;
                min-height: 50px;
            }

            .carousel-track,
            .carousel-track-reverse {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .features-header h1 {
                font-size: 1.6rem;
            }

            .feature-card {
                flex: 0 0 240px;
                padding: 20px;
            }

            .feature-icon1 {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .feature-card h3 {
                font-size: 1.1rem;
            }

            .feature-card p {
                font-size: 0.9rem;
            }
        }




























            .benefits-section {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 60px;
            line-height: 1.3;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .benefit-card:hover .benefit-title 
        {
            transform: translateY(-8px);
            color: #fff;
            background: linear-gradient(135deg, #032b61, #026bcd);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        .icon-container img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .benefit-card:hover .icon-container {
            transform: scale(1.1);
        }

        .icon-container svg {
            width: 45px;
            height: 45px;
        }

        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.3;
            border-radius: 8px;
            transition: all 0.5s ease;
        }

        .benefit-description {
            font-size: 1rem;
            color: #495057;
            line-height: 1.7;
            margin: 0;
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .section-heading {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .benefit-card {
                padding: 35px 25px;
            }

            .benefit-title {
                font-size: 1.35rem;
            }

            .benefit-description {
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .benefits-section {
                padding: 40px 15px;
            }

            .section-heading {
                font-size: 1.8rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-card {
                padding: 30px 20px;
            }

            .icon-container {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .icon-container svg {
                width: 40px;
                height: 40px;
            }

            .benefit-title {
                font-size: 1.25rem;
                margin-bottom: 12px;
            }

            .benefit-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .section-heading {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .benefit-card {
                padding: 25px 18px;
            }

            .icon-container {
                width: 65px;
                height: 65px;
            }

            .icon-container svg {
                width: 35px;
                height: 35px;
            }

            .benefit-title {
                font-size: 1.15rem;
            }

            .benefit-description {
                font-size: 0.875rem;
            }
        }





























        .about-section-unique {
            max-width: 1400px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        /* Left Side - Image Section */
        .image-section-unique {
            position: relative;
        }

        .wave-decoration-unique {
            position: absolute;
            left: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            opacity: 0.6;
            z-index: 0;
        }

        .image-container-unique {
            position: relative;
            z-index: 1;
        }

        .main-image-unique {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            display: block;
        }

        .experience-badge-unique {
            position: absolute;
            bottom: 30px;
            right: -30px;
            background: white;
            padding: 30px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .experience-badge-unique h3 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .experience-badge-unique p {
            font-size: 1.1rem;
            color: #6c757d;
            font-weight: 500;
        }

        /* Right Side - Content Section */
        .content-section-unique {
            padding-left: 20px;
        }

        .main-heading-unique {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .main-description-unique {
            font-size: 1.05rem;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .features-list-unique {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .feature-item-unique {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon-unique {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #01499b 0%, #032b61 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-unique svg {
            width: 32px;
            height: 32px;
        }

        .feature-content-unique h3 {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-content-unique p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Signature Section */
        .signature-section-unique {
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .signature-image-unique {
            width: 120px;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .signature-info-unique h4 {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .signature-info-unique p {
            font-size: 0.95rem;
            color: #6c757d;
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .about-section-unique {
                gap: 40px;
            }

            .wave-decoration-unique {
                width: 300px;
                left: -50px;
            }

            .main-heading-unique {
                font-size: 2.3rem;
            }

            .experience-badge-unique {
                right: -15px;
                padding: 25px 35px;
            }

            .experience-badge-unique h3 {
                font-size: 1.7rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .about-section-unique {
                padding: 40px 15px;
            }

            .about-section-unique {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .wave-decoration-unique {
                display: none;
            }

            .image-section-unique {
                order: 1;
            }

            .content-section-unique {
                order: 2;
                padding-left: 0;
            }

            .experience-badge-unique {
                position: static;
                display: inline-block;
                margin-top: 20px;
                padding: 20px 30px;
            }

            .experience-badge-unique h3 {
                font-size: 1.5rem;
            }

            .experience-badge-unique p {
                font-size: 1rem;
            }

            .main-heading-unique {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .main-description-unique {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .features-list-unique {
                gap: 25px;
            }

            .feature-item-unique {
                gap: 15px;
            }

            .feature-icon-unique {
                width: 55px;
                height: 55px;
            }

            .feature-icon-unique svg {
                width: 28px;
                height: 28px;
            }

            .feature-content-unique h3 {
                font-size: 1.2rem;
            }

            .feature-content-unique p {
                font-size: 0.9rem;
            }

            .signature-section-unique {
                flex-direction: column;
                align-items: flex-start;
                margin-top: 30px;
            }

            .signature-image-unique {
                width: 100px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .about-section-unique {
                padding: 30px 12px;
            }

            .main-heading-unique {
                font-size: 1.7rem;
            }

            .main-description-unique {
                font-size: 0.95rem;
            }

            .experience-badge-unique {
                padding: 18px 25px;
            }

            .feature-icon-unique {
                width: 50px;
                height: 50px;
            }

            .feature-icon-unique svg {
                width: 26px;
                height: 26px;
            }

            .feature-content-unique h3 {
                font-size: 1.1rem;
            }

            .signature-info-unique h4 {
                font-size: 1.15rem;
            }

            .signature-info-unique p {
                font-size: 0.85rem;
            }
        }




















        /* graphic designing  */

         .tools-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .tools-title {
            font-size: 2.8rem;
            font-weight: 300;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 40px;
            line-height: 1.3;
        }

        .tools-description {
            text-align: center;
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .tool-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: #f0f0f0;
        }

        .tool-icon {
            width: 100px;
            height: 100px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover .tool-icon {
            transform: scale(1.1) rotate(5deg);
        }

       

        .tool-icon svg {
            width: 100px;
            height: 100px;
        }

        .tool-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.4;
        }

        @media (max-width: 1024px) {
            .tools-title {
                font-size: 2.3rem;
            }

            .tools-description {
                font-size: 1rem;
            }

            .tools-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 10px;
            }

            .tool-icon {
                width: 85px;
                height: 85px;
            }

            .tool-icon svg {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 768px) {
            .tools-section {
                padding: 40px 15px;
            }

            .tools-title {
                font-size: 1.9rem;
            }

            .tools-description {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .tools-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 7px;
                margin-top: 40px;
            }

            .tool-card {
                padding: 30px 20px;
                gap: 15px;
            }

            .tool-icon {
                width: 75px;
                height: 75px;
                border-radius: 18px;
            }

            .tool-icon svg {
                width: 60px;
                height: 60px;
            }

            .tool-name {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .tools-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }

            .tools-description {
                font-size: 0.88rem;
                margin-bottom: 20px;
            }

            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 5px;
            }

            .tool-card {
                padding: 25px 15px;
                border-radius: 15px;
            }

            .tool-icon {
                width: 65px;
                height: 65px;
                border-radius: 15px;
            }

            .tool-icon svg {
                width: 45px;
                height: 45px;
            }

            .tool-name {
                font-size: 0.9rem;
            }
        }




















        .workE-section{
            max-width: 1300px;
            width: 100%;
            margin: 1rem auto;
        }
        .workE-section h1{
            margin-top: 2rem;
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-align: center;
        }
        .workET-wrapper{
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1rem;
            align-items: center;
        }
        .wrapWork{
            border-top-right-radius: 1.5rem;
            border-bottom-left-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid #000;
            box-shadow: 0 5px 10px #c3c4c4;
            padding: .7rem;
            transition: all .3s ease;

        }
        .wrapWork:hover .imageWork img{
            transform: scale(1.02);
        }
        .wrapWork:hover{
            transform: translateY(-5px);
            box-shadow: 0 8px 10px #0086b64e;
        }
        .imageWork{
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .imageWork img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .3s ease;
        }
        .workDets p{
            text-align: center;
            font-size: 1.1rem;
            color: #353535;
            text-shadow:0px  10px 3px #a7a5a5;

        }










        .course-badge{
            width: 100%;
            height: 40vh;
            background-image: url("/assets/bgcourse.jpg");
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
        }
          .course-badge2{
            width: 100%;
            height: 90vh;
            background-image: url("/assets/3968259.jpg");
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }



          .srv_wrapper_01 {
            max-width: 1300px;
            margin: 2rem auto;
            overflow: hidden;
            padding: .5rem;
        }

        /* Header */
        .srv_header_02 {
            text-align: center;
            margin-bottom: 60px;
        }

        .srv_header_02 h1 {
            font-size: 3.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .srv_header_02 h1 span {
            color: #026bcd;
        }

        .srv_header_02 p {
            font-size: 1.25rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid */
        .srv_grid_03 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Service Card */
        .srv_box_04 {
            position: relative;
            background: transparent;
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .srv_box_04::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #026bcd 0%, #032b61 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .srv_box_04:hover::before {
            opacity: 1;
        }

        .srv_box_04:hover {
            border-color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(2, 107, 205, 0.3);
        }

        /* Content Wrapper */
        .srv_content_05 {
            position: relative;
            z-index: 2;
        }

        /* Icon */
        .srv_icon_wrap_06 {
            display: inline-flex;
            padding: 15px;
            background: #e3f2fd;
            border-radius: 12px;
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }

        .srv_box_04:hover .srv_icon_wrap_06 {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1) rotate(6deg);
        }

        .srv_icon_07 {
            width: 35px;
            height: 35px;
            stroke: #026bcd;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.5s ease;
        }

        .srv_box_04:hover .srv_icon_07 {
            stroke: #ffffff;
        }

        /* Title */
        .srv_box_04 h3 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.5s ease;
        }

        .srv_box_04:hover h3 {
            color: #ffffff;
        }

        /* Description */
        .srv_box_04 p {
            color: #666;
            line-height: 1.7;
            transition: color 0.5s ease;
        }

        .srv_box_04:hover p {
            color: #f0f0f0;
        }
        .srv_content_05 a{
            text-decoration: none;
            color: #01499b;
            font-size: 1.2rem;

        }
        .srv_box_04:hover a::after{
           content: '↗';
           font-size: 1.5rem;
           padding-left: .3rem;
            color: rgb(0, 0, 0);
            font-weight: bold;
            
        }
        .srv_box_04:hover a{
            color: #070707;
            background-color: #fff;
            padding: .2rem;
            border-radius: .4rem;
            border: 1px solid #000;
            
        }


        /* Bottom Line */
        .srv_bottom_line_08 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, #026bcd, #032b61);
            transform: scaleX(0);
            transition: transform 0.5s ease;
            z-index: 3;
        }

        .srv_box_04:hover .srv_bottom_line_08 {
            transform: scaleX(1);
        }

        /* Corner Decoration */
        .srv_corner_deco_09 {
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: rgba(2, 107, 205, 0.1);
            border-radius: 0 0 0 100%;
            transform: translate(40px, -40px);
            transition: all 0.5s ease;
            z-index: 1;
        }

        .srv_box_04:hover .srv_corner_deco_09 {
            transform: translate(0, 0);
            background: rgba(255, 255, 255, 0.1);
        }

        /* CTA Button */
        .srv_cta_section_10 {
            text-align: center;
            margin-top: 60px;
        }

        .srv_cta_btn_11 {
            position: relative;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, #026bcd 0%, #032b61 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(2, 107, 205, 0.3);
        }

        .srv_cta_btn_11::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .srv_cta_btn_11:hover::before {
            transform: scaleX(1);
        }

        .srv_cta_btn_11:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(2, 107, 205, 0.4);
        }

        .srv_cta_btn_11 span {
            position: relative;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .srv_header_02 h1 {
                font-size: 2.5rem;
            }

            .srv_header_02 p {
                font-size: 1rem;
            }

            .srv_grid_03 {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .srv_box_04 {
                padding: 30px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .srv_grid_03 {
                grid-template-columns: repeat(2, 1fr);
            }
        }








        .Lsec_3Ben{
            width: 100%;
            height: 40vh;
            background-image: url("/assets/2112.i301.031.S.m004.c13.UI\ and\ UX\ designers\ concepts\ isometric\ composition.jpg");
            background-position: center;
            background-attachment: fixed;
            background-size: cover;
            background-repeat: no-repeat;
            display: grid;
            padding: 1rem;
            grid-template-columns: repeat(5,1fr);
        }

        .web_1des_cou{

            max-width: 1300px;
            width: 100%;
            margin: 0 auto;

        }




























        /* ------------------------------
   COURSE SECTION LAYOUT
--------------------------------*/
.course_section_01 {
    padding: 60px 0;
    background: #f8fbff;
}

.course_inner_01 {
    max-width: 1300px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* ------------------------------
   LEFT SIDE CONTENT
--------------------------------*/
.content_section_01 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content_tag_01 {
    display: inline-block;
    padding: 6px 14px;
    background: #024892;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.content_heading_01 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #01274e;
}

.content_description_01 {
    font-size: 17px;
    line-height: 1.6;
    color: #374b61;
    max-width: 700px;
}

.designImage{
    margin-top: 2rem;
    width: 100%;
    height: 100%;
    border-top-right-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem;
    box-shadow: 0 5px 15px #6f6f6f;
    overflow: hidden;
}
.content_section_01 img{
    object-fit: cover;
    width: 100%;
    transform: scale(1.02);
    height: 100%;
    transition: all .3s ease;
}
.content_section_01 img:hover{
    transform: scale(1.15);
}

/* ------------------------------
   FEATURES LIST
--------------------------------*/
.features_list_01 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.feature_item_01 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature_item_01:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature_icon_01 svg {
    color: #024892;
}

.feature_content_01 h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #01274e;
}

.feature_content_01 p {
    font-size: 14px;
    color: #536981;
}

/* ------------------------------
   CTA BUTTONS
--------------------------------*/
.course_cta_01 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.content_button_01 {
    padding: 12px 22px;
    background: #024892;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.content_button_01:hover {
    background: #01376e;
}

.content_link_01 {
    font-size: 16px;
    font-weight: 600;
    color: #024892;
    text-decoration: underline;
}

/* ------------------------------
   RIGHT SIDE — SYLLABUS CARDS
--------------------------------*/
.syllabus_section_01 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.syllabus_card_01,
.outcomes_card_01,
.who_card_01 {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.syllabus_title_01 {
    font-size: 20px;
    font-weight: 700;
    color: #01274e;
    margin-bottom: 12px;
}

.syllabus_list_01,
.outcomes_list_01 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syllabus_list_01 li,
.outcomes_list_01 li {
    padding: 7px 0;
    font-size: 15px;
    color: #374b61;
    border-bottom: 1px solid #e9eef5;
}

.syllabus_list_01 li:last-child,
.outcomes_list_01 li:last-child {
    border-bottom: none;
}

.who_card_01 p {
    font-size: 15px;
    color: #374b61;
    line-height: 1.5;
}

/* ------------------------------
   RESPONSIVE (TABLET)
--------------------------------*/
@media (max-width: 992px) {
    .course_inner_01 {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   RESPONSIVE (MOBILE)
--------------------------------*/
@media (max-width: 600px) {
    .content_heading_01 {
        font-size: 28px;
    }
    .content_description_01 {
        font-size: 15px;
    }
    .feature_item_01 {
        padding: 15px;
    }
    .course_cta_01 {
        flex-direction: column;
        align-items: flex-start;
    }
}
















/* pagenotfound  */


.main_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height: 30em;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5em;
}

.antenna {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #f27405;
  margin-bottom: -6em;
  margin-left: 0em;
  z-index: -1;
}
.antenna_shadow {
  position: absolute;
  background-color: transparent;
  width: 50px;
  height: 56px;
  margin-left: 1.68em;
  border-radius: 45%;
  transform: rotate(140deg);
  border: 4px solid transparent;
  box-shadow:
    inset 0px 16px #a85103,
    inset 0px 16px 1px 1px #a85103;
  -moz-box-shadow:
    inset 0px 16px #a85103,
    inset 0px 16px 1px 1px #a85103;
}
.antenna::after {
  content: "";
  position: absolute;
  margin-top: -9.4em;
  margin-left: 0.4em;
  transform: rotate(-25deg);
  width: 1em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #f69e50;
}
.antenna::before {
  content: "";
  position: absolute;
  margin-top: 0.2em;
  margin-left: 1.25em;
  transform: rotate(-20deg);
  width: 1.5em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #f69e50;
}
.a1 {
  position: relative;
  top: -102%;
  left: -130%;
  width: 12em;
  height: 5.5em;
  border-radius: 50px;
  background-image: linear-gradient(
    #171717,
    #171717,
    #353535,
    #353535,
    #171717
  );
  transform: rotate(-29deg);
  clip-path: polygon(50% 0%, 49% 100%, 52% 100%);
}
.a1d {
  position: relative;
  top: -211%;
  left: -35%;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #979797;
  z-index: 99;
}
.a2 {
  position: relative;
  top: -210%;
  left: -10%;
  width: 12em;
  height: 4em;
  border-radius: 50px;
  background-color: #171717;
  background-image: linear-gradient(
    #171717,
    #171717,
    #353535,
    #353535,
    #171717
  );
  margin-right: 5em;
  clip-path: polygon(
    47% 0,
    47% 0,
    34% 34%,
    54% 25%,
    32% 100%,
    29% 96%,
    49% 32%,
    30% 38%
  );
  transform: rotate(-8deg);
}
.a2d {
  position: relative;
  top: -294%;
  left: 94%;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #979797;
  z-index: 99;
}

.notfound_text {
  background-color: black;
  padding-left: 0.3em;
  padding-right: 0.3em;
  font-size: 0.75em;
  color: white;
  letter-spacing: 0;
  border-radius: 5px;
  z-index: 10;
}
.tv {
  width: 17em;
  height: 9em;
  margin-top: 3em;
  border-radius: 15px;
  background-color: #d36604;
  display: flex;
  justify-content: center;
  border: 2px solid #1d0e01;
  box-shadow: inset 0.2em 0.2em #e69635;
}
.tv::after {
  content: "";
  position: absolute;
  width: 17em;
  height: 9em;
  border-radius: 15px;
  background:
    repeating-radial-gradient(#d36604 0 0.0001%, #00000070 0 0.0002%) 50% 0/2500px
      2500px,
    repeating-conic-gradient(#d36604 0 0.0001%, #00000070 0 0.0002%) 60% 60%/2500px
      2500px;
  background-blend-mode: difference;
  opacity: 0.09;
}
.curve_svg {
  position: absolute;
  margin-top: 0.25em;
  margin-left: -0.25em;
  height: 12px;
  width: 12px;
}
.display_div {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 3.5px 3.5px 0px #e69635;
}
.screen_out {
  width: auto;
  height: auto;

  border-radius: 10px;
}
.screen_out1 {
  width: 11em;
  height: 7.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.screen {
  width: 13em;
  height: 7.85em;
  font-family: Montserrat;
  border: 2px solid #1d0e01;
  background:
    repeating-radial-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 50% 0/2500px
      2500px,
    repeating-conic-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 60% 60%/2500px
      2500px;
  background-blend-mode: difference;
  animation: b 0.2s infinite alternate;
  border-radius: 10px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #252525;
  letter-spacing: 0.15em;
  text-align: center;
}

.screenM {
  width: 13em;
  height: 7.85em;
  position: relative;
  font-family: Montserrat;
  background: linear-gradient(
    to right,
    #002fc6 0%,
    #002bb2 14.2857142857%,
    #3a3a3a 14.2857142857%,
    #303030 28.5714285714%,
    #ff0afe 28.5714285714%,
    #f500f4 42.8571428571%,
    #6c6c6c 42.8571428571%,
    #626262 57.1428571429%,
    #0affd9 57.1428571429%,
    #00f5ce 71.4285714286%,
    #3a3a3a 71.4285714286%,
    #303030 85.7142857143%,
    white 85.7142857143%,
    #fafafa 100%
  );
  border-radius: 10px;
  border: 2px solid black;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #252525;
  letter-spacing: 0.15em;
  text-align: center;
  overflow: hidden;
}
.screenM:before,
.screenM:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
.screenM:before {
  top: 0;
  height: 68.4782608696%;
  background: linear-gradient(
    to right,
    white 0%,
    #fafafa 14.2857142857%,
    #ffe60a 14.2857142857%,
    #f5dc00 28.5714285714%,
    #0affd9 28.5714285714%,
    #00f5ce 42.8571428571%,
    #10ea00 42.8571428571%,
    #0ed600 57.1428571429%,
    #ff0afe 57.1428571429%,
    #f500f4 71.4285714286%,
    #ed0014 71.4285714286%,
    #d90012 85.7142857143%,
    #002fc6 85.7142857143%,
    #002bb2 100%
  );
}
.screenM:after {
  bottom: 0;
  height: 21.7391304348%;
  background: linear-gradient(
    to right,
    #006c6b 0%,
    #005857 16.6666666667%,
    white 16.6666666667%,
    #fafafa 33.3333333333%,
    #001b75 33.3333333333%,
    #001761 50%,
    #6c6c6c 50%,
    #626262 66.6666666667%,
    #929292 66.6666666667%,
    #888888 83.3333333333%,
    #3a3a3a 83.3333333333%,
    #303030 100%
  );
}

@keyframes b {
  100% {
    background-position:
      50% 0,
      60% 50%;
  }
}

/* Another Error Screen to Use 

.screen {
  width: 13em;
  height: 7.85em;
  position: relative;
  background: linear-gradient(to right, #002fc6 0%, #002bb2 14.2857142857%, #3a3a3a 14.2857142857%, #303030 28.5714285714%, #ff0afe 28.5714285714%, #f500f4 42.8571428571%, #6c6c6c 42.8571428571%, #626262 57.1428571429%, #0affd9 57.1428571429%, #00f5ce 71.4285714286%, #3a3a3a 71.4285714286%, #303030 85.7142857143%, white 85.7142857143%, #fafafa 100%);
  border-radius: 10px;
  border: 2px solid black;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #252525;
  letter-spacing: 0.15em;
  text-align: center;
  overflow: hidden;
}
.screen:before, .screen:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
.screen:before {
  top: 0;
  height: 68.4782608696%;
  background: linear-gradient(to right, white 0%, #fafafa 14.2857142857%, #ffe60a 14.2857142857%, #f5dc00 28.5714285714%, #0affd9 28.5714285714%, #00f5ce 42.8571428571%, #10ea00 42.8571428571%, #0ed600 57.1428571429%, #ff0afe 57.1428571429%, #f500f4 71.4285714286%, #ed0014 71.4285714286%, #d90012 85.7142857143%, #002fc6 85.7142857143%, #002bb2 100%);
}
.screen:after {
  bottom: 0;
  height: 21.7391304348%;
  background: linear-gradient(to right, #006c6b 0%, #005857 16.6666666667%, white 16.6666666667%, #fafafa 33.3333333333%, #001b75 33.3333333333%, #001761 50%, #6c6c6c 50%, #626262 66.6666666667%, #929292 66.6666666667%, #888888 83.3333333333%, #3a3a3a 83.3333333333%, #303030 100%);
}

  */

.lines {
  display: flex;
  column-gap: 0.1em;
  align-self: flex-end;
}
.line1,
.line3 {
  width: 2px;
  height: 0.5em;
  background-color: black;
  border-radius: 25px 25px 0px 0px;
  margin-top: 0.5em;
}
.line2 {
  flex-grow: 1;
  width: 2px;
  height: 1em;
  background-color: black;
  border-radius: 25px 25px 0px 0px;
}

.buttons_div {
  width: 4.25em;
  align-self: center;
  height: 8em;
  background-color: #e69635;
  border: 2px solid #1d0e01;
  padding: 0.6em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.75em;
  box-shadow: 3px 3px 0px #e69635;
}
.b1 {
  width: 1.65em;
  height: 1.65em;
  border-radius: 50%;
  background-color: #7f5934;
  border: 2px solid black;
  box-shadow:
    inset 2px 2px 1px #b49577,
    -2px 0px #513721,
    -2px 0px 0px 1px black;
}
.b1::before {
  content: "";
  position: absolute;
  margin-top: 1em;
  margin-left: 0.5em;
  transform: rotate(47deg);
  border-radius: 5px;
  width: 0.1em;
  height: 0.4em;
  background-color: #000000;
}
.b1::after {
  content: "";
  position: absolute;
  margin-top: 0.9em;
  margin-left: 0.8em;
  transform: rotate(47deg);
  border-radius: 5px;
  width: 0.1em;
  height: 0.55em;
  background-color: #000000;
}
.b1 div {
  content: "";
  position: absolute;
  margin-top: -0.1em;
  margin-left: 0.65em;
  transform: rotate(45deg);
  width: 0.15em;
  height: 1.5em;
  background-color: #000000;
}
.b2 {
  width: 1.65em;
  height: 1.65em;
  border-radius: 50%;
  background-color: #7f5934;
  border: 2px solid black;
  box-shadow:
    inset 2px 2px 1px #b49577,
    -2px 0px #513721,
    -2px 0px 0px 1px black;
}
.b2::before {
  content: "";
  position: absolute;
  margin-top: 1.05em;
  margin-left: 0.8em;
  transform: rotate(-45deg);
  border-radius: 5px;
  width: 0.15em;
  height: 0.4em;
  background-color: #000000;
}
.b2::after {
  content: "";
  position: absolute;
  margin-top: -0.1em;
  margin-left: 0.65em;
  transform: rotate(-45deg);
  width: 0.15em;
  height: 1.5em;
  background-color: #000000;
}
.speakers {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.speakers .g1 {
  display: flex;
  column-gap: 0.25em;
}
.speakers .g1 .g11,
.g12,
.g13 {
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background-color: #7f5934;
  border: 2px solid black;
  box-shadow: inset 1.25px 1.25px 1px #b49577;
}
.speakers .g {
  width: auto;
  height: 2px;
  background-color: #171717;
}

.bottom {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8.7em;
}
.base1 {
  height: 1em;
  width: 2em;
  border: 2px solid #171717;
  background-color: #4d4d4d;
  margin-top: -0.15em;
  z-index: -1;
}
.base2 {
  height: 1em;
  width: 2em;
  border: 2px solid #171717;
  background-color: #4d4d4d;
  margin-top: -0.15em;
  z-index: -1;
}
.base3 {
  position: absolute;
  height: 0.15em;
  width: 17.5em;
  background-color: #171717;
  margin-top: 0.8em;
}

.text_404 {
  position: absolute;
  display: flex;
  flex-direction: row;
  column-gap: 6em;
  z-index: -5;
  margin-bottom: 2em;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  font-family: Montserrat;
}
.text_4041 {
  transform: scaleY(24.5) scaleX(9);
}
.text_4042 {
  transform: scaleY(24.5) scaleX(9);
}
.text_4043 {
  transform: scaleY(24.5) scaleX(9);
}

@media only screen and (max-width: 495px) {
  .text_404 {
    column-gap: 6em;
  }
}
@media only screen and (max-width: 395px) {
  .text_404 {
    column-gap: 4em;
  }
  .text_4041 {
    transform: scaleY(25) scaleX(8);
  }
  .text_4042 {
    transform: scaleY(25) scaleX(8);
  }
  .text_4043 {
    transform: scaleY(25) scaleX(8);
  }
}

@media (max-width: 275px), (max-height: 520px) {
  .main {
    position: relative;
  }
}

@media only screen and (max-width: 1024px) {
  .screenM {
    display: flex;
  }
  .screen {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  .screen {
    display: flex;
  }
  .screenM {
    display: none;
  }
}
































/* ==========================
           FREE COURSES HERO SECTION
        ========================== */
        .free_courses_hero {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 20px;
            text-align: center;
        }

        .free_courses_hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #01274e;
            margin-bottom: 1rem;
        }

        .free_courses_hero p {
            font-size: 1.2rem;
            color: #374b61;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* ==========================
           COURSE GRID SECTION
        ========================== */
        .courses_grid_container {
            max-width: 1400px;
            margin: 0 auto 4rem;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        /* ==========================
           INDIVIDUAL COURSE CARD
        ========================== */
        .course_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .course_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        /* Video Section */
        .course_video_wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            background: #000;
            overflow: hidden;
        }

        .course_video_wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Course Content */
        .course_content {
            padding: 25px;
        }

        .course_category {
            display: inline-block;
            padding: 6px 14px;
            background: linear-gradient(135deg, #01499b 0%, #032b61 100%);
            color: white;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .course_title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #01274e;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .course_description {
            font-size: 1rem;
            color: #536981;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Course Features */
        .course_features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .course_feature_item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #374b61;
        }

        .course_feature_icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #01499b 0%, #032b61 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .course_feature_icon svg {
            width: 12px;
            height: 12px;
        }

        /* Course Stats */
        .course_stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #e9eef5;
        }

        .course_stat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #536981;
        }

        .course_stat svg {
            width: 18px;
            height: 18px;
            fill: #024892;
        }

        /* CTA Button */
        .course_cta {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .course_button {
            flex: 1;
            padding: 12px 20px;
            background: linear-gradient(135deg, #01499b 0%, #032b61 100%);
            color: white;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .course_button:hover {
            background: white;
            color: #01499b;
            border-color: #01499b;
        }

        .course_button_outline {
            background: white;
            color: #01499b;
            border: 2px solid #01499b;
        }

        .course_button_outline:hover {
            background: linear-gradient(135deg, #01499b 0%, #032b61 100%);
            color: white;
            border-color: transparent;
        }

        /* ==========================
           RESPONSIVE - TABLET
        ========================== */
        @media (max-width: 1024px) {
            .free_courses_hero h1 {
                font-size: 2.5rem;
            }

            .courses_grid_container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }

            .course_title {
                font-size: 1.6rem;
            }
        }

        /* ==========================
           RESPONSIVE - MOBILE
        ========================== */
        @media (max-width: 768px) {
            .free_courses_hero {
                margin: 2rem auto;
            }

            .free_courses_hero h1 {
                font-size: 2rem;
            }

            .free_courses_hero p {
                font-size: 1rem;
            }

            .courses_grid_container {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 15px;
            }

            .course_content {
                padding: 20px;
            }

            .course_title {
                font-size: 1.5rem;
            }

            .course_description {
                font-size: 0.95rem;
            }

            .course_cta {
                flex-direction: column;
            }

            .course_stats {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
        }

        /* ==========================
           RESPONSIVE - SMALL MOBILE
        ========================== */
        @media (max-width: 480px) {
            .free_courses_hero h1 {
                font-size: 1.7rem;
            }

            .free_courses_hero p {
                font-size: 0.9rem;
            }

            .course_title {
                font-size: 1.3rem;
            }

            .course_button {
                font-size: 0.9rem;
                padding: 10px 16px;
            }
        }































        /* career page  */


         .headerr1 {
            background-color: #032c61e7;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .headerr1 h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .header1 p {
            font-size: 1.2rem;
            opacity: 0.9;
        }


        

        .positions {
            padding: 60px 20px;
        }

        .positions h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            color: #333;
        }

        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .job-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .job-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #032b61 0%, #0465e3 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }

        .job-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .job-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .job-card ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .job-card ul li {
            padding: 5px 0;
            color: #555;
        }

        .job-card ul li:before {
            content: "✓ ";
            color: #032b61;
            font-weight: bold;
            margin-right: 8px;
        }

        .apply-btn {
            background: linear-gradient(135deg, #032b61 0%, #0562dc 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s;
            width: 100%;
        }

        .apply-btn:hover {
            transform: scale(1.05);
        }

        .contact1-section1 {
            background: #f8f9fa;
            padding:10px 20px;
        }

        .contact1-section1 h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #333;
        }

        .contact1-container1 {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #032b61;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        
        

        @media (max-width: 768px) {
            .headerr1 h1 {
                font-size: 2rem;
            }

            .headerr1 p {
                font-size: 1rem;
            }

            .intro h2,
            .positions h2,
            .contact1-section1 h2 {
                font-size: 1.5rem;
            }

            .job-grid {
                grid-template-columns: 1fr;
            }

            .contact1-container1 {
                padding: 25px;
            }
        }

        .success-message {
            display: none;
            background: #006af4;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
        }

        