/* styles.css */
body {
    background-color: var(--bg-light-color);
    font-family: 'HostGrotesk';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

/* Fonts */
@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('../fonts/HostGrotesk-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

/* Colors */
:root {
    --primary-color: #EA2D01;
    --secondary-color: #E85503;
    --bg-light-color: #F0F3F7;
    --bg-dark-color: #0A081A;
    --white-color: #FFFFFF;
    --black-color: #000000;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw;
    position: fixed;
    top: 0;
    width: 96%;
    z-index: 1000;
    background-color: transparent;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hide traditional links for all devices */
.nav-links {
    display: none;
}

/* Logo and Hamburger Menu */
.ledtronicstechmedia-logo {
    width: 10vw;
}

.mobile-navbar {
    display: flex;
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    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 Menu Styling */
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-links li {
    margin: 1.5rem 0;
}

.mobile-menu-links li a {
    font-family: 'Mona-Sans', sans-serif;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

/* Enquiry Button in Menu */
.nav-button {
    transition: all 0.3s ease;
    cursor: pointer;
}
.nav-button:hover {
    width: 8vw;
    content: url(../img/nav-button-hover.png);
}
.nav-button img {
    width: 8vw;
}
#navbar {
    transition: background-color 0.3s,
  }
#navbar.scrolled {
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
  


/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    background-image: url(../img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 17vh 10vw;
    height: 100%;
    gap: 2vh;
}
.hero-desc {
    font-size: 1vw;
    width: 35%;
    color: var(--white-color);
}
.hero-cta {
    display: flex;
    cursor: pointer;
}
.hero-cta img {
    width: 12vw;
    transition: all 0.3s ease;
}
.hero-cta img:hover {
    content: url(../img/button-hover.png);
}
.hero-hdr {
    color: var(--white-color);
    font-size: 4vw;
    font-weight: 500;
    line-height: 1;
}
.hero-hdr span {
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
}

/* About Us Section */
.about {
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vw;
    gap: 5vh;
}
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}
.about-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}
.abt-hdn-text {
    display: flex;
    align-items: baseline;
    color: var(--black-color);
    font-size: 3vw;
    font-weight: 500;
    gap: 1vw;
}
.abt-hdn-text img {
    display: flex;
    height: 4vh;
}
.abt-hdn-text span {
    font-weight: 900;
    font-style: italic;
    color: var(--primary-color);
}
.about-desc{
    font-size: 1vw;
    width: 70%;
    color: var(--black-color);
    text-align: center;
}
.about-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    cursor: pointer;
}
.abt-tab-btn {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.abt-tab-btn-1 img,
.abt-tab-btn-2 img,
.abt-tab-btn-3 img {
    width: 25vw;
    transition: all 0.3s ease;
}
.abt-tab-btn-1:active img {
    content: url(../img/abt-btn1-active.png);
}
.abt-tab-btn-2:active img {
    content: url(../img/abt-btn2-active.png);
}
.abt-tab-btn-3:active img {
    content: url(../img/abt-btn3-active.png);
}
.about-tab-cont {
    display: none;
    align-items: center;
    justify-content: center;
    height: auto;
    max-height: 45vh;
    gap: 1vw;
    padding: 2vw;
    margin-top: -5vh;
}
.abt-cont-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 0 2vw;
    gap: 2vh;
    text-align: left;
    color: var(--black-color);
    background-color: transparent;
    border: 2px solid var(--white-color);
    border-radius: 5vh;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.abt-cont-hdn {
    font-size: 2.5vw;
    font-weight: 700;
}
.abt-cont-desc {
    font-size: 1vw;
    font-weight: 400;
    width: 90%;
}
.abt-cont-cta {
    display: flex;
}
.abt-cont-cta img {
    width: 12vw;
    transition: all 0.3s ease;
}
.abt-cont-cta img:hover {
    content: url(../img/button-hover.png);
}
.abt-cont-right {
    display: flex;
    height: 100%;
    border-radius: 5vh;
}
.abt-cont-right img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border: 2px solid var(--white-color);
    border-radius: 5vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.abt-cont-left, .abt-cont-right {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.abt-cont-right {
    transform: translateX(100%);
}
.abt-cont-left.active, .abt-cont-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Services Section */
.services {
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}
.services-container {
    display: grid;
    padding: 0 5vw;
    align-items: flex-start;
}
.services-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4vh;
    padding: 0 2vw;
}
.services-header {
    display: flex;
    gap: 0.75vw;
}
.services-hdn {
    font-size: 3vw;
    font-weight: 500;
    color: var(--black-color);
}
.services-span {
    font-size: 3vw;
    font-weight: 700;
    color: var(--primary-color);
}
.services-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4vw;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.services-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vh 2vw;
    box-sizing: border-box;
    border-radius: 2vw;
    background-color: var(--white-color);
    height: 100%;
}
.services-icn {
    display: flex;
    padding-bottom: 4vh;
}
.services-icn img{
    max-width: 8vw;
    max-height: 16vh;
}
.services-ttl {
    font-size: 1.5vw;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    line-height: 1;
    background-color: var(--bg-light-color);
    padding: 1.25vw;
    border-radius: 1vw;
    width: 90%;
}

/* Products Section */
.products {
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}
.products-container {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    padding: 0 5vw 4vh;
}
.prds-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.prds-hdn {
    font-size: 1.5vw;
    font-weight: 500;
    color: var(--black-color);
}
.prds-span {
    font-size: 3vw;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}
.prds-box {
    display: flex;
    flex-direction: column;
    width: 100vw;
    gap: 5vh;
}
.indoor-led, .outdoor-led {
    width: 100%;
    height: auto;
    text-align: center;
}
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}
.prds-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    width: 100%;
    height: 37vh;
    border-radius: 2vw;
    box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.25);
    gap: 1vh;
    margin-bottom: 0.5vw;
}
.prds-img-cont {
    display: flex;
    background-color: var(--bg-light-color);
    align-items: center;
    justify-content: center;
    height: 80%;
    margin: 0.25vw;
    border-radius: 2vw;
}
.prds-img-cont img {
    max-height: 15vh;
    max-width: 15vw;
    padding: 1vw;
}
.prds-desc {
    font-size: 1.5vw;
    font-weight: 500;
    color: var(--black-color);
    padding: 0vh 2vw;
}

/* Projects Section */
.projects {
    width: 100%;
    height: auto;
    padding: 2vw 0vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    position: relative;
}
.itemplus{
    width: 100%;
    height: 100%;
    background-color: #0000006c;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}
.itemplus i{
    color: var(--white-color);
    font-size: 1.2vw;
    border: 1px solid var(--primary-color);
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}
.prj-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.prj-hdn {
    font-size: 1.5vw;
    font-weight: 500;
    color: var(--black-color);
}
.prj-span {
    font-size: 3vw;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}
.prj-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
    width: 80%;
    height: 57vw;
    position: relative;
    z-index: 6;
}
.prj-cont {
    width: 20vw;
    height: 20vw;
    perspective: 100vw;
    position: relative;
    cursor: pointer;
    position: absolute;
    border-radius: 1vw;
    overflow: hidden;
}
.prj-cont:hover .itemplus{
    opacity: 1;
}
.prj-cont:hover .front{
    background-position: 5%;
}
#item1{
    width: 31vw;
    height: 31vw;
    top : 0vw;
    left: 0;
}
#item2{
    width: 15vw;
    height: 15vw;
    top : 0vw;
    left: 32vw;
}
#item3{
    width: 15vw;
    height: 15vw;
    top : 0vw;
    left: 48vw;
}
#item4{
    width: 15vw;
    height: 15vw;
    top : 0vw;
    left: 64vw;
}
#item5{
    width: 15vw;
    height: 15vw;
    top : 16vw;
    left: 32vw;
}
#item6{
    width: 15vw;
    height: 15vw;
    top : 16vw;
    left: 48vw;
}
#item7{
    width: 15vw;
    height: 15vw;
    top : 16vw;
    left: 64vw;
}
#item8{
    width: 23.5vw;
    height: 23.5vw;
    top : 32vw;
    right: 0vw;
}
#item9{
    width: 22.5vw;
    height: 23.5vw;
    top : 32vw;
    right: 24.5vw;
}
#item10{
    width: 30.75vw;
    height: 23.5vw;
    top : 32vw;
    left: 0;
}
.prj-cont div {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.6s, opacity 0.6s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    
}
.prj-cont .front {
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: all 0.5s ease;
}
.prj-cont .back {
    background: linear-gradient(var(--primary-color),var(--secondary-color));
    transform: rotateY(180deg);
}
.prj-cont.flipped .front {
    transform: rotateY(180deg);
}
.prj-cont.flipped .galplus{
    display: none;
}
.prj-cont.flipped .back {
    transform: rotateY(0deg);
}
.prj-cont .fade {
    transition: opacity 0.6s;
    opacity: 0;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup-img {
    max-width: 90%;
    max-height: 90%;
}
.popup-description {
    position: absolute;
    bottom: 0;
    width: auto;
    padding: 1vw;
    color: #fff;
    font-size: 2vw;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
}

/* Team Section */
.team {
    display: flex;
    justify-content: center;
    height: auto;
    overflow: hidden;
}
.team-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    gap: 3vh;
    padding: 0 5vw 4vh;
}
.team-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.team-hdn {
    font-size: 1.5vw;
    font-weight: 500;
    color: var(--black-color);
}
.team-span {
    font-size: 3vw;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}
.team-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3vw;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-color);
    box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.25);
    height: 100%;
    border-radius: 2vw;
}
.team-box .team-item:first-child {
    background-color: var(--primary-color);
}
.team-img-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-img-cont img {
    max-height: 55vh;
    max-width: 30vw;
    padding: 0.25vw;
    border-radius: 2vw;
}
.team-name {
    font-size: 1.5vw;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black-color);
    padding: 0vh 2vw;
}
.team-job {
    font-size: 1vw;
    font-weight: 300;
    color: var(--black-color);
    padding: 1vh 2vw;
}
.team-box .team-item:first-child .team-name,
.team-box .team-item:first-child .team-job {
    color: var(--white-color);
}

/* Testimonial Section */
.tst{
    display: flex;
    height: auto;
    justify-content: center;
    overflow: hidden;
}
.tst-container {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}
.tst-hdr {
    display: flex;
    align-items: center;
    padding: 3vh 3vw 0;
    gap: 5vw;
}
.tst-hdr-left {
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 1vh;
}
.tst-hdn {
    display: flex;
    flex-direction: column;
}
.tst-hdn-small {
    font-size: 1vw;
    font-weight: 400;
    color: var(--black-color);
    padding-left: 0.15vw;
}
.tst-hdn-big {
    display: flex;
    font-size: 3vw;
    font-weight: 500;
    gap: 0.5vw;
}
.tst-hdn-main {
    color: var(--black-color);
}
.tst-hdn-span {
    color: var(--primary-color);
    text-decoration: underline;
}
.tst-desc {
    font-size: 1vw;
    font-weight: 300;
    color: var(--black-color);
}
.tst-hdr-right {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}
.tst-right-line1 {
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.line1-txt {
    font-size: 2vw;
    font-weight: 300;
}
.star.line1 {
    position: relative;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--primary-color);
    width: 2vw;
    height: 2vw;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tst-right-line2 {
    display: flex;
    gap: 0.25vw;
}
.star-box {
    display: inline-flex;
    background-color: var(--primary-color);
    padding: 0.15vw;
}
.star.line2 {
    display: flex;
    position: relative;
    display: inline-block;
    background-color: var(--white-color);
    width: 2vw;
    height: 2vw;
    padding: 0.5vh;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tst-right-line3 {
    display: flex;
    gap: 0.5vw;
}
.line3-txt1 {
    font-weight: 900;
}
.line3-span {
    display: flex;
    background-color: black;
    width: 0.125vw;
}
.tst-rev {
    display: flex;
    width: 100vw;
    padding-bottom: 10vh;
}
.owl-carousel,
.owl-stage-outer,
.owl-stage {
    overflow: visible !important;
}
.rev-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white-color);
    width: 100%;
    height: 40vh;
    border-radius: 2vw;
    box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.25);
    gap: 1vh;
    margin-bottom: 0.5vw;
    
}
.rev-shp {
    position: absolute;
    top: -1.5vw;
    left: 3vw;
    width: 5vw;
    max-width: 10vw;
    z-index: 1;
}
.rev-shp img {
    width: 100%;
    height: auto;
}
.rev-cont {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    padding: 2vw;
}
.rev-hdn {
    font-size: 1.25vw;
    font-weight: 900;
}
.rev-desc {
    font-size: 1vw;
    font-weight: 300;
    width: 95%;
}
.rev-det {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5vh;
}
.det-left {
    display: flex;
    align-items: center;
    gap: 1vw;
}
.det-img {
    display: flex;
}
.det-img img {
    max-width: 10vw;
    max-height: 10vh;
    border-radius: 1vw;
}
.det-name {
    font-weight: 500;
}
.det-job {
    font-weight: 300;
}
.det-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.det-rgt-line1 {
    display: flex;
    align-items: center;
    gap: 0.25vw;
}
.det-star {
    position: relative;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--primary-color);
    width: 1vw;
    height: 1vw;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.det-rtn {
    font-size: 1.5vw;
    font-weight: 500;
}
.det-rgt-line2 {
    display: flex;
}

/* Contact Section */
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background-image: url(../img/contact-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 7vh 0 0;
}
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vh;
    gap: 4vh;
}
.con-logo {
    display: flex;
}
.con-logo img{
    max-width: 20vw;
    max-height: 20vh;
}
.con-hdr{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.con-txt {
    font-size: 3vw;
    font-weight: 400;
    color: var(--white-color);
}
.con-hdn-line2 {
    display: flex;
    line-height: 0.8;
}
.con-hdn-line2 > *:first-child {
    margin-right: 1vw; /* Adds margin only after the first item */
}
.con-span {
    font-size: 3vw;
    font-weight: 900;
    color: var(--primary-color);
    font-style: italic;
}
.con-span2 {
    font-size: 3vw;
    font-weight: 900;
    color: var(--white-color);
}
.con-desc {
    font-size: 1vw;
    color: var(--white-color);
    margin-top: -3vh;
}
.con-btns {
    display: flex;
    gap: 1vw;
    margin-top: -1vh;
}
.con-btn1 {
    width: 12vw;
    transition: all 0.3s ease;
}
.con-btn1:hover {
    content: url(../img/button-hover.png);
}
.con-btn2 {
    display: flex;
    width: 12vw;
    transition: all 0.3s ease;
}
.con-btn2:hover {
    content: url(../img/button2-hover.png);
}
.con-add {
    display: flex;
    gap: 5vw;
    padding-top: 5vh;
}
.add-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.add-box:hover {
    transform: scale(1.05);
}
.add-hdn {
    font-size: 1vw;
    font-weight: 900;
    color: var(--primary-color);
}
.add-txt {
    font-size: 0.75vw;
    font-weight: 300;
    color: var(--white-color);
}
.con-coprght {
    font-size: 0.75vw;
    font-weight: 300;
    color: var(--white-color);
    padding-top: 5vh;
}

/* Form */
 .modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 10000;
    }
    
    
    .modalContents {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 43, 43, 0.084);
    width: 90%;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.299);
    border-top: none;
    }
    .form-img-box{
      width: 30%;
      overflow: hidden;
      height: 22vw;
    }
    .form-img{
      width: 120%;
    }
    
    .form-heading {
    color: var(--white-color);
    font-weight: 900;
    font-size: 1.3vw;
    border:1px solid rgba(255, 255, 255, 0.205);
    border-bottom: none;
    padding: 0.5vw 0vw;
    padding-top: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background:linear-gradient(45deg,#ebebeb3d,#9d9c9a36,#ffffff24);
    backdrop-filter: blur(5px);
    width: 90%;
    }
    
    .modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.3vw;
   
    }
    
    .modalBg {
    width: 100%;
    height: 100%;
    background: linear-gradient(43deg,rgba(0, 0, 0, 0.938),rgba(28, 27, 27, 0.834),rgba(0, 0, 0, 0.725));    
    backdrop-filter: blur(3px);
    }
    form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    }
    .inputs{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    }
    
    .inputs input{
    border-radius: 0px;
    margin: 1vw 0vw;
    background-color: transparent;
    border: none;
    border-bottom:1px solid #d1d1d18a;
    display: flex;
    align-items: center;
    width: 45%;
    height: 1.7vw;
    font-size: 0.7vw;
    color: var(--white-color);
    }
    .inputs input:focus{
    outline: none;
    background-color: none;
    }
    
    .inputs input::placeholder{
    color: var(--bg-light-color);
    font-size: 0.5vw;
    transform: translate(0.1vw,0vw);
    }
    .check-box{
    width: 95%;
    height: auto;
    }
    .checks{
    padding: 0.4vw 0vw;
    }
    .checks label{
    display: flex;
    }
    .f-btn{
    background: none;
    border: none;
    font-size: 1vw;
    font-weight: 600;
    color: var(--white-color);
    padding: 0.2vw 1vw;
    margin: 1vw 0vw;
    cursor: pointer;
    background-color: var(--secondary-color);
    }
    
    .f-btn:hover{
    color: var(--white-color);
    background-color: var(--primary-color);
  }
    
    
    /* Hide the default checkbox */
    input[type="checkbox"] {
    display: none;
    }
    
    /* Create a custom checkbox style */
    .custom-checkbox {
    width: 0.3vw;
    height: 0.3vw;
    border: 0.5px solid var(--white-color);
    cursor: pointer;
    transform: translateY(0.1vw);
    position: relative;
    }
    /* Style for when the checkbox is checked */
    input[type="checkbox"]:checked + .custom-checkbox::after {
    position: absolute;
    content: '\2714';
    font-size: 0.5vw;
    top: -90%;
    color: var(--white-color);
    }
    
    
    .is-show {
    visibility: visible;
    opacity: 1;
    scale: 1.5;
    }
    
    .lt {
    width: 96%;
    margin-left: 1%;
    font-size: 0.45vw;
    font-weight: 500;
    color: var(--bg-light-color);
    }
    .clModal{
    position: absolute;
    font-weight: 800;
    font-size: 0.8vw;
    top: 1vw;
    right: 3vw;
    background-color: #3f3b3c;
    width: 1vw;
    height: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  var(--white-color);
    cursor: pointer;
    opacity: 0.4;
    }

    /* Responsiveness */
    @media only screen and (max-width: 1024px) {

        /* Navbar */
        .ledtronicstechmedia-logo {
            width: 25vw;
        }
        .hamburger {
            width: 1.2rem;
            height: 1.2rem;
        }
        .navbar {
            padding: 6vw;
        }
        .mobile-navbar {
            padding-right: 6vw;
        }
        .mobile-menu-links li {
            margin: 1rem 0;
        }
        .mobile-menu-links li a {
            font-size: 1rem;
        }
        .nav-button img {
            width: 30vw;
        }

        /* Hero Section */
        .hero {
            height: auto;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 12vh 6vw 4vh;
        }
        .hero-hdr {
            font-size: 10vw;
        }
        .hero-desc {
            font-size: 3vw;
            width: 95%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }

        /* About Us Section */
        .about {
            height: auto;
        }
        .about-container {
            padding: 3vh 6vw;
            gap: 2vh;
        }
        .abt-hdn-text {
            display: ruby;
            font-size: 6vw;
            width: 90%;
            text-align: center;
        }
        .abt-hdn-text img {
            height: 3vh;
            padding: 0 2vw;
        }
        .abt-hdn-text span {
            padding: 0 2vw;
        }
        .about-desc {
            font-size: 2vw;
            width: 90%;
        }
        .about-tab-cont {
            display: flex;
            flex-direction: column;
            height: auto;
            max-height: none;
            margin-top: -2vh;
        }
        .abt-cont-left {
            width: 100%;
            height: auto;
            padding: 1.5vh;
            gap: 1vh;
            border-radius: 2vh;
            box-sizing: border-box;
            order: 2;
        }
        .abt-cont-hdn {
            font-size: 4vw;
        }
        .abt-cont-desc {
            font-size: 2vw;
            width: 100%;
        }
        .abt-cont-right {
            width: 100%;
            border-radius: 2vh;
        }
        .abt-cont-right img {
            border-radius: 2vh;
        }

        /* Services Section */
        .services {
            height: auto;
        }
        .services-container {
            gap: 4vh;
        }
        .services-header {
            gap: 1vw;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 0.9;
        }
        .services-hdn {
            font-size: 6vw;
        }
        .services-span {
            font-size: 6vw;
            text-align: center;
        }
        .services-box {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 2vw;
        }
        .services-items {
            justify-content: space-evenly;
            height: 45vh;
        }
        .services-icn img {
            max-width: 30vw;
            max-height: 26vh;
        }
        .services-ttl {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7vw;
            height: 17vh;
        }
        .services-cont {
            gap: 2vh;
        }

        /* Products Section */
        .products {
            height: auto;
        }
        .products-container {
            padding: 4vh 5vw;
        }
        .prds-img-cont img {
            max-height: 10vh;
            max-width: 35vw;
        }
        .prds-desc {
            font-size: 5vw;
            padding: 1vh 2vw;
        }
        .prds-item {
            height: 30vh;
        }
        .prds-hdn {
            font-size: 3.5vw;
        }
        .prds-span {
            font-size: 9vw;
        }

        /* Projects Section */
        .projects {
            padding: 0vw 0vw 4vh;
        }
        .prj-hdn {
            font-size: 3.5vw;
        }
        .prj-span {
            font-size: 9vw;
        }
        .popup-description {
            position: absolute;
            bottom: 250px;
        }

        /* Team Section */
        .team-hdn {
            font-size: 3.5vw;
        }
        .team-span {
            font-size: 9vw;
        }
        .team-box {
            grid-template-columns: repeat(2, 1fr);
        }
        .team-img-cont img {
            max-height: 55vh;
            max-width: 43vw;
        }
        .team-name {
            font-size: 5vw;
            text-align: center;
            padding-top: 1vh;
            line-height: 1;
        }
        .team-job {
            font-size: 2.5vw;
            padding: 0.5vh 2vw 1vh;
        }

        /* Testimonial Section */
        .tst-hdr {
            flex-direction: column;
            align-items: center;
            padding: 3vh 3vw;
        }
        .tst-hdr-left {
            width: 95%;
            align-items: center;
        }
        .tst-hdn {
            align-items: center;
        }
        .tst-hdn-big {
            font-size: 7vw;
            gap: 2vw;
        }
        .tst-hdn-small {
            font-size: 4vw;
        }
        .tst-desc {
            font-size: 3vw;
            text-align: center;
            width: 95%;
        }
        .tst-hdr-right {
            align-items: center;
            width: 75%;
            background-color: var(--white-color);
            padding: 5vw;
            border-radius: 4vw;
            box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.25);
            gap: 1vh;
        }
        .line1-txt {
            font-size: 6vw;
        }
        .star.line1 {
            width: 5vw;
            height: 5vw;
        }
        .star.line2 {
            width: 5vw;
            height: 5vw;
        }
        .tst-right-line3 {
            flex-direction: column;
            align-items: center;
        }
        .rev-shp {
            top: -3.5vw;
            width: 10vw;
        }
        .rev-box {
            width: 90%;
            height: auto;
        }
        .rev-cont {
            padding: 4vw;
        }
        .rev-hdn {
            font-size: 6vw;
            width: 95%;
        }
        .rev-desc {
            font-size: 3.5vw;
            width: 95%;
        }
        .det-job {
            font-size: 3vw;
            width: 70%;
        }
        .det-img img {
            max-width: 14vw;
            max-height: 14vh;
        }
        .det-rtn {
            font-size: 3.5vw;
        }
        .det-star {
            width: 2vw;
            height: 2vw;
        }
        .tst-rev {
            padding-bottom: 3vh;
        }

        /* Contact Section */
        .con-logo img {
            max-width: 40vw;
        }
        .con-txt,
        .con-span,
        .con-span2 {
            font-size: 7vw;
        }
        .con-desc {
            font-size: 3vw;
        }
        .con-btn2 {
            width: 30vw;
        }
        .con-add {
            display: flex;
            flex-direction: column;
            gap: 5vw;
            padding-top: 2vh;
        }
        .add-hdn {
            font-size: 3vw;
        }
        .add-txt {
            font-size: 2.75vw;
            text-align: center;
        }
        .con-coprght {
            font-size: 1.75vw;
            padding-top: 2vh;
        }
        /* form */
        .modalWrapper {
            width: 70%;
        }
        .inputs input {
            width: 85%;
            height: 4.7vw;
            font-size: 1.5vw;
        }
        .modalContents {
            width: 80%;
        }
        
        .inputs input::placeholder {
            font-size: 1.5vw;
            transform: translate(0.3vw, 0vw);
        }
        form{
            width: 100%;
        }
        .form-heading {
            font-size: 3vw;
            font-weight: 800;
            margin: 0vw 0vw;
            margin-top: 4.5vw;
            text-align: center;
            line-height: 4vw;
            width: 80%;
        }
        .check-box {
            width: 85%;
        }
        .custom-checkbox {
            width: 0.9vw;
            height: 0.9vw;
        }
        .lt {
            font-size: 1vw;
        }
        input[type="checkbox"]:checked+.custom-checkbox::after {
            left: -0.2vw;
            font-size: 1.5vw;
        }
        .f-btn {
        
            font-size: 2vw;
            border-radius: 5px;
            padding: 0.5vw 3vw;
            margin: 2vw 0vw;
        }
        .clModal {
            font-size: 1.8vw;
            width: 3vw;
            height: 3vw;
        }
        .form-img-box{
            display: none;
        }
    }

    @media screen and (min-width: 768px) and (max-width: 1024px) {

        /* Navbar */
        .ledtronicstechmedia-logo {
            width: 30vw;
        }
        .hamburger {
            width: 3.2rem;
            height: 3.2rem;
        }
        .mobile-menu-links li a {
            font-size: 2.5rem;
        }
        .mobile-menu-links li {
            margin: 2rem 0;
        }

        /* Hero */
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 15vh 6vw 6vh;
        }
        .hero-hdr {
            font-size: 9vw;
        }
        .hero-desc {
            font-size: 2.5vw;
            width: 85%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }

        /* About Us Section */
        .about-container {
            gap: 4vh;
        }
        .abt-hdn-text {
            font-size: 5vw;
        }
        .about-desc {
            font-size: 3vw;
            width: 95%;
        }
        .about-tab-cont {
            margin-top: -4vh;
        }
        .abt-cont-left {
            gap: 2vh;
        }
        .abt-cont-hdn {
            font-size: 5vw;
        }
        .abt-cont-desc {
            font-size: 3vw;
        }
        .abt-cont-right img {
            width: 100%;
        }

        /* Services Section */
        .services-hdn {
            font-size: 9vw;
        }
        .services-span {
            font-size: 9vw;
            text-align: center;
        }

        /* Testimonial Section */
        .rev-box {
            height: auto;
        }
        .det-name {
            font-size: 3vw;
        }
        .det-job {
            font-size: 2vw;
            width: 80%;
        }
    }

    @media screen and (min-width: 540px) and (max-width: 767px) {
        .hero {
            height: auto;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 12vh 6vw 4vh;
        }
        .hero-hdr {
            font-size: 10vw;
        }
        .hero-desc {
            font-size: 3vw;
            width: 95%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }
        .about-desc {
            font-size: 3vw;
            width: 95%;
        }
        .abt-cont-hdn {
            font-size: 5vw;
        }
        .abt-cont-desc {
            font-size: 3vw;
            width: 100%;
        }
        .abt-hdn-text {
            font-size: 7vw;
        }
        .services-hdn {
            font-size: 9vw;
        }
        .services-span {
            font-size: 9vw;
        }
        .rev-box {
            height: auto;
        }
    }
    @media screen and (min-width: 320px) and (max-width: 374px) {
        .hero {
            height: auto;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 10vh 6vw 4vh;
        }
        .hero-hdr {
            font-size: 10vw;
        }
        .hero-desc {
            font-size: 3vw;
            width: 95%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }
        .abt-hdn-text {
            font-size: 6vw;
        }
        .abt-hdn-text img {
            height: 1.5vh;
        }
        .about-desc {
            font-size: 3vw;
        }
        .abt-cont-hdn {
            font-size: 5vw;
        }
        .abt-cont-desc {
            font-size: 3vw;
        }
        .services-hdn {
            font-size: 12vw;
        }
        .services-span {
            font-size: 12vw;
        }
        .services-ttl {
            height: 10vh;
        }
        .services-items {
            height: 40vh;
        }
        .services-icn img {
            max-width: 40vw;
            max-height: 15vh;
        }
        .prds-item {
            height: 18vh;
        }
        .prds-img-cont img {
            max-height: 25vh;
            max-width: 20vw;
        }
        .rev-box {
            height: auto;
        }
    }

    @media screen and (min-width: 375px) and (max-width: 424px) {
        .hero {
            height: auto;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 10vh 6vw 3vh;
        }
        .hero-hdr {
            font-size: 10vw;
        }
        .hero-desc {
            font-size: 3vw;
            width: 95%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }
        .abt-hdn-text {
            font-size: 6vw;
        }
        .abt-hdn-text img {
            height: 1.5vh;
        }
        .about-desc {
            font-size: 3vw;
        }
        .abt-cont-hdn {
            font-size: 5vw;
        }
        .abt-cont-desc {
            font-size: 3vw;
        }
        .services-hdn {
            font-size: 12vw;
        }
        .services-span {
            font-size: 12vw;
        }
        .services-ttl {
            height: 10vh;
        }
        .services-items {
            height: 40vh;
        }
        .services-icn img {
            max-width: 40vw;
            max-height: 15vh;
        }
        .prds-item {
            height: 18vh;
        }
        .prds-img-cont img {
            max-height: 25vh;
            max-width: 20vw;
        }
        .rev-box {
            height: auto;
        }
    }

    @media screen and (min-width: 425px) and (max-width: 767px) {
        .hero {
            height: auto;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            padding: 15vh 6vw 6vh;
        }
        .hero-hdr {
            font-size: 10vw;
        }
        .hero-desc {
            font-size: 3vw;
            width: 95%;
            padding-bottom: 1vh;
        }
        .hero-cta img {
            width: 30vw;
        }
        .abt-hdn-text {
            font-size: 6vw;
        }
        .abt-hdn-text img {
            height: 1.5vh;
        }
        .about-desc {
            font-size: 3vw;
        }
        .abt-cont-hdn {
            font-size: 5vw;
        }
        .abt-cont-desc {
            font-size: 3vw;
        }
        .services-hdn {
            font-size: 12vw;
        }
        .services-span {
            font-size: 12vw;
        }
        .services-ttl {
            height: 10vh;
        }
        .services-items {
            height: 40vh;
        }
        .services-icn img {
            max-width: 40vw;
            max-height: 15vh;
        }
        .prds-item {
            height: 18vh;
        }
        .prds-img-cont img {
            max-height: 25vh;
            max-width: 20vw;
        }
        .rev-box {
            height: auto;
        }
    }

    @media screen and (min-width: 1024) and (max-width: 1440) {
        .services-items {
            height: 55vh;
        }
        .prds-item {
            height: 40vh;
        }
        .rev-box {
            height: auto;
        }
    }

    @media screen and (min-width: 1440px) and (max-width: 1700px) {
        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 19vh 10vw;
            height: 100%;
            gap: 2vh;
        }
        .hero-hdr {
        color: var(--white-color);
        font-size: 4vw;
        font-weight: 500;
        line-height: 0.9;
        }
        .hero-desc {
            font-size: 1vw;
            width: 30%;
            color: var(--white-color);
        }
        .hero-cta img {
            width: 15vw;
            transition: all 0.3s ease;
        }
        .navbar {
            padding: 4vw;
        }
        .ledtronicstechmedia-logo {
            width: 15vw;
        }
        .mobile-navbar {
            padding-right: 4vw;
        }
        .abt-hdn-text {
            font-size: 2.5vw;
        }
        .abt-cont-hdn {
            font-size: 2vw;
        }
        .abt-cont-desc {
            font-size: 1.1vw;
        }
        .services-hdn {
            font-size: 4vw;
        }
        .services-span {
            font-size: 4vw;
        }
        .products {
            height: auto;
        }
        .prds-span {
            font-size: 4vw;
        }
        .prj-span {
            font-size: 4vw;
        }
        .prds-item {
            height: 30vh;
        }
        .team-span {
            font-size: 4vw;
        }
        .team-job {
            font-size: 1.5vw;
            padding: 0.5vh 2vw 1vh;
        }
        .tst-hdn-small {
            font-size: 1.25vw;
        }
        .tst-hdn-big {
            font-size: 4vw;
        }
        .tst-desc {
            font-size: 1.5vw;
        }
        .rev-box {
            height: 47vh;
        }
        .rev-hdn {
            font-size: 2.5vw;
        }
        .rev-desc {
            font-size: 1.5vw;
        }
        .det-name {
            font-size: 1.5vw;
        }
        .det-job {
            width: 75%;
        }
        .con-desc {
            font-size: 1.5vw;
        }
        .add-hdn {
            font-size: 1.25vw;
        }
        .add-txt {
            font-size: 1vw;
        }
    }

