 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f9f9fb;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #0052cc, #007bff);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        header.scrolled {
            background: rgba(0, 82, 204, 0.95);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        nav {
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo .icon {
            width: 50px;
            height: 50px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            margin-right: 12px;
            transition: transform 0.4s ease, background 0.3s ease;
        }

        .logo .icon h1 {
            font-size: 1.4rem;
            color: #0052cc;
            margin: 0;
        }

        .logo:hover .icon {
            transform: rotate(360deg);
            background: #e6f3ff;
        }

        .logo-text {
            color: #fff;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 25px;
            margin: 0;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #00d4d4;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-btn {
            padding: 10px 25px;
            background: #00d4d4;
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .contact-btn:hover {
            background: #00a3a3;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 24px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            border-radius: 2px;
            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(5px, -5px);
        }

        .mobile-only {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #e6f3ff, #f0faff);
            padding: 10px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3rem;
            color: #001970;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: #00d4d4;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            background: #001970;
            color: #fff;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .btn-primary:hover {
            background: #000d4d;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .btn-link {
            color: #00d4d4;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .btn-link:hover {
            color: #008b8b;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }

        /* Product Slider Section */
        .product-slider-section {
            padding: 60px 5%;
            background: #f8f9fa;
            max-height: 400px;
        }

        .slider-img-3d {
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease, box-shadow 0.6s ease;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .carousel-item:hover .slider-img-3d {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .carousel-caption {
            bottom: 15px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            padding: 15px;
        }

        /* Healthcare Section */
        .healthcare-section {
            padding: 25px 5%;
            background: #fff;
        }

        .healthcare-section img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
        }

        .healthcare-text {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
        }

        .healthcare-text strong {
            color: #ff6b6b;
            font-weight: 600;
        }

        /* Focus Section */
        .focus-section {
            padding: 10px 5%;
            background: #f5fffb;
        }

        .focus-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .focus-content h2 {
            font-size: 1.5rem;
            color: #001970;
            margin-bottom: 15px;
        }

        .focus-content h2 span {
            color: #00d4d4;
        }

        .focus-content h4 {
            color: #00d4d4;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }

        .focus-content h4::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #00d4d4;
            position: absolute;
            bottom: -5px;
            left: 0;
        }

        .focus-content p {
            font-size: 1rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .focus-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .focus-image img:hover {
            transform: scale(1.02);
        }

        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 5%;
            background: #fff;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #00227c;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #00d4d4;
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .vision-mission-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .box {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .icon-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .icon-title img {
            width: 40px;
        }

        .icon-title h3 {
            font-size: 1.8rem;
            color: #00227c;
        }

        .box p {
            font-size: 1rem;
            color: #444;
            line-height: 1.8;
        }

        /* Technology Section */
        .technology-section {
            padding: 60px 5%;
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            margin-top: -50px;
        }

        .tech-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }

        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .tech-card img {
            width: 100%;
            height: 75px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .tech-card:hover img {
            transform: scale(1.03);
        }

        .tech-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .tech-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* Auth Menu Section */
        .auth-menu-section {
            background: linear-gradient(135deg, #1a3c87, #ff6f91);
            padding: 40px 0;
            text-align: center;
        }

        .auth-menu {
            display: inline-block;
            background-color: #ffffff;
            padding: 15px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .auth-menu:hover {
            transform: translateY(-5px);
        }

        .auth-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .auth-menu ul li {
            display: inline-block;
        }

        .auth-menu ul li a {
            display: inline-block;
            font-size: 16px;
            color: #1a3c87;
            font-weight: 600;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            background-color: #f4f4f4;
            margin: 0 5px;
        }

        .auth-menu ul li a:hover {
            background: linear-gradient(90deg, #1a3c87, #ff6f91);
            color: #fff;
            box-shadow: 0 4px 15px rgba(255, 111, 145, 0.4);
        }

        .auth-menu ul li a i {
            margin-right: 6px;
        }

        /* Footer */
        .footer-section {
            background: linear-gradient(135deg, #001970, #002e99);
            color: #fff;
            padding: 60px 5% 20px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 30px;
        }

        .footer-box h3 {
            font-size: 1.4rem;
            color: #7dd3fc;
            margin-bottom: 15px;
        }

        .footer-box p,
        .footer-box a {
            color: #d1e8ff;
            font-size: 0.95rem;
            line-height: 1.8;
            text-decoration: none;
        }

        .footer-box a:hover {
            color: #38bdf8;
        }

        .footer-box ul {
            list-style: none;
            padding: 0;
        }

        .footer-box ul li {
            margin-bottom: 8px;
        }

        .social-icons a {
            margin-right: 15px;
            font-size: 1.2rem;
            color: #d1e8ff;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #38bdf8;
            transform: scale(1.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 40px;
            border-top: 1px solid #3b82f6;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container, .focus-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image img, .focus-image img {
                max-width: 100%;
                margin: 0 auto;
                margin-top: -25px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, #0052cc, #007bff);
                padding-top: 80px;
                align-items: center;
                justify-content: flex-start;
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
            }

            .nav-links.active {
                display: flex;
                transform: translateX(0);
            }

            .nav-links li {
                margin: 12px 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 10px;
                display: block;
            }

            .mobile-only {
                display: block;
            }

            .contact-btn {
                display: none;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-box ul {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
                display: flex;
            }

            .slider-img-3d {
                height: 300px;
            }

            .tech-card img {
                height: 90px;
            }
        }

        @media (max-width: 576px) {
            nav {
                padding: 12px 3%;
            }

            .logo .icon h1 {
                font-size: 1.2rem;
            }

            .logo-text {
                font-size: 1.4rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin-top: -50px;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .tech-card img {
                height: 75px;
            }

            .tech-card h3 {
                font-size: 1.2rem;
            }

            .tech-card p {
                font-size: 0.9rem;
            }

            .slider-img-3d {
                height: 250px;
            }

            .healthcare-section img {
                /* height: 200px; */
            }
            
            .product-slider-section{
                max-height: 260px;
            }
        }