@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

/* Add similar rules for other font weights and styles */



        /* Custom Styles */
        .navbar-text {
            font-size: 1rem;
            color: white;
            transition: color 0.3s ease;
            font-family: "Manrope", sans-serif;
            font-weight: 400;
        }
        .navbar-brand {
            color: white;
            font-size: 1.6rem;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -1px;
        }
        .navbar-brand:hover {
            color: white;
        }
        /* Hover class to manage white/gray toggle */
        .nav-item.hovered .navbar-text {
            color: red;
        }
        .nav-item.not-hovered .navbar-text {
            color: white;
        }
        .navgetStarted {
            border: none;
            color: white;
            background-color: green;
            border-radius: 20px;
            padding: 0.4rem 0.7rem;
            font-size: 0.69rem;
            font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
            font-weight: 600;
        }
        .navgetStarted:hover {
            background-color: white;
            color: black;
            font-weight: 800;
            transition-duration: 550ms;
        }
        /* Transparent Navbar */
        .navbar {
            transition: background-color 0.3s ease;
            background-color: rgba(0,0,0,1) !important;
        }
        
        .navbar.scrolled {
            background-color: black !important;
        }
        /* Dropdown on hover */
        .navbar-nav .nav-item:hover .dropdown-menu {
            display: block;
            transition: all 0.3s ease-in-out;
        }
        /* Style the dropdown menu */
        .dropdown-menu {
            background-color: black;
            border: none;
        }
        /* Style dropdown items */
        .dropdown-item {
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.6rem;
        }
        /* Dropdown item hover effect */
        .dropdown-item:hover {
            background-color: black;
        }
        /* Custom breakpoint to adjust navbar-brand font-size on smaller screens */
        @media (max-width: 767px) {
            .navbar-brand {
                font-size: 1rem;
            }
            .navbar-text {
                font-size: 0.8rem;
            }
            .navgetStarted {
                padding: 0.35rem 0.6rem;
                font-size: 0.8rem;
            }
        }
        /* Ensure menu button icon is visible in light mode */
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

  /* Text styling */
.content-overlay h2 {
    font-size: 4rem;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: -1px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem 3rem;

}
.content-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 300;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0rem 3rem 1rem 3rem;

}


.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Set height to full viewport height */
    overflow: hidden;
    padding-top: 70px; /* Space for the fixed navbar */
}

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

.content-overlay {
    position: absolute;
    bottom: 0px; /* Ensures content is at the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center content horizontally */
    text-align: center;
    color: white;

    z-index: 1;
    width: 100%; /* Make sure it takes up the full width of the container */
}


.sec-para {
    color: black;
    margin-top: 5rem;
}

.unique-heading2 {
    font-size: 3rem;
    font-weight: 500;
    margin: 0 auto;
    width: 85%;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: black;

}

/* Unique subheading styling */
.unique-subheading2 {
    text-align: center;
    font-size: 1rem;
    color: black;
    margin-top: 20px;
    max-width: 600px;
    font-family: Arial, Helvetica, sans-serif;
}


/* .content-overlay h2 {
    font-size: 3.4rem;
    font-weight: 100;
    font-family: serif;
    margin-top: -1rem;
} */
.twobutton{
    margin: 1rem 0rem 5rem 0rem;
}
.El-engineer img{
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.one-btn {
    border: none;
    background-color: white; /* Button background color */
    border-radius: 1rem; /* Rounded corners */
    padding: 0.3rem 0.7rem; /* Button padding */
    color: black; /* Initial text color (change to your preference) */
    transition: color 0.3s ease; /* Smooth transition for color change */
    font-size: 0.8rem;
}

.two-btn {
    border: 1px solid white; /* Optional: add border for consistency */
    background-color: transparent; /* Keep it transparent */
    border-radius: 1rem; /* Same border radius */
    padding: 0.3rem 0.7rem; /* Same padding */
    color: white; /* Initial text color */
    transition: color 0.3s ease; /* Smooth transition for color change */
    font-size: 0.8rem;
}

/* Hover effects */
.one-btn:hover {
    color: gray; /* Change text color to gray on hover */
}

.two-btn:hover {
    color: gray; /* Change text color to gray on hover */
}

/* Change the right arrow color to gray on button hover */
.one-btn:hover .right-arrow img,
.two-btn:hover .right-arrow img {
    filter: grayscale(100%); /* Make the arrow image gray on hover */
}

.right-arrow img {
    width: 1.5rem; /* Arrow image width */
    height: 1rem; /* Arrow image height */
}

.one-btn:hover{
    color: gray;
}
.two-btn{
    border: 1px solid white;
    background-color: transparent;
    border-radius: 1rem;
    padding: 0.3rem 0.7rem;
    color: white;

}
.right-arrow img{
    width: 1.5rem;
    height: 1rem;
}

.right-arrow:hover img{
    color: gray;
}
.two-btn:hover{
    background-color: white;
    color: black;
}


.section-heading {
    font-size: 3.5rem;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    letter-spacing: -3px;
    font-weight: bolder;
    line-height: 4.4rem;
    width: 65%;
    margin: 0 auto;
}
.globally {
    text-align: center;
    margin: 3.5rem auto 0 auto;
    padding: 0;
    width: 78%;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
}
.section-subheading {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 300;
    width: 86%;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
    margin-top: 2.5rem;
}
.card{
    border: none;
    margin: 10rem 0 3rem 0;
}
.card-body{
    margin: 0;
    padding: 0;
}

.card-title a{
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 600;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    color: black;
}
.card-title:hover a{
    color: gray;
    cursor: pointer;
    transition-duration: 900ms;
}
.card-subtitle {
    font-size: 1.2rem;
    color: gray;
    font-weight: 300;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}
.expertise-section {
    margin-top: 50px;
    
}
.dum {
    background-color: rgb(240 239 239);
    border-radius: 5px;

    
}
.lol{
    padding: 1rem 2rem 0.1rem 2rem;
}
.lol p{
    font-size: 1.2rem;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
}
.expertise-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
   font-family: "Arya", sans-serif;
    font-optical-sizing: auto;

}
.learn-more-btn {
    border: 1px solid gray;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
    color: black;
    font-size: 0.8rem;
    background-color: transparent;
}
.learn-more-btn:hover {
    background-color: black;
    color: white;
}
.sub-head{

    margin: 10rem auto;
}
.sub-head2{

    margin: 10rem auto 3rem auto;
}
.img-wrapper {  
    width: 370px;
    height: 270px;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
}

.inner-img {
    transition: transform 8500ms ease; /* Smooth zoom transition */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .inner-img {
    transform: scale(1.1); /* Zoom effect */
}

.black-sec-title{
    
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
}

.bl-h5 a{
    color: white;
}

/* Responsive styling */

@media (max-width: 992px) {
    .section-heading {
        font-size: 2rem;
        width: 100%;
        letter-spacing: -1px;
    }
    .section-heading2 {
            line-height: 5.8rem;
    font-size: 5rem !important;
    letter-spacing: -0.2rem !important;
    }
    .globally{
        width: 100%;
    }
    .img-wrapper {  
        width: 100%;
        height: auto;
        overflow: hidden;
        display: inline-block;
        box-sizing: border-box;
    }
    .dum {
        background-color: rgb(249 249 249);
        margin: 0;
        
    }
    .dum button{
        margin: 1rem auto 1rem auto;
    }
    
    .section-subheading {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 8rem;
    }
    .lol{
        padding: 20px 20px;
    }

    .section-heading2 {
        font-size: 2rem;
        width: 100%;
        letter-spacing: -1px;
    }
    .globally2{
        width: 100%;
    }
    .img-wrapper {  
        width: 100%;
        height: auto;
        overflow: hidden;
        display: inline-block;
        box-sizing: border-box;
    }
    
    .section-subheading2 {
        font-size: 0.9rem;
        width: 100%;
    }

    .card-title {
        font-size: 1rem;
    }
    .card{
        border: none;
        margin: 0;
    }
    .black-sec-button{
        margin-bottom: 5rem;
    }
}



@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
        width: 100%;
        letter-spacing: -1px;
    }
    .globally{
        width: 100%;
    }
    .section-subheading {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 8rem;
    }
    .section-heading2 {
        font-size: 2rem;
        width: 100%;
        letter-spacing: -1px;
    }
    .globally2{
        width: 100%;
    }
    .section-subheading2 {
        font-size: 0.9rem;
        width: 100%;
    }
    .card-title {
        font-size: 1rem;
    }
    .card{
        border: none;
        margin: 0;
    }
    .black-sec-button{
        margin-bottom: 5rem;
    }
}
.black-sec-button{
    border: 1px solid white; /* Optional: add border for consistency */
    background-color: transparent; /* Keep it transparent */
    border-radius: 1rem; /* Same border radius */
    padding: 0.3rem 0.7rem; /* Same padding */
    color: white; /* Initial text color */
    transition: color 0.3s ease;
    font-size: 0.8rem;
    font-weight: 300;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    
}
.black-sec-button:hover{
    background-color: #fff;
    color: black;
}
.black-section{
    background-color: black;
}
.black-sec-h3{
    color: white;
    font-size: 1rem;
    font-weight: 300;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
}
.black-card{
    background-color: black;
}



@media (max-width: 992px) {
    .content-overlay h1 {
        font-size: 1.8rem;
    }
    .content-overlay h2 {
        font-size: 1.5rem;
    }
    .content-overlay h3 {
        font-size: 1.2rem;
    }
    .black-sec-h3{
        color: white;
        width: 100%;
    }
    .sub-head h1 {
        font-size: 3.2rem;
        width: 100%;
    }
    .sub-head button{
        margin: 2rem auto 3rem auto;
    }
}
/* Responsive font sizes */
@media (max-width: 768px) {
    .content-overlay h1 {
        font-size: 1.8rem;
    }
    .content-overlay h2 {
        font-size: 1.5rem;
    }
    .content-overlay h3 {
        font-size: 1.2rem;
    }
    .black-sec-h3{
        color: white;
        width: 100%;
    }
    .sub-head h1 {
        font-size: 3.2rem;
        width: 100%;
    }
    .sub-head button{
        margin: 2rem auto 3rem auto;
    }
    .specs h2{
        font-family: serif;
        font-size: 2rem;
        margin-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .content-overlay h1 {
        font-size: 4.5rem;
        margin-top: 3rem;
    }
    .content-overlay h2 {
        font-size: 2.2rem;
    }
    .content-overlay h3 {
        font-size: 1rem;
    }
    .black-sec-h3{
        color: white;
        width: 100%;
    }
    .sub-head button{
        margin: 2rem auto 3rem auto;
    }
    .sub-head h1 {
        font-size: 2rem;
        letter-spacing: -1px;
        width: 100%;
        line-height: 1.2;
    }
    .row .pad-styl{
        padding: 1rem;
    }
    .specs h2{
        font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
        font-size: 2rem;
        margin-bottom: 6rem;
        font-weight: 100;
    }
    
}


@media(min-width: 992px) and (max-width: 1240px){
    .img-wrapper{
        width: 100%;

    }
    .img-wrapper img{
        object-fit: cover;
    }
    .specs h2{
        font-family: serif;
        font-size: 3rem;
        margin-bottom: 6rem;
    }
}

/* Additional content for scrolling */
.additional-content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: white;
    height: 200vh; /* Enough height to allow scrolling */
}


.footer {
    background-color: black;
    padding: 40px 0;
}
.footer h6 {
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    margin-bottom: 20px;
    color: gray;
    font-size: 1rem;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    line-height: 0.7rem;
}
.footer ul li {
    line-height: 0.9rem;
    color: #ffff;
    font-size: 0.9rem;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;

}
.footer ul li a {
    color: #ffff;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
    font-size: 0.8rem;
    line-height:0.9rem;
}
.footer ul li a:hover {
    text-decoration: underline;
}
.footer a {
    color: #bbb;
}
.footer a:hover {
    color: #fff;
}
.footer-bottom {
    padding-top: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}
.footer-bottom a {
    margin-left: 15px;
}
.spec li{
    margin: 7px 0;
}
.spec2 li{
    margin: 9px 0;
}

body, html {
    overflow-x: hidden;
}

@media (max-width: 992px) {
    
    .footer .row {
        text-align: center;
    }
    .final{
        text-align: start;
    }
    .footer ul li a {
        color: #ffff;
        text-decoration: none;
        font-size: 0.7rem
    }
    .footer ul li {
        line-height: 0.8rem;
    }
    .learn-more-btn2 {
        margin: 1rem auto 3rem auto;
    }
    .row .pad-styl{
        padding: 1rem;
    }
    .species{
        font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
        font-size: 2rem;
        margin-bottom: 6rem;
        font-weight: 100;
    }

  
}

@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .loco{
        line-height: 0.8rem;
    }
    .final{
        text-align: start;
    }
    .footer ul li a {
        color: #ffff;
        text-decoration: none;
        font-size: 1rem
    }
    .row .pad-styl{
        padding: 1rem;
    }
    .specs h2{
        font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
        font-size: 2rem;
        margin-bottom: 6rem;
        font-weight: 100;
    }
      

}
.foot-TC{
    color: gray ;
    font-size: 0.8rem;
    margin-top: 1.4rem;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
}
.foot-TC a{
    
    color: gray;
    text-decoration: none;
    
}

.s1{
    color: gray;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
}
.foot-TC:hover .s1{
    text-decoration: underline;
    color: gray;
}
.Final-sec{
    margin-top: 3rem;
    text-align: center;
    color: #ffff;
    font-size: 4rem;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    letter-spacing: -4px;

}
.key-pro{
    color: #ffff;
    font-size: 3rem;
    padding-left: 3rem;
}
.overview{
    color: #fff;
    padding-left: 3rem;
    margin-top: -1rem;
}



.custom-title {
    font-size: 2.9rem;
    color: #ffff;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    margin-top: 1rem;
}

.custom-subtitle {
    font-size: 1.2rem;
    color: #ffff;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

.custom-product-heading {
    font-size: 1.3rem;
    padding: 0 5rem 0 0;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-top: 2rem;
    color: #ffff;
}

.custom-product-list {
    font-size: 0.9rem;
    color: #ffff;
    padding: 0;
    margin-top: 1rem;
}

.custom-product-list li {
    list-style: none;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
    color: #ffff;
}

/* Video styling */
.custom-video-wrapper {
    margin-top: 3.5rem; /* Add some margin below the overview */
}

@media (max-width: 768px) {
    .custom-title {
        font-size: 1.8rem;
        padding-right: 2rem;
    }

    .custom-product-heading {
        font-size: 1.25rem;
    }
}



.section-heading2 {
    font-size: 7rem;
    font-family: serif;
    text-align: center;
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    /* width: 36rem; */
    /* line-height: 3.4rem; */
    margin: 2rem auto;
    letter-spacing: -0.5rem;
    font-weight: 700;

}
.globally2{
    text-align: center;
    width: 40rem;
    margin: -1.5rem auto 0 auto;
    padding: 0;
    font-size: 1.4rem;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
}
.section-subheading2 {
    text-align: center;
    margin: 0 auto;
    width: 50rem;
    align-items: center;
    font-size: 0.7rem;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    font-weight: 100;
    margin-top: 2rem;
}
.learn-more-btn2 {
    border: 1px solid gray;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: black;
    font-size: 0.8rem;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
    background-color: transparent;
    margin: 2rem auto 0rem auto;
    justify-content: center;
    display: flex;
}
.learn-more-btn2:hover {
    background-color: black;
    color: white;
}

.foot-video {
    overflow: hidden; /* Hide any overflow */
    max-height: 35rem; /* Limit the maximum height of the video container */
}
.custom-video {
    height: 100%; /* Make the video take full height of its container */
    width: 100%; /* Keep width auto to maintain aspect ratio */
    object-fit: cover; /* Ensure the video covers the area without distortion */
    border-radius: 8px; /* Add slightly rounded corners */
}
.f-foot{
    color: white;
            font-size: 1.6rem;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -1px;
}


.navgetStarted2 {
    color: white;
    background-color: black;
    border-radius: 20px;
    padding: 0.4rem 0.7rem;
}
.navgetStarted2:hover {
    background-color: black;
    color: gray;
    transition-duration: 550ms;
}

.logo-sidebar{
    font-size: 2rem;
    margin-bottom: -3.8rem;
    margin-top: 1rem;
    margin-left: 1rem;
    font-weight: 900;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
    font-style: italic;
    letter-spacing: -1px;
}


 /* Sidebar styling */
 .sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off-screen */
    width: 100%; /* Full viewport width */
    height: 100vh;
    background-color: #fff;
    color: black;
    transition: right 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
body{
    overflow-x: none;
}
/* Sidebar visible state */
.sidebar.show {
    right: 0;
}
.sidebar{
    padding: 0 10px;
}

.sidebar .close-btn {
    align-self: flex-end;
    margin-right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

/* Navigation links */
.sidebar ul {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 6rem;
}

.sidebar ul li {
    margin: 15px 15px;
    border-bottom: 0.037rem solid gray;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.4rem;
    text-align: start;
    display: flex;
    font-family: serif;
    
}

.sidebar ul li a:hover {
    text-decoration: underline;
}



/* special Section */


.icon {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: start;
  }
  .title {
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-size: 1.4rem;
    text-align: start;
    
  }
  .spec-sec p{
    font-size: 0.9rem;
    font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
    font-weight: 300;
    text-align: start;
  }
  .pad-styl{
      padding: 0 3rem;
  }
  .pad-styl i{
      justify-content: start;
      display: flex;
  }
.specs{
    background-color: #0a1a2e;
      color: #ffffff;
  }
.specs h2{
    font-family: "Arya", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 6rem;
  
}
  




