  /* Reset default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Roboto', sans-serif;
            background: #f4f4f4;
            color: #333;
            line-height: 1.6;
            font-size: clamp(16px, 2.8vw, 18px);
        }

        /* Top Bar */
        .top-bar {
            background-color: rgb(21, 68, 199);
            color: white;
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: clamp(14px, 2.8vw, 16px);
            flex-wrap: wrap;
        }

        .top-left i,
        .top-left span {
            margin-right: 8px;
        }

        .top-left a,
        .top-right a {
            color: white;
            margin-left: 10px;
            text-decoration: none;
            font-size: clamp(14px, 2.8vw, 16px);
        }

        .top-left a:hover,
        .top-right a:hover {
            text-decoration: underline;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Header */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding: 15px 5%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex-wrap: wrap;
            position: relative;
        }

        .logo img {
            height: clamp(50px, 10vw, 70px);
            width: auto;
        }

        .nav-menu {
            flex: 1;
            margin-left: 20px;
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: clamp(5px, 1vw, 10px);
            padding: 0;
            margin: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 10px;
            color: #000;
            font-weight: bold;
            text-decoration: none;
            font-size: clamp(16px, 2.8vw, 18px);
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ff5e3a;
        }

        .paynow a {
            display: inline-block;
            padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
            background-color: #ff5e3a;
            color: white;
            border-radius: 20px;
            font-weight: 500;
            font-size: clamp(14px, 2.2vw, 18px);
            text-decoration: none;
            transition: background-color 0.3s, transform 0.2s;
            white-space: nowrap;
        }

        .paynow a:hover {
            background-color: #e04e2a;
            color: white;
            transform: scale(1.05);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
            color: #000;
            padding: 5px 10px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 180px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            top: 100%;
            left: 0;
            z-index: 1000;
        }

        .dropdown-content a {
            padding: 4px 12px;
            color: #333;
            white-space: nowrap;
            display: block;
            font-size: clamp(18px, 2.8vw, 20px);
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #ff5e3a;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* fin Tech Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://i.pinimg.com/736x/f6/19/1f/f6191fa54631eb219c41ea8163df2d53.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            position: relative;
        }

        .hero-section h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-section p {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* fin About Section */
        .fin-about {
            background-color: #f8f9fa;
            padding: 3rem 2rem;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .fin-about p {
            font-size: clamp(1.1rem, 2.2vw, 1.3rem);
            line-height: 1.8;
            color: #333;
        }

        /* Container for services */
        .container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Call to Action */
        .call-to-action {
            background: linear-gradient(135deg, #1544c7 0%, #0d3aa8 100%);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 10px;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            line-height: 1.6;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Services Grid */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card h2 {
            color: #1544c7;
            font-size: clamp(1.3rem, 2.5vw, 1.6rem);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-card p {
            color: #555;
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.6;
        }

        /* Footer Section */
        footer {
            background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
            color: #fff;
            padding: 3rem 1.2rem 1.5rem;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            z-index: 1;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
            opacity: 0.15;
            z-index: 1;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-content .locations {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(6px);
        }

        .footer-content .locations p:first-child {
            font-weight: 700;
            font-size: clamp(1.6rem, 3.2vw, 1.8rem);
            margin-bottom: 0.8rem;
            color: #fff;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .footer-content .locations p:last-child {
            color: #e0e7ff;
            max-width: 1000px;
            margin: 0 auto;
            font-size: clamp(1.3rem, 3vw, 1.5rem);
            font-weight: 400;
            line-height: 2;
        }

        .footer-section {
            margin-bottom: 1.5rem;
        }

        h4 {
            font-size: clamp(1.5rem, 3.2vw, 1.7rem);
            margin-bottom: 1.2rem;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.8rem;
        }

        h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #ff5e3a, #ff8c68);
            border-radius: 3px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 0.8rem;
        }

        footer ul li a {
            color: #e0e7ff;
            text-decoration: none;
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            transition: color 0.3s, transform 0.3s;
            font-weight: 400;
            display: inline-block;
            position: relative;
        }

        footer ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        footer ul li a:hover::before {
            width: 100%;
        }

        footer ul li a:hover {
            color: #ff5e3a;
            transform: translateX(8px);
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            color: #e0e7ff;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 400;
            transition: color 0.3s;
        }

        .contact-info p:hover {
            color: #ff5e3a;
        }

        .contact-info p i {
            color: #ff5e3a;
            font-size: clamp(1.6rem, 3.8vw, 2rem);
            transition: transform 0.3s;
        }

        .contact-info p:hover i {
            transform: scale(1.2);
        }

        .social-container {
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            text-align: center;
            margin-top: 1.5rem;
            transition: background 0.3s;
        }

        .social-title {
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: clamp(1.5rem, 3.2vw, 1.7rem);
            color: #fff;
            letter-spacing: 1.2px;
        }

        .Social-icons {
            display: flex;
            gap: 1.2rem;
            margin-top: 0.8rem;
            justify-content: center;
        }

        .Social-icons a {
            color: #e0e7ff;
            font-size: clamp(1.8rem, 3.8vw, 2rem);
            transition: color 0.3s, transform 0.3s;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .Social-icons a:hover {
            color: #fff;
            transform: scale(1.2);
            background: #ff5e3a;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            width: 100%;
            max-width: 1600px;
            text-align: center;
            padding: 1.5rem 0.75rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: #e0e7ff;
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 400;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            position: relative;
        }

        .footer-bottom p {
            margin: 0;
            letter-spacing: 0.6px;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, #ff5e3a, #ff8c68);
            border-radius: 3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                font-size: clamp(13px, 2.5vw, 15px);
            }

            .top-left,
            .top-right {
                justify-content: center;
                width: 100%;
            }

            .top-left a,
            .top-right a {
                font-size: clamp(13px, 2.5vw, 15px);
            }

            .main-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px 5%;
            }

            .nav-menu {
                display: none;
                width: 100%;
                margin-left: 0;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-menu.active {
                display: block;
            }

            .nav-menu ul {
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                padding: 10px 15px;
                width: 100%;
                font-size: clamp(15px, 2.5vw, 17px);
            }

            .paynow a {
                width: calc(100% - 30px);
                margin: 10px 15px;
                text-align: center;
                padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
                font-size: clamp(13px, 2.2vw, 16px);
            }

            .hamburger {
                display: block;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                background-color: #f9f9f9;
                padding-left: 20px;
                min-width: 100%;
            }

            .dropdown-content a {
                padding: 4px 12px;
                font-size: clamp(17px, 2.5vw, 19px);
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            /* Health Tech Adjustments */
            .hero-section {
                padding: 6rem 1.5rem;
            }
            
            .fin-about {
                padding: 2rem 1.5rem;
            }
            
            .container {
                padding: 0 1.5rem;
            }
            
            .call-to-action {
                padding: 1.5rem;
            }
            
            .services {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 4rem 1rem;
            }
            
            .health-about {
                padding: 1.5rem 1rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 0.6rem;
                padding: 0 0.8rem;
            }

            .footer-content .locations {
                padding: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.4rem;
            }

            .footer-content .locations p:last-child {
                font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            }

            h4 {
                font-size: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.8rem;
            }

            footer ul li {
                margin-bottom: 0.4rem;
            }

            footer ul li a,
            .contact-info p {
                font-size: clamp(0.85rem, 2.2vw, 0.95rem);
            }

            .contact-info p {
                margin-bottom: 0.4rem;
            }

            .contact-info p i {
                font-size: clamp(1.4rem, 3.2vw, 1.6rem);
            }

            .social-container {
                padding: 0.8rem 0.4rem;
                margin-top: 0.8rem;
            }

            .social-title {
                font-size: clamp(1.2rem, 2.8vw, 1.4rem);
                margin-bottom: 0.4rem;
            }

            .Social-icons {
                gap: 0.6rem;
                margin-top: 0.4rem;
            }

            .Social-icons a {
                font-size: clamp(1.4rem, 3.2vw, 1.6rem);
                width: 36px;
                height: 36px;
            }

            .footer-bottom {
                font-size: clamp(0.8rem, 2vw, 0.9rem);
                padding: 0.6rem 0.3rem;
                margin-top: 0.8rem;
            }
        }