        :root {
            --primary-blue: rgb(20, 22, 108);
            --secondary-blue: rgb(11, 76, 184);
            --light-blue: rgb(173, 216, 230);
            --red: rgb(196, 51, 53);
            --white: #ffffff;
            --black: #000000;
            --gray: rgb(113, 113, 113);
            --light-gray: rgb(136, 147, 170);
            --bg-gray: rgb(241, 244, 249);
        }

        /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body,
        html {
            margin: 0;
            padding: 0;
           font-family: Sora;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        .wrapper {
            width: 100%;
        }

        /* Common Section Styles */
        section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Section 1: Hero */
        .hero-block {
            position: relative;
            color: var(--white);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            gap: 20px;
        }

        .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.854);
}


       .hero-subtitle {
  font-size: 1.6rem;
   font-family: 'Arial Black',  sans-serif;
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.854);
  color: #A1D8EC;
  /* margin-bottom: 30px; */
}


        .button-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .btn-discover {
            background-color: var(--secondary-blue);
            color: var(--white);
        }

        .btn-discover:hover {
            background-color: white;
            color: var(--secondary-blue);
        }
        

        .btn-contact {
            background-color: var(--white);
            color: var(--secondary-blue);
            border: 2px solid var(--secondary-blue);
        }

        .btn-contact:hover {
            background-color: var(--secondary-blue);
            color: white;
        }

        .btn img {
            width: 20px;
        }

        /* Section 2: Visualizing Innovation */
        .innovation-section {
            text-align: center;
            background-color: var(--white);
            padding: 40px 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 40px;
            text-align: center;
        }

        .image-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .image-card {
            position: relative;
            width: 330px;
            height: 250px;
            overflow: visible;
            border-radius: 6px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .image-card:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        .title-box {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            height: 40px;
            background: var(--red);
            border-radius: 20px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            white-space: nowrap;
        }

        .title-box-inner {
            width: 30px;
            height: 30px;
            background: rgb(222, 222, 222);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-weight: bold;
            font-size: 14px;
            margin-right: 10px;
        }

        .title-box-text {
            color: var(--white);
            font-weight: bold;
            font-size: 12px;
            white-space: nowrap;
        }

        /* Section 3: About Us */
       .about-container {
        gap: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--white);
}

/* Left image column */
.image-column {
  flex: 1;
  min-height: 500px; /* Adjust this height as needed */
  background: url('../images/hardware/AboutUs/AboutUsMain.png') no-repeat center center;
  background-size: cover;
}

/* Optional in case you're using an <img> tag (currently unused) */
.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right content column */
.content-column {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titles */
.content-title {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.description {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Bullet points */
.bullet-points {
  list-style-type: none;
  padding-left: 0;
  margin: 20px 0;
}

.bullet-points li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--black);
  font-size: 1rem;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.bullet-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('../images/hardware/bullet.png') no-repeat center center;
  background-size: contain;
}

/* Button styling */
.help-button {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.help-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.help-button img {
  height: 16px;
  width: auto;
}

        /* Section 4: Why Choose EIT */

        .why-choose-section {
            background-color: var(--white);
            padding: 40px 20px;
        }

        .feature-container {
            width: 100%;
            max-width: 1200px;
            height: 600px;
            margin: 40px auto;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            background-image: url('../images/hardware/WhyChooseEIT/Background.png');
            background-size: cover;
            background-position: center;
        }

        .main-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 75%;
            max-height: 75%;
            z-index: 2;
        }

        .feature-box {
            position: absolute;
            width: 220px;
            height: 230px;
            background: var(--white);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 3;
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: scale(1.05);
        }

        .feature-box.top-left-1 {
            top: 40px;
            left: 40px;
        }

        .feature-box.top-left-2 {
            top: 40px;
            left: 280px;
        }

        .feature-box.bottom-right-1 {
            bottom: 25px;
            right: 280px;
        }

        .feature-box.bottom-right-2 {
            bottom: 25px;
            right: 40px;
        }

        .feature-box p {
            color: var(--primary-blue);
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 9px;
            line-height: 2;
            text-align: left;
            
        }

        .feature-icon {
            position: absolute;
            top: 20px;
            right: 8px;
            width: 30px;
            height: 30px;
        }



        /* Section 5: Achievements */
        .achievements-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: -5%;
            padding: 10px 50px;
            background-color: var(--white);
        }

        .achievements-title {
            color: var(--black);
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .achievements-desc {
            color: var(--gray);
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
            /* max-width: 800px; */
            margin-left: auto;
            margin-right: auto;
        }

        .blocks-container {
            display: flex;
        flex-direction: row;
            gap: 40px;
            /* max-width: 900px; */
            margin: 10 auto;
        }

        .block {
            text-align: center;
            padding: 20px;
            /* background-color: var(--bg-gray); */
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .block:hover {
            transform: translateY(-5px);
        }

        .block-number {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--primary-blue);
        }

        .block-text {
            font-size: 0.9rem;
            color: var(--light-gray);
            line-height: 1.4;
            font-weight: 500;
        }

        /* Section 6: Our Process */
        .process-container {
            background-color: var(--primary-blue);
            padding: 60px 20px;
            text-align: center;
        }

        .process-title {
            color: color;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            position: relative;
        }

        .title-underline {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -20px;
            width: 100px;
            height: auto;
        }

        .cards-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .process-image-card {
            background: var(--white);
            width: 220px;
            height: auto;
            border-radius: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 15px;
            box-sizing: border-box;
            transition: transform 0.3s ease;
            padding-bottom: 5px;
        }

        .process-image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .process-card-number {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: white;
            border: 2px solid var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .process-card-image {
            width: 90%;
            height: 150px;
            object-fit: contain;
            margin-bottom: 15px;
            border-radius: 10px;
        }

        .card-heading {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: left;
            width: 90%;
            color: var(--black);
        }

        .card-description {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: left;
            width: 90%;
            line-height: 1.5;
        }

        /* Section 7: IoT Focus */
        .iot-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            background-color: var(--white);
        }

        .iot-title {
            color: var(--black);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .iot-desc {
            color: var(--light-gray);
            font-size: 1.1rem;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .grey-box {
            width: 100%;
            max-width: 800px;
            background-color: var(--bg-gray);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .grey-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .box-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin: 0 auto 30px;
            display: block;
            border-radius: 10px;
        }

        .box-text {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Section 8: Project Highlights */
        .highlight-box {
  width: 100%;
  min-height: 100vh;
  background: url("../images/hardware/ProjectHighlights/Background.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
}

.title-container {
  display: flex;
  align-items: center;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 80px;
}

.title-text {
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1.3;
  margin-right: 50px;
  font-weight: 800;
}

.title-text span {
  display: block;
}

.red-line {
  width: 3px;
  height: 100%;
  background-color: var(--red);
  margin-right: 30px; /* space between red line and image */
}

.side-image {
  height: 250px;
  object-fit: contain;
}


        /* Section 9: Contact Us */
        .contact-wrapper {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            background-color: var(--white);
        }

        .contact-title {
            color: var(--black);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.3;
        }

        .contact-desc {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 40px;
            text-align: center;
            max-width: 800px;
            line-height: 1.6;
        }

        .rounded-box {
            background: url("../images/hardware/ContactUsBG.png") no-repeat center center;
            background-size: cover;
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            width: 100%;
            max-width: 900px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .input-row {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-input {
            flex: 1;
            height: 50px;
            border-radius: 25px;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            padding: 0 25px;
            max-width: 400px;
        }

        .email-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .contact-input input {
            border: none;
            background: transparent;
            flex: 1;
            outline: none;
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            padding: 0;
        }

        .join-button {
            width: 150px;
            height: 50px;
            border-radius: 25px;
            background-color: var(--secondary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 600;
        }

        .join-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Section 10: Our Products */
        .product-section {
            background-color: var(--primary-blue);
            width: 100%;
            min-height: 100vh;
            padding: 60px 20px;
            text-align: center;
        }

        .product-heading {
            color: white !important;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .product-desc {
            color: white;
            font-size: 1.1rem;
            margin: 0 auto 60px;
            line-height: 1.6;
            font-weight: 300;
            max-width: 900px;
        }

        .product-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .product-box {
            background: var(--white);
            height: 500px;
            width: 350px;
            border-radius: 15px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }

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

        .product-image {
            height: 200px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            margin-bottom: 30px;
        }

        .product-box-desc {
            color: var(--black);
            font-size: 0.9rem;
            text-align: center;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Section 11: Work Together */
        .blue-container {
            background-color: var(--primary-blue);
            width: 100%;
            max-width: 1000px;
            min-height: 250px;
            margin: 60px auto;
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .column1 {
            width: 40%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .column1 img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
        }

        .column2 {
            width: 60%;
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .heading {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .heading span:first-child {
            color: var(--secondary-blue);
            font-weight: 700;
        }

        .white-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            margin: 10px 0 20px;
        }

        .contact-button {
            background-color: var(--secondary-blue);
            color: var(--white);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .feature-box {
                width: 180px;
                height: 180px;
            }

            .feature-box.top-left-1 {
                top: 40px;
                left: 30px;
                height: auto;
                padding-bottom: 2px;
                width: 200px;
            }

            .feature-box.top-left-2 {
                left: 240px;
                height: auto;
                width: 200px;
            }

            .feature-box.bottom-right-1 {
                right: 260px;
                height: auto;
                width: 230px;
                padding-bottom: 2px;
            }


            .feature-box.bottom-right-2 {
                bottom: 25px;
                right: 20px;
                height: auto;
                width: 230px;
            }
        }

        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }

            .image-column {
                height: 400px;
            }

            .feature-container {
                height: 800px;
            }

            .feature-box {
                width: 160px;
                height: 160px;
                padding: 15px;
            }

            .feature-box p {
                font-size: 0.8rem;
            }

            .title-text {
                font-size: 3rem;
            }

            .blue-container {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title,
            .achievements-title,
            .iot-title,
            .contact-title,
            .product-heading {
                font-size: 2rem;
            }

            .blocks-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-container {
                height: 1000px;
                background-image: none;
            }

            .main-image {
                position: static;
                transform: none;
                margin: 40px auto;
                max-width: 80%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .feature-box p {
                line-height: 1.3;
            }

            .feature-box {
                position: static !important;
                width: 100% !important;
                max-width: 300px;
                height: auto !important;
                margin: 20px auto;
            }

            .feature-icon {
                position: static;
            }

            .section {
                min-height: auto;
            }

            .title-container {
                left: 50px;
            }

            .title-text {
                font-size: 2.5rem;
            }

            .blue-container {
                flex-direction: column;
                text-align: center;
            }

            .column1,
            .column2 {
                width: 100%;
                padding: 0;
            }

            .column1 {
                margin-bottom: 30px;
            }

            .contact-button {
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .button-container {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .section-title,
            .achievements-title,
            .iot-title,
            .contact-title,
            .product-heading {
                font-size: 1.8rem;
            }

            .image-card {
                width: 100%;
                max-width: 350px;
            }

            .blocks-container {
                grid-template-columns: 1fr;
            }

            .title-container {
                left: 20px;
            }

            .title-text {
                font-size: 2rem;
            }

            .input-row {
                flex-direction: column;
            }

            .contact-input,
            .join-button {
                width: 100%;
                max-width: 100%;
            }

            .product-box {
                height: auto;
                padding: 30px 20px;
                width: 290px;
            }

            .highlight-box {
                display: flex;
                flex-direction: column;
                align-items: center;
                flex-wrap: wrap;
            }
        }