        :root {
            --accent: #1a61b2;
            --accent-600: #529ef0;
            --accent-100: #e0ebff;
            --dark: #071133;
            --bg: #f8fafc;
            --card: #ffffff;
            --container-max: 1200px;
            --radius: 12px;
            --gradient: linear-gradient(135deg, var(--accent), #6c4cff);
            --ease: cubic-bezier(.2, .9, .2, 1);
            --shadow-1: 0 10px 30px rgba(2, 6, 23, .06);
            --shadow-2: 0 14px 40px rgba(2, 6, 23, .08);
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            line-height: 1.6;
            background: #f7f9fc;
            color: #333;
            scroll-behavior: smooth;
        }
         .hamburgerBtn{
      border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px 8px;
     display: none;
    }
    .navMenuMobile{
      display: none;
    }


        a {
            text-decoration: none;
            color: inherit;
        }

        h1,
        h2,
        h3 {
            margin-bottom: 15px;
        }

        section {
            padding: 80px 20px;
            scroll-margin-top: 100px;
        }

        /* ========== Navbar ========== */
       
        /* ========== Hero Section ========== */
        header+section,
        .hero {
            margin-top: 80px;
        }

        .hero {
            position: relative;
            height: 100vh;
            background: url('../image/1.webp') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            animation: fadeInDown 2s ease forwards;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2em;
        }

        .hero .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: #1a61b2;
            color: white;
            border-radius: 30px;
            transition: 0.3s;
            font-weight: 600;
        }

        .hero .btn:hover {
            background: #1a61b2;
        }

        /* About Section */
        #about {
            background: #fff;
            text-align: center;
        }

        #about p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1em;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease;
        }

        #about.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Products Section */
        /* #products {
            background: #f0f4f8;
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(200px, 1fr));
           
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        }

        .product-card img {
            width: 200px;
            height: 200px;
            object-fit: cover;
        }

        .product-card .card-content {
            padding: 20px;
        }

        .product-card h3 {
            margin-bottom: 10px;
            color: #0b63ff;
        }

        .product-card p {
            font-size: 0.95em;
            color: #555;
        } */
        #services {
            padding: 100px 10%;
            background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
            text-align: center;
        }

        #services h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #1a61b2;
            margin-bottom: 60px;
            position: relative;
        }

        #services h2::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background: #1a61b2;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* ===== GRID LAYOUT ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            justify-content: center;
        }

        /* ===== SERVICE CARD ===== */
        .service-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 40px 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(11, 99, 255, 0.15);
        }

        /* ===== CARD IMAGE ===== */
        .service-card img {
          display: block;
          margin: auto;
          width: 50%;
            width: 90px;
            height: 90px;
            object-fit: contain;
            margin-bottom: 25px;
            border-radius: 12px;
        }

        /* ===== TITLE ===== */
        .service-card h3 {
            font-size: 1.4rem;
            color: #071133;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* ===== DESCRIPTION ===== */
        .service-card p {
            font-size: 1rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 25px;
            padding: 0 10px;
        }

        /* ===== FOOTER LINK ===== */
        .service-footer {
            text-align: center;
        }

        .service-footer .learn {
            text-decoration: none;
            font-weight: 600;
            color: #1a61b2;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .service-footer .learn::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            left: 0;
            bottom: -2px;
            background: #1a61b2;
            transition: width 0.3s ease;
        }

        .service-footer .learn:hover {
            color: #1a61b2;
        }

        .service-footer .learn:hover::after {
            width: 100%;
        }

        /* Mission Section */
        #mission {
            background: #fff;
            text-align: center;
        }

        #mission p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1em;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease;
        }

        #mission.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: #1a61b2;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }

        footer a {
            color: white;
            margin: 0 10px;
            transition: 0.3s;
        }

        footer a:hover {
            color: #84c0ff;
        }

        /* Animations */
        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media(max-width:768px) {
            .topbar {
                flex-direction: column;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .hero h1 {
                font-size: 2.2em;
            }

            .hero p {
                font-size: 1em;
            }
        }

        /* Footer */
        footer {
            background-color: #333;
            background: var(--dark);
            color: #f4f5f6;
            padding: 36px 24px
        }

        footer a,
        h4,
        p {
            text-align: left;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 18px;
            max-width: var(--container-max);
            margin: 0 auto
        }

        footer a {
            color: #cbd5e1;
            display: block;
            margin: 6px 0
        }

        /* Footer links hover effect */
        footer a {
            color: #e9ecef;
            /* Default link color */
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer a:hover {
            color: #1a61b2;
            /* Change color on hover */
            transform: translateX(5px);
            /* Optional slight slide effect */
        }
        footer h4 {
            margin-bottom: 15px; /* space below the h4 */
          }

        /* Hover effect */
        header ul li a::after {
            content: "";
            display: block;
            height: 2px;
            width: 0;
            background: #1a61b2;
            margin-top: 4px;
            transition: width 0.3s ease;
        }

        header ul li a:hover::after {
            width: 100%;
        }

        header ul li a:hover {
            color: #1a61b2;
            transform: translateY(-2px);
        }

        /* Navbar container */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            z-index: 999;
        }

        /* Logo */
        nav .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        nav .logo span {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a61b2;
        }

        /* Nav links */
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 10px;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        nav ul li a::after {
            content: "";
            display: block;
            height: 2px;
            width: 0;
            background: #1a61b2;
            margin-top: 4px;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: #1a61b2;
            transform: translateY(-2px);
        }

        /* Dropdown */
        .has-dropdown .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            min-width: 180px;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.4s ease;
        }

        .has-dropdown:hover .dropdown {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown a {
            white-space: nowrap;
            padding: 8px 8px;
            color: #333;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .dropdown a:hover {
            background: #f3f7ff;
            color: #1a61b2;
            padding-left: 24px;
        }

        /* Hamburger menu */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #1a61b2;
            cursor: pointer;
        }

        @media(max-width: 850px) {
            nav ul {
                position: absolute;
                top: 70px;
                right: 0;
                flex-direction: column;
                align-items: center;
                gap: 1px;
                background: white;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }

            nav ul.active {
                max-height: 300px;
                padding: 20px 0;
            }

            .menu-toggle {
                display: block;
            }

            /* Mobile dropdown inside menu */
            .has-dropdown .dropdown {
                position: static;
                opacity: 1;
                display: none;
                transform: none;
                box-shadow: none;
            }

            .has-dropdown.active .dropdown {
                display: flex;
            }
        }

        .piaddress p {

            letter-spacing: -.5px;
            position: relative;
            display: flex;
            flex-flow: row nowrap;
            gap: 10px;
            margin: 0 0;
            color: #ffff;
        }

        hr {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 20px; /* space above the line */

            /* translucent white */
        }
        @media screen and (min-width: 320px) and (max-width: 767px){
/*** Mobile Menu Starts**/
   .hamburgerBtn{
    display: block;
    width: auto;
   }
   .navMenuDesktop{
    display: none;
   }
   .navMenuMobile.show {
        display: flex;
        position: absolute;
        background: #ddd;
        z-index: 999999;
        flex-direction: column;
        max-height: none;
                padding: 10px;
}
   .navMenuMobile.show  .has-dropdown .dropdown {
               position: static;
        opacity: 1;
        display: block;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: transparent;
        padding-left: 20px;
}

   ul.navMenuMobile.show  li {
    text-align: center;
    padding: 1px 0;
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
   ul.navMenuMobile.show  li a{
    display: block;
   }
 ul.navMenuMobile.show li a::after {
    content: none;
}

/*** Mobile Menu Ends**/



}

        