    :root {
        --grad: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        padding-top: 90px;
    }

    /* Top Bar */
    #top-bar {
        background: var(--grad);
        color: #fff;
        font-size: 0.9rem;
        padding: 6px 0;
    }

    #top-bar a {
        color: #fff;
        text-decoration: none;
        margin-left: 4px;
    }

    #top-bar a:hover {
        text-decoration: underline;
    }

    /* Navbar */
    .navbar {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    }

    .navbar .nav-link {
        color: #333 !important;
        font-weight: 500;
        margin-left: 1rem;
        transition: color .3s ease;
    }

    .navbar .nav-link:hover {
        color: #6F86D6 !important;
    }

    /* Buttons */
    .btn-techrail {
        background: var(--grad);
        color: #fff !important;
        padding: .6rem 1.4rem;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }

    .btn-techrail:hover {
        transform: translateY(-3px);
        opacity: .9;
    }

    /* Sections */
    section {
        padding: 6rem 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    a {
        text-decoration: none;
        background-color: transparent;
    }

    h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
    }

    .brand-logo {
        width: 90px;
        height: auto;
        filter: grayscale(10%);
    }

    /* Hero */
    .hero {
        display: flex;
        align-items: center;
        /* Vertical centering */
        justify-content: space-between;
        flex-wrap: wrap;
        min-height: calc(100vh - 90px);
        /* subtracts navbar+topbar height */
        padding: 0 5vw;
        background: linear-gradient(135deg, #fdfbfb, #ebedee);
    }


    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    }

    .hero p {
        font-size: 1.2rem;
        color: #555;
        margin-top: 0.1rem;
        /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); */
    }

    .hero-left {
        max-width: 55%;
    }

    .hero-left p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin-top: 1rem;
        color: #555;
    }

    .hero-right {
        max-width: 40%;
        position: relative;
    }

    /* Soft glowing ring behind the image */
    .hero-right::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 110%;
        background: radial-gradient(circle, rgba(111, 134, 214, 0.3), transparent 70%);
        z-index: 1;
        animation: pulse 4s infinite;
    }

    .hero-right img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 2;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
        /* subtle depth */
        overflow: hidden;
        transition: transform 0.5s ease, filter 0.5s ease;
        animation: pulse 4s infinite;
    }

    /* Gradient glare overlay */
    .hero-right::after {
        content: "";
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.25),
                rgba(255, 255, 255, 0) 70%);
        border-radius: 20px;
        pointer-events: none;
        z-index: 3;
        animation: pulse 4s infinite;
    }

    /* Subtle hover effect */
    .hero-right img:hover {
        transform: scale(1.03);
        filter: brightness(1.1);
    }


    /* Floating animation */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Pulsing glow animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.4;
        }

        100% {
            transform: scale(1);
            opacity: 0.7;
        }
    }


    .blob {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        filter: blur(100px);
    }

    .blob1 {
        width: 40vw;
        height: 40vw;
        top: -10%;
        right: -10%;
        background: linear-gradient(135deg, #e1e2e8ff, #ebedee);
    }

    .blob2 {
        width: 25vw;
        height: 25vw;
        bottom: -5%;
        right: -5%;
        background: #e1e2e8ff;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero {
            flex-direction: column-reverse;
            text-align: center;
            min-height: auto;
            padding: 8vh 5vw;
        }

        .hero-left,
        .hero-right {
            max-width: 100%;
        }

        .hero-right img {
            max-width: 70%;
            margin: 0 auto;
            display: block;
        }

        .blob1 {
            width: 60vw;
            height: 60vw;
            top: -20%;
            right: -25%;
        }

        .blob2 {
            width: 40vw;
            height: 40vw;
            bottom: -15%;
            right: -15%;
        }

        .navbar-brand img {
            width: 120px;
        }
    }

    @media (max-width: 576px) {
        .hero-left h1 {
            font-size: 2rem;
        }

        .hero-left p {
            font-size: 1rem;
        }

        .blob1 {
            width: 80vw;
            height: 80vw;
            top: -25%;
            right: -30%;
        }

        .blob2 {
            width: 50vw;
            height: 50vw;
            bottom: -20%;
            right: -20%;
        }

        .navbar-brand img {
            width: 100px;
        }

        section {
            padding: 3rem 0;
        }
    }

    #aboutus {
        position: relative;
        z-index: 5;
        /* above blobs */
        padding: 6rem 0;
    }

    #aboutus p,
    #aboutus li {
        color: #333;
        /* more readable */
    }

    .hero {
        min-height: 80vh;
        /* or adjust to fit nicely */
    }

    .info-card,
    .founder-card,
    .product-card,
    .service-card {
        border-radius: 20px;
        background: #fff;
        transition: all .4s ease;
        padding: 2rem;
        height: 100%;
    }

    .info-card:hover,
    .founder-card:hover,
    .product-card:hover,
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    }

    .info-card i {
        font-size: 2.5rem;
        background: var(--grad);
        color: #fff !important;
        margin-bottom: 1rem;
    }

    .founder-card img {
        border: 5px solid var(--grad);
        border-radius: 90%;
        width: 120px;
    }

    [data-aos] {
        transition: all 1s ease;
    }

    .founder-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .founder-card img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(230, 57, 70, 0.8);
    }

    .social-links a:hover {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    /* Bank carousel */
    .bank-carousel-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        margin: 4rem 0;
    }

    .bank-carousel {
        display: flex;
        gap: 2rem;
        animation: scrollBanks 20s linear infinite;
    }

    .bank-carousel img {
        height: 70px;
        object-fit: contain;
    }

    @keyframes scrollBanks {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Testimonials */
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .testimonials {
        position: relative;
        padding: 5rem 0;
        background: #f5f7fa;
        overflow: hidden;
    }

    .testimonials .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #ffffff99, #f1f5f999);
        backdrop-filter: blur(6px);
        opacity: .05;
    }

    h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
    }

    .testimonial-card {
        background: #fff;
        padding: 3rem 2.5rem;
        border-radius: 20px;
        max-width: 750px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
        text-align: center;
        position: relative;
    }

    .testimonial-card .quote-icon {
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 4rem;
        color: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        opacity: .2;
    }

    .top-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .brand-logo {
        width: 90px;
        height: auto;
        filter: grayscale(20%);
    }

    .stars {
        color: #f4c150;
        font-size: 1.6rem;
    }

    .testimonial-card p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .testimonial-card h5 {
        font-weight: 600;
        color: #222;
        margin-bottom: 1rem;
    }

    .rating-breakdown {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        font-size: .95rem;
        color: #666;
    }

    .carousel-item {
        padding: 2rem 0;
    }

    #testimonialSlider .carousel-inner {
        display: flex;
    }

    #testimonialSlider .carousel-item {
        flex: 0 0 100%;
        transition: transform 1s ease-in-out;
    }

    .footer-link {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: #48C6EF;
        text-shadow: 0 0 6px rgba(72, 198, 239, 0.8);
    }

    .footer-social {
        margin-right: 10px;
        color: #ccc;
        font-size: 16px;
        transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
    }

    .footer-social:hover {
        color: #48C6EF;
        transform: scale(1.15);
        text-shadow: 0 0 8px rgba(72, 198, 239, 0.8);
    }

    @media(max-width:768px) {
        .footer-section div[style*="justify-content:space-between"] {
            flex-direction: column;
            align-items: center !important;
            text-align: center !important;
        }

        .footer-section div[style*="text-align:right"] ul {
            text-align: center !important;
        }
    }

    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .glowing-title {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        animation: slideIn 1s ease-out forwards;
    }

    .glowing-title {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        animation: slideIn 1s ease-out forwards;
    }
    /* Glass Cards */
    .glass-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .glass-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(111, 134, 214, 0.25);
        border-color: rgba(111, 134, 214, 0.4);
    }

    /* Background illustration */
    .services-bg {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translateX(-50%);
        background: url('https://www.transparenttextures.com/patterns/axiom-pattern.png'),
            linear-gradient(135deg, #48C6EF 0%, #6F86D6 50%, #9B59B6 100%);
        background-size: cover;
        opacity: 0.08;
        z-index: 0;
        pointer-events: none;
    }

    /* Section styling */
    .services-section {
        position: relative;
        background: #f9f9f9;
        overflow: hidden;
        z-index: 1;
    }

    .section-title h2 {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .section-title .subtitle {
        font-size: 1rem;
        color: #555;
        margin-top: 0.5rem;
    }

    .info-card {
        background: #fff;
        border-radius: 15px;
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        z-index: 1;
    }

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .icon-wrapper {
        font-size: 2.5rem;
        color: #6F86D6;
        background: rgba(111, 134, 214, 0.1);
        padding: 15px;
        border-radius: 50%;
        display: inline-block;
    }

    .service-title {
        margin: 15px 0;
        font-weight: 600;
        font-size: 1.3rem;
    }

    /* Icons */
    .icon-circle {
        font-size: 2rem;
        color: #fff;
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        margin: 0 auto;
        background: linear-gradient(135deg, #48C6EF, #9B59B6);
        box-shadow: 0 4px 15px rgba(72, 198, 239, 0.4);
    }


    :root {
        --grad: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        padding-top: 90px;
    }

    /* Top Bar */
    #top-bar {
        background: var(--grad);
        color: #fff;
        font-size: 0.9rem;
        padding: 6px 0;
    }

    #top-bar a {
        color: #fff;
        text-decoration: none;
        margin-left: 4px;
    }

    #top-bar a:hover {
        text-decoration: underline;
    }

    /* Navbar */
    .navbar {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    }

    .navbar .nav-link {
        color: #333 !important;
        font-weight: 500;
        margin-left: 1rem;
        transition: color .3s ease;
    }

    .navbar .nav-link:hover {
        color: #6F86D6 !important;
    }

    /* Buttons */
    .btn-techrail {
        background: var(--grad);
        color: #fff !important;
        padding: .6rem 1.4rem;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }

    .btn-techrail:hover {
        transform: translateY(-3px);
        opacity: .9;
    }

    /* Sections */
    section {
        padding: 6rem 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    a {
        text-decoration: none;
        background-color: transparent;
    }

    h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
    }

    .brand-logo {
        width: 90px;
        height: auto;
        filter: grayscale(10%);
    }

    /* Hero */
    .hero {
        display: flex;
        align-items: center;
        /* Vertical centering */
        justify-content: space-between;
        flex-wrap: wrap;
        min-height: calc(100vh - 90px);
        /* subtracts navbar+topbar height */
        padding: 0 5vw;
        /* linear-gradient(135deg, #fdfbfb, #ebedee); */
        background: #fff;

    }


    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero p {
        font-size: 1.2rem;
        color: #555;
        margin-top: 0.1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .hero-left {
        max-width: 55%;
    }

    .hero-left p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin-top: 1rem;
        color: #555;
    }

    .hero-right {
        max-width: 40%;
        position: relative;
    }

    /* Soft glowing ring behind the image */
    .hero-right::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 110%;
        background: radial-gradient(circle, rgba(111, 134, 214, 0.3), transparent 70%);
        z-index: 1;
        animation: pulse 4s infinite;
    }

    .hero-right img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 2;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
        /* subtle depth */
        overflow: hidden;
        transition: transform 0.5s ease, filter 0.5s ease;
        animation: pulse 4s infinite;
    }

    /* Gradient glare overlay */
    .hero-right::after {
        content: "";
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.25),
                rgba(255, 255, 255, 0) 70%);
        border-radius: 20px;
        pointer-events: none;
        z-index: 3;
        animation: pulse 4s infinite;
    }

    /* Subtle hover effect */
    .hero-right img:hover {
        transform: scale(1.03);
        filter: brightness(1.1);
    }


    /* Floating animation */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Pulsing glow animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.4;
        }

        100% {
            transform: scale(1);
            opacity: 0.7;
        }
    }


    .blob {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        filter: blur(100px);
    }

    .blob1 {
        width: 40vw;
        height: 40vw;
        top: -10%;
        right: -10%;
        background: linear-gradient(135deg, #e1e2e8ff, #ebedee);
    }

    .blob2 {
        width: 25vw;
        height: 25vw;
        bottom: -5%;
        right: -5%;
        background: #e1e2e8ff;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero {
            flex-direction: column-reverse;
            text-align: center;
            min-height: auto;
            padding: 8vh 5vw;
        }

        .hero-left,
        .hero-right {
            max-width: 100%;
        }

        .hero-right img {
            max-width: 70%;
            margin: 0 auto;
            display: block;
        }

        .blob1 {
            width: 60vw;
            height: 60vw;
            top: -20%;
            right: -25%;
        }

        .blob2 {
            width: 40vw;
            height: 40vw;
            bottom: -15%;
            right: -15%;
        }

        .navbar-brand img {
            width: 120px;
        }
    }

    @media (max-width: 576px) {
        .hero-left h1 {
            font-size: 2rem;
        }

        .hero-left p {
            font-size: 1rem;
        }

        .blob1 {
            width: 80vw;
            height: 80vw;
            top: -25%;
            right: -30%;
        }

        .blob2 {
            width: 50vw;
            height: 50vw;
            bottom: -20%;
            right: -20%;
        }

        .navbar-brand img {
            width: 100px;
        }

        section {
            padding: 3rem 0;
        }
    }

    #aboutus {
        position: relative;
        z-index: 5;
        /* above blobs */
        padding: 6rem 0;
    }

    #aboutus p,
    #aboutus li {
        color: #333;
        /* more readable */
    }

    .hero {
        min-height: 80vh;
        /* or adjust to fit nicely */
    }

    .info-card,
    .founder-card,
    .product-card,
    .service-card {
        border-radius: 20px;
        background: #fff;
        transition: all .4s ease;
        padding: 2rem;
        height: 100%;
    }

    .info-card:hover,
    .founder-card:hover,
    .product-card:hover,
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    }

    .info-card i {
        font-size: 2.5rem;
        background: var(--grad);
        color: #fff !important;
        margin-bottom: 1rem;
    }

    .founder-card img {
        border: 5px solid var(--grad);
        border-radius: 90%;
        width: 120px;
    }

    [data-aos] {
        transition: all 1s ease;
    }

    .founder-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .founder-card img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(230, 57, 70, 0.8);
    }

    .social-links a:hover {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    /* Bank carousel */
    .bank-carousel-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        margin: 4rem 0;
    }

    .bank-carousel {
        display: flex;
        gap: 2rem;
        animation: scrollBanks 20s linear infinite;
    }

    .bank-carousel img {
        height: 70px;
        object-fit: contain;
    }

    @keyframes scrollBanks {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Testimonials */
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .testimonials {
        position: relative;
        padding: 5rem 0;
        background: #f5f7fa;
        overflow: hidden;
    }

    .testimonials .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #ffffff99, #f1f5f999);
        backdrop-filter: blur(6px);
        opacity: .05;
    }

    h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
    }

    .testimonial-card {
        background: #fff;
        padding: 3rem 2.5rem;
        border-radius: 20px;
        max-width: 750px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
        text-align: center;
        position: relative;
    }

    .testimonial-card .quote-icon {
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 4rem;
        color: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        opacity: .2;
    }

    .top-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .brand-logo {
        width: 90px;
        height: auto;
        filter: grayscale(20%);
    }

    .stars {
        color: #f4c150;
        font-size: 1.6rem;
    }

    .testimonial-card p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .testimonial-card h5 {
        font-weight: 600;
        color: #222;
        margin-bottom: 1rem;
    }

    .rating-breakdown {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        font-size: .95rem;
        color: #666;
    }

    .carousel-item {
        padding: 2rem 0;
    }

    #testimonialSlider .carousel-inner {
        display: flex;
    }

    #testimonialSlider .carousel-item {
        flex: 0 0 100%;
        transition: transform 1s ease-in-out;
    }

    .footer-link {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: #48C6EF;
        text-shadow: 0 0 6px rgba(72, 198, 239, 0.8);
    }

    .footer-social {
        margin-right: 10px;
        color: #ccc;
        font-size: 16px;
        transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
    }

    .footer-social:hover {
        color: #48C6EF;
        transform: scale(1.15);
        text-shadow: 0 0 8px rgba(72, 198, 239, 0.8);
    }

    @media(max-width:768px) {
        .footer-section div[style*="justify-content:space-between"] {
            flex-direction: column;
            align-items: center !important;
            text-align: center !important;
        }

        .footer-section div[style*="text-align:right"] ul {
            text-align: center !important;
        }
    }

    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .glowing-title {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        animation: slideIn 1s ease-out forwards;
    }

    /* Glowing hero text */
    .hero-glow {
        font-size: clamp(3rem, 8vw, 5rem);
        font-weight: 800;
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* text-shadow: 0 0 10px rgba(72, 198, 239, 0.7), 0 0 20px rgba(111, 134, 214, 0.6), 0 0 30px rgba(155, 89, 182, 0.5); */
        /* animation: glowPulse 5.5s infinite alternate; */
    }

    /* Glowing animation */
    /* @keyframes glowPulse {
        0% {
            text-shadow: 0 0 8px rgba(72, 198, 239, 0.5), 0 0 15px rgba(111, 134, 214, 0.4), 0 0 25px rgba(155, 89, 182, 0.3);
        }

        50% {
            text-shadow: 0 0 15px rgba(72, 198, 239, 0.9), 0 0 25px rgba(111, 134, 214, 0.7), 0 0 40px rgba(155, 89, 182, 0.6);
        }

        100% {
            text-shadow: 0 0 20px rgba(72, 198, 239, 1), 0 0 35px rgba(111, 134, 214, 0.9), 0 0 50px rgba(155, 89, 182, 0.8);
        }
    } */

    /* Hero image glowing wrapper */
    .hero-image-wrapper {
        position: relative;
        display: inline-block;
    }

    .hero-image-wrapper::before {
        content: "";
        position: absolute;
        top: -10%;
        left: -10%;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(72, 198, 239, 0.3), rgba(111, 134, 214, 0.1), transparent 70%);
        border-radius: 20px;
        filter: blur(10px);
        z-index: 1;
        /* animation: pulseGlow 1s infinite; */
    }

    .hero-image-wrapper img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.5s ease, filter 0.5s ease;
    }

    .hero-image-wrapper img:hover {
        transform: scale(1.05);
        filter: brightness(1.15);
    }


    .btn-techrail {
        position: relative;
        display: inline-block;
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        color: #fff !important;
        padding: 0.6rem 1.6rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .btn-techrail:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

    /* Arrow styling */
    .btn-techrail .arrow {
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.3s ease;
        font-weight: bold;
    }

    /* Arrow animation on hover */
    .btn-techrail:hover .arrow {
        transform: translateX(5px);
    }

    .contact-section {
        background: radial-gradient(circle at top left, rgba(72, 198, 239, 0.12), transparent 70%),
            radial-gradient(circle at bottom right, rgba(155, 89, 182, 0.12), transparent 70%),
            #f9f9f9;
        position: relative;
        overflow: hidden;
    }

    .bg-glass {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .text-gradient {
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-info .icon-box {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #48C6EF, #6F86D6, #9B59B6);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 14px;
        color: #fff;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(111, 134, 214, 0.3);
    }

    .social-links a {
        color: #6F86D6;
        font-size: 1.5rem;
        margin-right: 16px;
        transition: transform 0.3s, color 0.3s;
    }

    .social-links a:hover {
        transform: scale(1.2);
        color: #48C6EF;
    }

    .contact-section .form-control {
        border-radius: 12px;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
    }

    .contact-section .form-control:focus {
        border-color: #6F86D6;
        box-shadow: 0 0 10px rgba(111, 134, 214, 0.4);
    }

    .btn-techrail {
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        color: #fff;
        border: none;
        border-radius: 14px;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .btn-techrail:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(111, 134, 214, 0.45);
    }

    .map-wrapper iframe {
        filter: grayscale(30%) contrast(1.05) brightness(95%);
        transition: filter 0.3s ease;
    }

    .map-wrapper iframe:hover {
        filter: grayscale(0%) contrast(1.1) brightness(100%);
    }
    .job-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(111, 134, 214, 0.3);
    }

    .text-gradient {
      background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .modal-header-title {
        background: linear-gradient(90deg, #48C6EF, #6F86D6, #9B59B6);
        -webkit-background-clip: text;
    }