
:root {
  --background-color-matte: #4b6cb7;
  --background-color: #ffffff;
  --button-hover-color: #45a049;
}

body, html {
            height: 100%;
            line-height: 1.8;
            font-family: "Raleway", sans-serif;
            margin: 0;
            padding: 0;
            background-color: #F8F9F9;
        }

        /* Applying the Poppins font to all headings for an attractive, modern look */
        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .w3-bar .w3-button {
            padding: 16px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        pre {
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-word;
            background: #f4f4f4;
            padding: 1em;
            border-radius: 10px;
        }

        /* Small-screen menu styles for improved visibility */
        @media (max-width: 768px) {
            .w3-quarter, .w3-third, .w3-half {
                width: 100% !important;
                display: block;
            }
            .w3-bar .w3-right {
                display: none;
            }
            pre {
                font-size: 14px;
            }

            .navbar ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: linear-gradient(to right, #4b6cb7, #1ac9ec); /* Corrected Color */
                color: white;
                position: absolute;
                top: 70px;
                left: 0;
                z-index: 1000;
            }
            .navbar ul.active {
                display: flex;
            }
            .navbar ul li a {
                color: white; /* Ensure links are visible on the dark background */
                padding: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            .hamburger {
                display: block;
            }
        }
        
        /* Desktop menu styles to override mobile styles on large screens */
        @media (min-width: 769px) {
            .navbar ul {
                display: flex;
                flex-direction: row;
                position: static;
                background-color: transparent;
            }
            .hamburger {
                display: none;
            }
        }

        .card-container {
            display: flex;
            gap: 24px;
            padding: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        .card-container::-webkit-scrollbar {
            height: 8px;
        }

        .card-container::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .card {
            flex: 0 0 260px;
            max-width: 260px;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            background: white;
            color: black;
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .card-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .card i {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 992px) {
            .card {
                flex: 1 1 45%;
            }
        }

        @media (max-width: 600px) {
            .card {
                flex: 1 1 100%;
            }
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 2px 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1rem;
            font-weight: bold;
            color: #0d47a1;
        }

        /* NEW STYLE FOR COMPANY NAME */
        .company-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: #0d47a1;
        }

        .navbar ul {
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }
        .navbar a {
            text-decoration: none;
            color: #555;
            font-weight: bold;
            transition: color 0.3s;
        }
        .navbar a:hover {
            color: #0d47a1;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
        }
        .hc-hero-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 100%;
            padding: 0px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .hc-left-card {
            width: 50%;
            padding: 15px;
        }
        .hc-left-card h1 {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        .hc-left-card p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .hc-cta-btn {
            background-color: black;
            color: white;
            padding: 12px 25px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 20px;
        }
        .hc-cta-btn:hover {
            background-color: #45a049;
        }
        .hc-right-card {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f4f4f4;
            border-radius: 0px;
            overflow: hidden;
            position: relative;
        }
        .hc-right-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hc-hero-container {
                flex-direction: column;
                margin-top: 0px;
                padding: 0px;
            }
            .hc-left-card, .hc-right-card {
                width: 100%;
                margin-bottom: 0px;
            }
            .hc-left-card {
                margin-top: 5px;
            }
            .hc-cta-btn {
                width: 100%;
                padding: 14px;
            }
            .hc-left-card h1 {
                font-size: 20px;
                font-weight: bold;
                color: #333;
                margin-bottom: 10px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .hero-grid {
            display: flex;
            justify-content: space-around;
            gap: 10px;
            flex-wrap: wrap;
            background: #f9fbff;
            padding: 30px 20px;
            text-align: center;
        }
        .hero-box {
            flex: 1 1 30%;
            background: white;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .hero-box:hover {
            transform: translateY(-10px);
        }
        .hero-box picture img {
            width: 100%;
            height: 150px;
            margin-bottom: 2px;
        }
        .hero-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0c69e4;
        }
        .hero-box p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 20px;
        }
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 10px 50px;
            gap: 20px;
            background: #f9fbff;
        }
        .contact-card {
            flex: 1 1 30%;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .contact-card h2 {
            font-size: 1.4rem;
            color: #0c69e4;
            margin-bottom: 10px;
        }
        .contact-card p, .contact-card a {
            font-size: 1rem;
            color: #333;
            line-height: 1.7;
        }
        .header {
            padding: 10px;
            text-align: left;
            background-color: var(--background-color-matte);
            color: var(--background-color);
            font-size: 20px;
            font-weight: bold;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        .sbutton {
            border: none;
            outline: 0;
            padding: 7px 15px;
            color: white;
            background: linear-gradient(to right, #4b6cb7, #1ac9ec);
            text-align: center;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            border-radius: 20px;
            box-sizing: border-box;
            transition: background-color 0.3s, transform 0.2s;
            width: auto;
            margin: 5px;
            display: inline-block;
        }
        .sbutton:hover {
            background-color: var(--button-hover-color);
            transform: translateY(-2px);
        }
        .sbutton:active {
            background-color: #89A8B2;
            transform: translateY(1px);
        }
        .sbutton:disabled {
            cursor: not-allowed;
            opacity: 0.6;
        }
        .sbutton:enabled {
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hero-box, .contact-card {
                flex: 1 1 100%;
            }
            .contact-wrapper {
                flex-direction: column;
            }
        }
        .team-card {
            flex: 0 0 280px;
            scroll-snap-align: center;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: 'Segoe UI', sans-serif;
            padding: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .team-card:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        .team-image-wrapper {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
            border: 4px solid #e0f0ff;
        }
        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-text {
            text-align: center;
            color: #333;
            padding: 0 0.5rem;
        }
        .team-text p {
            margin: 0;
            font-size: 0.95rem;
        }
        .team-text small {
            color: #777;
            font-size: 0.85rem;
        }
        #left-btn, #right-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            padding: 0.5rem 0.8rem;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        #left-btn { left: 10px; }
        #right-btn { right: 10px; }
        @media (max-width: 600px) {
            .team-card {
                flex: 0 0 90%;
            }
        }
		.logo-img {
			height: 50px;  /* Example: Set a specific height */
			width: 50px;   /* Must be the same as the height for a perfect circle */
			border-radius: 50%; /* This is the key property */
		}
		.hc-cta-btn {
			background: linear-gradient(to right, #4b6cb7, #1ac9ec);
			color: white;
			padding: 12px 25px;
			font-size: 18px;
			border: none;
			border-radius: 5px;
			cursor: pointer;
			transition: background-color 0.3s ease;
			text-decoration: none; /* This removes the underline */
		}

		.hc-cta-btn:hover {
			background-color: #45a049;
		}
