@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-transform: capitalize; */
    transition: all .2s linear;
    text-decoration: none;
  
}
/* Reset default body and html padding/margin */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden; /* Prevent sideways scroll */
}

/* Apply box-sizing border-box globally */
*, *::before, *::after {
  box-sizing: border-box;
}
.box {
    height: 30px;
    display: flex;
    cursor: pointer;
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.box:hover input {
    width: 400px;
}

.box input {
    width: 0;
    outline: none;
    border: none;
    font-weight: 500;
    transition: 0.8s;
    background: transparent;
}

html {
    font-size: 60%;
}

body {
    overflow-x: hidden;
    background-color: white;

}

.scrolling-container {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    /* -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent) */
}


.heading,
.clients .section-header h2,
.section-head h1,

.section-head-1 h4 {
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #002e5f;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before,
.heading::after,
.clients .section-header h2::before,
.clients .section-header h2::after,
.section-head h1::before,
.section-head h1::after,

.section-head-1 h4::before,
.section-head-1 h4::after {
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #002e5f;
    border-left: .4rem solid #002e5f;
}

.faq .heading::before,
.faq .heading::after {
    border-top: .4rem solid #00bfff;
    border-left: .4rem solid #00bfff;
}

.heading::before,
.clients .section-header h2::before,
.section-head h1::before,

.section-head-1 h4::before {
    top: 5.8rem;
    left: -2rem;
}

.heading::after,
.clients .section-header h2::after,
.section-head h1::after,

.section-head-1 h4::after {
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.container-more-products {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Adjust as needed or set to a specific value */
}

.more-product-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #0e4987;
    /* Primary button color */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.more-product-btn:hover {
    background-color: #0057b336;
    /* Hover effect color */
}

.row .btn {
    outline: none;
    border: none;
    border-radius: 5rem;
    /* background: white; */
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
}

.communicate .btn {
    outline: none;
    border: none;
    border-radius: 5rem;
    /* background: white; */
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
}

.row .btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    /* color: white; */
    background: #002e5f;
}

.communicate .btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    /* color: white; */
    background: #00bfff;
}

.header .fa-bars {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
    /* Default hidden, for mobile view */
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #00295f;
}

.header .logo img {
    width: 100%;
    height: auto;
    max-height: 4.5rem;
    top: 0;
    left: 0;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
}

.header .navbar ul li {
    margin: 0 1rem;
    position: relative;

}

.header .navbar ul li a {
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    transition: padding 0.5s ease;
    /* Smooth transition */


}

.header .navbar ul li a:hover {
    color: #c76b1b;
    text-decoration: underline;
    padding-left: 1rem;
    /* Add space around the word */
    padding-right: 1rem;
    /* Add space around the word */
}

.header .logo i {
    padding: 0.5rem;
}


/* Dropdown Menu Styling */
.header .navbar ul li.dropdown {
    position: relative;
}

/* Show the main dropdown on hover */
.header .navbar ul li.dropdown:hover .dropdown-menu {
    display: block;
    padding-left: 1rem;
    /* Add space around the word */
    padding-right: 1rem;
    /* Add space around the word */
    /* Show the dropdown menu when hovering over the parent */
}

.header .navbar ul li.dropdown:hover .dropdown-menu {
    padding: 1.5rem;
    /* Increase padding around the dropdown */
}

.header .navbar ul li .dropdown-menu {

    display: none;
    position: absolute;
    top: 100%;
    right: 20%;
    left: auto;
    background-color: #ffffff;
    /* padding: 1rem 0; */
    list-style: none;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.header .navbar ul li .dropdown-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 20%;
    right: auto;
    background-color: #ffffff;
    padding: 1rem 0;
    list-style: none;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding-left: 1rem;
    /* Add space around the word */
    padding-right: 1rem;
    /* Add space around the word */
}

.header .navbar ul li .dropdown-menu li,
.header .navbar ul li .dropdown-submenu li {
    padding-bottom: 0.8rem;
    position: relative;
}

.header .navbar ul li .dropdown-menu li a,
.header .navbar ul li .dropdown-submenu li a {
    color: #656565;
    font-size: 1.4rem;
    display: block;
    white-space: nowrap;
    padding-left: 0rem;
}

.header .navbar ul li .dropdown-menu li a:hover,
.header .navbar ul li .dropdown-submenu li a:hover {
    color: #c76b1b;
    background-color: #e0c05f37;
    /* padding-left: 0rem; */
    /* width: 400px; */
}

/* Show Dropdown on Hover */
.header .navbar ul li.dropdown:hover>.dropdown-menu,
.header .navbar ul li.dropdown .dropdown-menu li.dropdown:hover>.dropdown-submenu {
    display: block;

}

/* Align Submenu Properly */
.header .navbar ul li .dropdown-submenu {
    top: 0;
    left: 100%;
    margin-left: 1rem;

}

/* Hover Styling for Specific Dropdown Items */
.header .navbar ul li .dropdown-menu li.dropdown:hover>a {
    color: #c76b1b;
    /* background-color: #001f47; */
    padding-left: 1rem;
    position: relative;
}

.header .navbar ul li .dropdown-menu li.dropdown:hover>a::before {
    content: '\02E0';
    position: absolute;
    left: 0.1rem;

    color: #c76b1b;
    font-size: 1.8rem;
}

/* Responsive Toggle for Dropdown */
@media (max-width: 768px) {
    .header .navbar ul {
        flex-direction: column;
    }

    .header .navbar ul li .dropdown-menu,
    .header .navbar ul li .dropdown-submenu {
        position: relative;
        background-color: inherit;
        box-shadow: none;
    }
}

/* Responsive Toggle for Dropdown */
@media (max-width: 480px) {
    /* Hide the main navbar items and show the hamburger menu */


    /* Dropdown and Submenu (Mobile) */
    .header .navbar ul li.dropdown {
        position: relative;
        width: 100%;
        /* Ensure dropdown takes full width on mobile */
    }

    /* Show dropdown menu when parent is active (click/tap) */
    .header .navbar ul li.dropdown.active .dropdown-menu {
        display: block;
        /* Show the dropdown menu when it's active */
        width: 100%;
        /* Full-width dropdown */
        padding: 1rem;
        /* Add space around the dropdown */
        box-shadow: none;
        /* Remove any shadows for cleaner look */
        background-color: #ffffff;
        /* Background for dropdown */
    }

    /* Styling for inner submenu in dropdown */
    .header .navbar ul li .dropdown-menu .dropdown-submenu {
        display: none;
        /* Hide submenu by default */

    }

    /* Show the submenu when the parent item is active */
    .header .navbar ul li.dropdown.active .dropdown-submenu {
        display: block;
        /* Show submenu when active */
    }

    /* Ensure links inside the dropdown take full width */
    .header .navbar ul li a {
        font-size: 1.4rem;
        /* Adjust font size for mobile */
        padding: 1rem 2rem;
        /* Add padding to make links more clickable */
        width: 100%;
        /* Make the links full-width */
        text-align: left;
        /* Align text to the left */
    }

    /* Close the dropdown when clicking outside (optional, needs JavaScript to handle) */
    .header.active .navbar ul li.dropdown.active .dropdown-menu {
        display: none;
        /* Hide the dropdown menu when it's clicked again */
    }


}

.home-back {
    min-height: 20vh;
    /* width: 100vw; */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    margin-top: 1px;
    margin-left: 20px;
    margin-right: 20px;

    position: relative;
    /* overflow: hidden !important; */
}

.home-back h1 {
    color: #120566;
    font-size: 5.5rem;
}

.home-back h2 {
    color: #120566;
    font-size: 3rem;
}

.home .wave {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}


@keyframes waves {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 100rem;
    }
}

.logo-i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    /* background: #252839; */

}

.logo-i h2 {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6vw;
    color: #ffffff;
    font-size: bold;
    -webkit-text-stroke: 0.2vw #ffffff;
    /* text-transform: uppercase; */
}

.logo-i h2::before {
    content: attr(data-text);
    position: absolute;
    font-size: bold;
    top: 0;
    Left: 0;
    width: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    color: #ca7534;
    ;
    -webkit-text-stroke: 0vw #ee7f2a;
    border-right: 2px solid #e67335;
    overflow: hidden;
    animation: animate 6s linear infinite;
}

@keyframes animate {

    0%,
    10%,
    100% {
        width: 0;
    }

    70%,
    90% {
        width: 100%;
    }

}

.about {
    min-height: 55vh;
    width: 100vw;
    top: -3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
}

.about .row {
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

.about .row .content {
    text-align: center;
}

.about .row .content h3 {
    font-size: 3rem;
    color: black;
}

.about .row .content p {
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.bot-container {
    padding: 177.78% 0 0 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Set the max width for the iframe */
    margin: 0 auto;
}

.bot-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.counters {
    background-image: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    padding: 40px 20px;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.counters i {
    color: #fff;
    margin-bottom: 5px;
}

.counters .counter {
    font-size: 45px;
    margin: 10px 0;
}

@media (max-width: 700px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container>div:nth-of-type(1),
    .counters .container>div:nth-of-type(2) {
        border-bottom: 1px lightskyblue solid;
        padding-bottom: 20px;
    }
}


.communicate {
    text-align: center;
    align-items: center;
    /* background-image: url(../images/blank.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 12vh;
    padding: 40px 20px;
}

.communicate h3 {
    margin-top: 3rem;
    font-size: 3rem;
}

.communicate1 {
    text-align: center;
    align-items: center;
    /* background-image: url(../images/blank.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 10vh;
    padding: 20px;
    border-radius: 4px;
}

.communicate1 h3 {
    /* margin-top: 2rem; */
    font-size: 3rem;
}

.communicate p {
    font-size: 2rem;
}

.testimonials .section-header h2 {
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #002e5f;
    position: relative;
    letter-spacing: .2rem;
}



.testimonials .section-header h2::before,
.testimonials .section-header h2::after {
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #002e5f;
    border-left: .4rem solid #002e5f;
}


.testimonials .section-header h2::before {
    top: 5.8rem;
    left: -2rem;
}

.testimonials .section-header h2::after {
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}



.clients {
    position: relative;
    padding: 90px 0;
    text-align: center;
    margin-top: -10rem;
    margin-bottom: -10rem;
}

.clients .section-header p {
    padding-bottom: 10px;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}

.team {
    min-width: 100vw;
    min-height: 95vh;
    text-align: center;
    background-color: #222;
}

.team .heading {
    color: #00bfff;
}

.team .heading::before,
.team .heading::after {
    border-color: #00bfff;
}

.team .row {
    display: inline-block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.team .row .card {
    height: 35rem;
    width: 25rem;
    background-color: #fff;
    text-align: center;
    margin: 5rem 5rem;
    position: relative;
    overflow: hidden;
    -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
    transition: 0.5s;
}

.team .row .card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}


.team .row .card .image {
    margin: 1rem 0;
    padding-top: 4rem;
}

.team .row .card .image img {
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    border: .5rem solid #fff;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
    object-fit: cover;
}

.team .row .card .info h3 {
    font-size: 2rem;
    color: #333;
}

.team .row .card .info span {
    font-size: 1.8rem;
    color: #00bfff;
}

.team .row .card .info .icons a {
    margin-top: 4rem;
    padding-top: 0 1rem;
    font-size: 2rem;
    color: #333;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.team .row .card .info .icons .fa-facebook-f:hover,
.footer .icons .fa-facebook-f:hover {
    color: #4267B2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-twitter:hover,
.footer .icons .fa-twitter:hover {
    color: #1DA1F2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-instagram:hover,
.footer .icons .fa-instagram:hover {
    color: #C13584;
    text-decoration: none;
}

.team .row .card .info .icons .fa-linkedin:hover,
.footer .icons .fa-linkedin:hover {
    color: #2867B2;
    text-decoration: none;
}

.team .row .card::before,
.team .row .card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 13.5rem;
    width: 13.5rem;
    z-index: -1;
}

.team .row .card::before {
    background: #00bfff;
    top: -3rem;
    right: -4rem;
}

.team .row .card::after {
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}

.contact {
    text-align: center;
    align-items: center;
}

.contact .heading {
    margin-bottom: 5rem;
}

.contact-in {
    width: 80%;
    height: auto;
    margin: auto auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    text-align: left;
}

.contact-form-txt {
    margin-left: 2rem;
    width: 95%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-email {
    margin-left: 2rem;
    width: 95%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-txt::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-email::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-txtarea {
    margin-left: 2rem;
    width: 95%;
    height: 130px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-form-txtarea::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-btn {
    margin-left: 2rem;
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
}

.contact-form-btn:hover {
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #002e5f;
}

.contact-form-phone {
    margin-left: 2rem;
    width: 95%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.footer-contact {
    width: 200px; /* increase or decrease as needed */
}
.contact-form-phone::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.footer {
    position: relative;
    padding: 0 0 30px 0;
    background: #333;
}

.footer .footer-top {
    background: #002e5f;
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #ffffff;
    color: #00bfff;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: #00bfff;
    color: #ffffff;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 50px;
    border-bottom: 2px solid #ffffff;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ffffff;
    font-size: 16px;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #ffffff;
    padding: 7px 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 14px;
    color: #ffffff;
}

.footer .footer-top .footer-links ul a:hover {
    color: #00bfff;
}

.footer .footer-top .footer-contact p {
    color: #ffffff;
    line-height: 26px;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 6px 8px;
    width: 60%;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 6px 0;
    text-align: center;
    color: black;
    border: 1px solid #ffffff;
    background: #ffffff;
    transition: 0.3s;
    cursor: pointer;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: #ffffff;
    background: #00bfff;
    border: 1px solid #00bfff;
    letter-spacing: .2rem;
}

.footer .footer-top .footer-newsletter p {
    color: #ffffff;
    font-size: 14px;
}

.footer .credit,
.footer .copyright {
    text-align: center;
    padding-top: 30px;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }

    .footer .copyright {
        text-align: left;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background-color: #00bfff;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top i:hover {
    color: black;
}

.faq {
    min-height: 50vh;
    width: 100vw;
    text-align: center;
    padding: 0 2rem;
    background: url(../images/faq.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.faq .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.faq .row .accordion-container {
    width: 50%;
    text-align: left;
}

.faq .row .accordion {
    margin-left: 1rem;
    margin-right: 2rem;
}

.faq .row .accordion-container .accordion .accordion-header {
    background-color: #00bfff;
    margin: 1rem 0;
    box-shadow: .1rem .1rem .3rem rgba(0, 0, 0, .3);
    cursor: pointer;
    margin-left: 1rem;
    margin-right: 2rem;
}

.faq .row .accordion-container .accordion .accordion-header span {
    display: inline-block;
    text-align: center;
    height: 4rem;
    width: 5rem;
    line-height: 4rem;
    font-size: 2rem;
    background: #333;
    color: #fff;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3 {
    display: inline;
    color: #333;
    font-weight: 400;
    padding-left: .5rem;
    font-size: 1.5rem;
}

.faq .row .accordion-container .accordion .accordion-body {
    padding: 1rem;
    color: #444;
    box-shadow: .1rem .1rem .3rem rgba(0, 0, 0, .3);
    background-color: #fff;
    font-size: 1.3rem;
    display: none;
    margin-left: 1rem;
    margin-right: 2rem;
}


@media (max-width: 1200px) {
    .faq {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .header .logo {
        text-align: right;
    }

    .header .logo img {
        display: inline-block;
    }
}

@media (max-width: 1000px) {
    html {
        font-size: 50%;
    }

    .header {
        margin-bottom: auto;
    }

    /* .header .logo img {
        width: 100%;
        height: 3rem;
        top: 0;
        left: 0;
        background-size: cover;
    } */

    .header .fa-bars {
        display: block;
        color: rgb(255, 255, 255);
        margin-right: 1rem;
    }

    .header .fa-bars:hover {
        color: #00bfff;
    }

    .header .navbar {
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(255, 255, 255);
        z-index: 1000;
        border-top: .1rem solid rgba(0, 0, 0, .3);
    }

    .header .navbar ul {
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li {
        margin: 1.6rem 0;
    }

    .header .navbar ul li a {
        color: rgb(0, 20, 105);
        font-size: 2.4rem;
    }

    .header .navbar ul li a:hover {
        color: rgb(247, 91, 19);
        font-size: 2.4rem;
    }

    .header .fa-times {
        transform: rotate(90deg);
    }

    .header .nav-toggle {
        top: 5.8rem;
    }






    .about {
        min-height: 38vh;
        width: 100vw;
        margin-top: -3rem;
        margin-bottom: -2rem;
        top: -2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 6rem;
    }

    .about .row {
        line-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 4rem;
    }

    .about .row .content {
        text-align: center;
    }

    .about .row .content h3 {
        font-size: 2rem;
        color: var(--color);
    }

    .about .row .content p {
        font-size: 1.3rem;
        color: #333;
        padding: 1rem 0;
    }

    .clients {
        position: relative;
        padding: 90px 0;
        text-align: center;
        margin-top: -15rem;
        margin-bottom: -8rem;
    }

    .clients .section-header p {
        padding-bottom: 10px;
        margin-top: 2.5rem;
        text-align: center;
        font-size: 2rem;
    }

    .team {
        min-height: auto;
    }

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

    .contact {
        text-align: center;
        align-items: center;
    }

    .contact .heading {
        margin-bottom: 3rem;
        margin-top: -2rem;
    }

    .contact-in {
        width: 80%;
        height: auto;
        margin: auto auto 5rem auto;
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 0px 10px 0px #666;
    }

    .contact-map {
        width: 100%;
        height: auto;
        flex: 50%;
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
    }

    .contact-form {
        width: 100%;
        height: auto;
        flex: 50%;
        text-align: left;
    }

    .contact-form-txt {
        width: 90%;
        height: 20px;
        color: #000;
        border: 1px solid #bcbcbc;
        border-radius: 50px;
        outline: none;
        margin-bottom: 20px;
        padding: 15px;
    }

    .contact-form-email {
        margin-left: 2rem;
        width: 90%;
        height: 20px;
        color: #000;
        border: 1px solid #bcbcbc;
        border-radius: 50px;
        outline: none;
        margin-bottom: 20px;
        padding: 15px;
    }

    .contact-form-txt::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }

    .contact-form-email::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }

    .contact-form-txtarea {
        margin-left: 2rem;
        width: 90%;
        height: 110px;
        color: #000;
        border: 1px solid #bcbcbc;
        border-radius: 10px;
        outline: none;
        margin-bottom: 20px;
        padding: 15px;
        font-family: 'Poppins', sans-serif;
    }

    .contact-form-txtarea::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }

    .contact-form-btn {
        margin-left: 2rem;
        outline: none;
        border: none;
        border-radius: 5rem;
        background: white;
        border-style: groove;
        border-color: #002e5f;
        font-size: 1.5rem;
        cursor: pointer;
        height: 3.5rem;
        width: 12rem;
        box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
    }

    .contact-form-btn:hover {
        letter-spacing: .1rem;
        opacity: .9;
        color: white;
        background: #002e5f;
    }

    .contact-form-phone {
        margin-left: 2rem;
        width: 90%;
        height: 20px;
        color: #000;
        border: 1px solid #bcbcbc;
        border-radius: 50px;
        outline: none;
        margin-bottom: 20px;
        padding: 15px;
    }

    .contact-form-phone::placeholder {
        color: #aaa;
        font-size: 1.5rem;
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

    .faq {
        padding: 0;
        min-height: 60vh;
    }

    .faq .row {
        padding: 0 1.5rem;
        flex-flow: column;
    }

    .faq .row .accordion-container {
        width: 100%;
    }
}

/* .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    font-size: 24px;
    font-weight: bold;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */


.product-card1-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80%;
    margin: 20px auto;
}

.product-card1-container {
    display: flex;
    transition: transform 0.3s ease;
}

.product-card1 {
    width: 300px;
    margin: 0 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card1 img {
    width: 100px;
    margin-bottom: 20px;
}

.product-card1 h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-card1 p {
    font-size: 14px;
    color: #555;
}

.product-card1 .read-more {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}

.product-card1 .read-more:hover {
    background-color: #e89a00;
}

button {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: #555;
    cursor: pointer;
    z-index: 10;
}

.left-btn {
    position: absolute;
    left: 0;
}

.right-btn {
    position: absolute;
    right: 0;
}

/* Container for the marquee */
.marquee-container {
    width: 100%;
    /* Ensure it spans the entire width */
    overflow: hidden;
    /* Hide overflow to make the animation look like it's scrolling */
    position: relative;
    background-color: #000000;
    /* Optional background color */
}

/* Marquee content style */
.marquee {
    display: flex;
    /* Align the text horizontally */
    animation: marquee 15s linear infinite;
    /* Create the animation */
}

/* Individual text style */
#sliding-text {
    display: flex;
    white-space: nowrap;
    /* Prevent text from wrapping to the next line */
    padding-right: 100%;
    /* Add some padding to avoid initial gap */
    font-size: 1.8rem;
}

/* Make the link inside marquee clickable */
#link-text {
    color: #ffffff;
    /* Change color of the text if needed */
    text-decoration: none;
    cursor: pointer;
}

#link-text:hover {
    color: #005fa3;
    /* Optional hover effect */
}

/* Define the marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(100%);
        /* Start position: completely outside to the right */
    }

    100% {
        transform: translateX(-100%);
        /* End position: completely outside to the left */
    }
}

/*  */

.home-scroll-cardh-container {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #2e2b38;
    padding: 20px;
    text-align: center;
}

.home-scroll-cardh-awards-header h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.home-scroll-cardh-card-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.home-scroll-cardh-card-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.home-scroll-cardh-card {
    flex: 0 0 300px;
    /* Each card occupies 300px */
    margin: 0 10px;
    padding: 20px;
    background: #3a3747;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.home-scroll-cardh-card img {
    max-width: 50px;
    margin-bottom: 15px;
}

.home-scroll-cardh-card p {
    font-size: 14px;
    line-height: 1.5;
}

.home-scroll-cardh-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.home-scroll-cardh-left-btn {
    left: 10px;
}

.home-scroll-cardh-right-btn {
    right: 10px;
}

.home-scroll-cardh-scroll-btn:hover {
    background: #ff8f80;
}

@media (max-width: 768px) {

    body {
        margin: 0;
        padding: 0;
    }

    .home-scroll-cardh-card {
        flex: 0 0 240px;
    }


    .home-scroll-cardh-scroll-btn {
        padding: 8px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0;
        padding: 0;
    }

    .home-scroll-cardh-card {
        flex: 0 0 200px;
    }



    .home-scroll-cardh-scroll-btn {
        padding: 6px;
        font-size: 14px;
    }
}
.yvideos-container {
    width: 100vw;
    height: 100vh;
    margin-top: 70px;
    padding-top: 0px; 
    box-sizing: border-box;
    overflow: hidden;
}

.yvideos {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

.yvideos iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
    object-fit: cover; /* Ensures no black border */
}

/* Common mobile view (≤ 767px) */
@media only screen and (max-width: 767px) {
    .yvideos-container {
        height: auto;
        margin-top: 70px;
        padding-top: 56.25%; 
        position: relative;
    }

    .yvideos {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: black;
    }

    .yvideos iframe {
        width: 100%;
        height: 100%;
    }
}
@media only screen and (max-width: 834px) and (min-width: 768px) {

     .yvideos-container {
        height: auto;
        margin-top: 70px;
        padding-top: 56.25%; 
        position: relative;
    }

    .yvideos {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: black;
    }

    .yvideos iframe {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 1100px) and (min-width: 834px) {

     .yvideos-container {
        height: auto;
        margin-top: 70px;
        padding-top: 56.25%; 
        position: relative;
    }

    .yvideos {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: black;
    }

    .yvideos iframe {
        width: 100%;
        height: 100%;
    }
}
.yvideos-container1 {
    position: relative;
    width: 100%;
    height: 40vh;
    /* Full height of the viewport */
    overflow: hidden;
    /* Ensures the video does not overflow */
}

.yvideos1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive video style */
.yvideos-video1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the whole container without distortion */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .yvideos-video1 {
        width: 100%;
        height: auto;
        /* Adjust height on smaller screens to maintain aspect ratio */
    }

}

/* Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .yvideos-video1 {
        width: 100%;
        height: auto;
        /* Ensure video height adjusts on very small screens */

    }


}



/* item Cards */

.pt-5 .container .row .section-head p {
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.section-head {
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
}

.section-head p {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: -2rem;
    border: 5px solid rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: #c8d8e4;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item h6 {
    font-size: 2rem;
}

.item:hover h6,
.item:hover p {
    color: #2b6777;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: yellow;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.2);
    color: #52ab98;
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #52ab98;
}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #52ab98;
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #52ab98;
}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #52ab98;
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #52ab98;
}

.item p {
    font-size: 15px;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
}

.counters {
    background-image: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    padding: 40px 20px;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.counters i {
    color: #fff;
    margin-bottom: 5px;
}

.counters .counter {
    font-size: 45px;
    margin: 10px 0;
}

@media (max-width: 700px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container>div:nth-of-type(1),
    .counters .container>div:nth-of-type(2) {
        border-bottom: 1px lightskyblue solid;
        padding-bottom: 20px;
    }
}

.section-head-1 {
    margin-bottom: 60px;
    background-size: 200%;
    background-position: left;

}

.section-head-1 p {
    color: #333;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7 ease 0s;

}

.item:hover {
    background-image: linear-gradient(to bottom right, #66ffcc 0%, #ffccff 100%);
    background-position: right;
    transition: background-position 3s;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.7s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
    color: #2b6777;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: yellow;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.2);
    color: #52ab98;
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #52ab98;

}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #52ab98;
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #52ab98;

}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #52ab98;
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #52ab98;
}

.item p {
    font-size: 15px;
    font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #2f2f2f;
}

.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #fff;
    background-color: #0e4987;
    /* Bootstrap primary blue */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #0057b341;
    /* Darker blue for hover */
}

.lets-talk-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The actual button style */
.lets-talk {
    background-color: #d35400; /* Deep orange */
    color: #fff;
    padding: 5px 5px;  /* Increased vertical and horizontal padding */
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 8px;  /* Slightly more rounded */
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

/* Optional hover effect */
.lets-talk:hover {
     background-color: #e85e00;    /* Slightly brighter orange */
    color: #fff;                  /* Maintain white text */
    text-decoration: none;       /* Ensure no underline */
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.7);
    transform: scale(1.08);
}
#searchIcon {
  display: none; /* Hides the icon */
}

.contact-icon-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    color:#00bfff;
    border-radius: 2px;
    text-align: center;
    line-height: 20px;
    margin-left: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-icon-btn i {
    font-size: 18px;
    vertical-align: middle;
}

.contact-icon-btn:hover {
    background-color: #00bfff;
    color: #fff;
}


@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  }
}

.lets-talk {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

/* Button Section for forms  */

.demo-button-xgs-container {
  display: flex;
  justify-content: center;
  margin-bottom: -60px;
}

.demo-button-xgs {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color:  #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-xgs:hover {
  background-color: white;
  /* Orange background on hover */
  color: #d35400;
  /* White text on hover */
}



/* ✅ Fixing the typo and targeting all mobile widths up to 767px */
@media (max-width: 767px) {
  .demo-button-xgs-container {
    display: flex;
    justify-content: center;
    /* margin: 10px 0 20px 0; */
    padding-top: 50px;
    margin-bottom: 5px;
  }

  .demo-button-xgs {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* Optional: Ultra-small view for iPhone SE (max 375px) */
@media (max-width: 375px) {
  .demo-button-xgs {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

/* @keyframes intenseShakeAndGlow {
  0%   { transform: translateX(0);   box-shadow: 0 0 0 transparent; }
  10%  { transform: translateX(-6px); box-shadow: 0 0 10px rgba(211, 84, 0, 0.6); }
  40%  { transform: translateX(6px);  box-shadow: 0 0 15px rgba(211, 84, 0, 0.8); }
  60%  { transform: translateX(-6px); box-shadow: 0 0 12px rgba(211, 84, 0, 0.7); }
  80%  { transform: translateX(6px);  box-shadow: 0 0 18px rgba(211, 84, 0, 0.9); }
 
  100% { transform: translateX(0);   box-shadow: 0 0 0 transparent; }
} */

.demo-button-xgs.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20; /* 0.2s * 20 = 4 seconds */
}
.demo-button-neplan-container {
  display: flex;
  justify-content: center;
  margin-bottom: -40px;
  margin-right: 10px;
  margin-top: 10px;
}

.demo-button-neplan {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-neplan:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-neplan-container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 5px;
  }

  .demo-button-neplan {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-neplan {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}



.demo-button-neplan.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}

.demo-button-automation-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -40px;
    margin-right: 10px;
    margin-top: 10px;
   
  }
  
  .demo-button-automation {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-automation:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-automation-container {
      display: flex;
      justify-content: center;
      padding-top: 50px;
      margin-bottom: 5px;
    }
  
    .demo-button-automation {
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-automation {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  
  .demo-button-automation.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
.demo-button-hvismp-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -40px;
    margin-right: 10px;
    margin-top: 10px;
  }
  
  .demo-button-hvismp {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-hvismp:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-hvismp-container {
      display: flex;
      justify-content: center;
      padding-top: 50px;
      margin-bottom: 5px;
    }
  
    .demo-button-hvismp {
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-hvismp {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  
  
  .demo-button-hvismp.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
.demo-button-powerbi-container {
  display: flex;
  justify-content: flex-end;

  margin-right: 50px;
  margin-top: -50px;
}

.demo-button-powerbi {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-powerbi:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-powerbi-container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 5px;
  }

  .demo-button-powerbi {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-powerbi {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-powerbi.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}


.demo-button-ems-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-top: -50px;
}

.demo-button-ems {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-ems:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-ems-container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 5px;
  }

  .demo-button-ems {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-ems {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-ems.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}
.demo-button-iot-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -70px;
}

.demo-button-iot {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-iot:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-iot-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
  }

  .demo-button-iot {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-iot {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-iot.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}
.demo-button-iot-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -70px;
}

.demo-button-iot {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-iot:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-iot-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
  }

  .demo-button-iot {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-iot {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-iot.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}

.demo-button-data-center-container1 {
    display: flex;
    justify-content: center;
    /* margin-right: 50px; */
    margin-top: -130px;
    /* margin-left: -600px; */
    margin-bottom: 100px;
  }
.demo-button-data-center-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -70px;
}

.demo-button-data-center {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-data-center:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-data-center-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
  }
  .demo-button-data-center-container1 {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .demo-button-data-center {
    margin-left:35px ;
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-data-center {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-data-center.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}


.demo-button-fiber-cable-container1 {
    display: flex;
    justify-content: center;
    /* margin-right: 50px; */
    margin-top: -130px;
    /* margin-left: -600px; */
    margin-bottom: 100px;
  }
.demo-button-fiber-cable-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -70px;
}

.demo-button-fiber-cable {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-fiber-cable:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-fiber-cable-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
  }
  .demo-button-fiber-cable-container1 {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .demo-button-fiber-cable {
    margin-left:35px ;
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-fiber-cable {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-fiber-cable.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}

.demo-button-fiber-fusion-container1 {
    display: flex;
    justify-content: start;
    /* margin-right: 50px; */
    margin-top: -200px;

    margin-left: 20px;
    margin-right: 20px;
    /* margin-left: -600px; */
    margin-bottom: 170px;
  }
.demo-button-fiber-fusion-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -80px;
  margin-top: 50px;
}
.demo-button-fiber-fusion-container3 {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -50px;
  margin-top: 20px;
}

.demo-button-fiber-fusion {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-fiber-fusion:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-fiber-fusion-container {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 5px;
  }
  .demo-button-fiber-fusion-container1 {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 5px;
    margin-top: 10px;
  }
  .demo-button-fiber-fusion-container3 {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .demo-button-fiber-fusion {
    margin-left:35px ;
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-fiber-fusion {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-fiber-fusion.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}



.demo-button-asp-container1 {
    display: flex;
    justify-content: start;
    /* margin-right: 50px; */
    margin-top: -130px;
    /* margin-left: -600px; */
    margin-left: 20px;
    margin-bottom: 100px;
  }
.demo-button-asp-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-bottom: -70px;
}

.demo-button-asp {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-asp:hover {
  background-color: white;
  color: #d35400;
}

/* ✅ Mobile view (max-width: 767px) */
@media (max-width: 767px) {
  .demo-button-asp-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
  }
  .demo-button-asp-container1 {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .demo-button-asp {
    margin-left:35px ;
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

/* ✅ Ultra-small devices (e.g., iPhone SE) */
@media (max-width: 375px) {
  .demo-button-asp {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-asp.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}



.demo-button-gse-container {
  display: flex;
  justify-content: center;
  margin-bottom: -60px;
}

.demo-button-gse {
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color:  #d35400;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.demo-button-gse:hover {
  background-color: white;
  color: #d35400;
}

@media (max-width: 767px) {
  .demo-button-gse-container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 5px;
  }

  .demo-button-gse {
    padding: 8px 18px;
    border: 1px solid #d35400;
    color: white;
    background-color: #d35400;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

@media (max-width: 375px) {
  .demo-button-gse {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

.demo-button-gse.highlight {
  animation: intenseShakeAndGlow 0.89s ease-in-out 20;
}

.demo-button-power-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  
  .demo-button-power {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-power:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-power-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-power {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-power {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-power.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
  
.demo-button-poles-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  
  .demo-button-poles {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-poles:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-poles-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-poles {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-poles {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-poles.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }


  .demo-button-power-cable-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -40px;
  }
  
  .demo-button-power-cable {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-power-cable:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-power-cable-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-power-cable {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-power-cable {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  /* .demo-button-power-cable.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  } */

  
  
  .demo-button-termination-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  
  .demo-button-termination {
    padding: 10px 25px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-termination:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-termination-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-termination {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-termination {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-termination.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
    
  .demo-button-energy-audit-container {
    /* display: flex; */
    /* justify-content: right; */
    margin-right: 50px;
   
  }
  
  .demo-button-energy-audit {
    padding: 10px 25px;
    height: 50px;
    margin-top: 20px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-energy-audit:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-energy-audit-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-energy-audit {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-energy-audit {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-energy-audit.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
  

  
  .demo-button-projectmgmt-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  .demo-button-projectmgmt-container1 {
    display: flex;
    justify-content: center;
    margin-right: 50px;
    margin-top: -70px;
  }
  
  .demo-button-projectmgmt {
    padding: 10px 25px;
    height: 50px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-projectmgmt:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-projectmgmt-container1 {
        display: flex;
        justify-content: center;
        margin-right: 50px;
        margin-top: 10px;
      }
    .demo-button-projectmgmt-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-projectmgmt {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-projectmgmt {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-projectmgmt.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }

  
  .demo-button-maintenance-design-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  
  .demo-button-maintenance-design {
    padding: 10px 25px;
    height: 50px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-maintenance-design:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-maintenance-design-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-maintenance-design {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-maintenance-design {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-maintenance-design.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }

  .demo-button-bess-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: 10px;
    margin-top: -100px;
  }
  
  .demo-button-bess {
    padding: 10px 25px;

    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-bess:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-bess-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
      margin-top: 10px;
    }
  
    .demo-button-bess {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-bess {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-bess.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }

  
  .demo-button-hv-panel-design-container {
    display: flex;
  justify-content: flex-start;
  margin-left: 0; 
  margin-top: 200px;
  margin-left: -600px;
  }
  
  .demo-button-hv-panel-design {
    padding: 10px 25px;

    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-hv-panel-design:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-hv-panel-design-container {
        display: flex;
        justify-content: flex-start;
        /* padding-top: 20px;
        margin-bottom: 5px; */
        margin-top: 130px;
        margin-left: -400px;
        margin-right: 30px;
    }
  
    .demo-button-hv-panel-design {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-hv-panel-design {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-hv-panel-design.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }

  
  .demo-button-telecom-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: 10px;
    margin-top: -70px;
  }
  
  .demo-button-telecom {
    padding: 10px 25px;

    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-telecom:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-telecom-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
      margin-top: 10px;
    }
  
    .demo-button-telecom {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-telecom {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-telecom.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }

  
  
  
  .demo-button-earthing-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    margin-bottom: -70px;
  }
  
  .demo-button-earthing {
    padding: 10px 25px;

    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: #d35400;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .demo-button-earthing:hover {
    background-color: white;
    color: #d35400;
  }
  
  /* ✅ Mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .demo-button-earthing-container {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      margin-bottom: 5px;
    }
  
    .demo-button-earthing {
      margin-left:35px ;
      padding: 8px 18px;
      border: 1px solid #d35400;
      color: white;
      background-color: #d35400;
      font-size: 1.4rem;
      border-radius: 4px;
    }
  }
  
  /* ✅ Ultra-small devices (e.g., iPhone SE) */
  @media (max-width: 375px) {
    .demo-button-earthing {
      font-size: 1.2rem;
      padding: 6px 14px;
    }
  }
  
  .demo-button-earthing.highlight {
    animation: intenseShakeAndGlow 0.89s ease-in-out 20;
  }
  
  
/* Container for social icons */
.social-links1 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
  }
  
  /* Style for each icon image */
  .social-links1 a img {
    width: 40px;
    height: 40px;
    display: inline-block;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes black icons appear white */
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  /* Optional: Scale up slightly on hover */
  .social-links1 a img:hover {
    transform: scale(1.2);
  }
  
  /* Optional: Responsive alignment */
  @media screen and (max-width: 768px) {
    .social-links1 {
      justify-content: left;
      flex-wrap: wrap;
      gap: 10px;
    }
  }
  
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
  visibility: hidden;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}



/* Container for the logos */
.clients {
    width: 100%;
    overflow: hidden; /* Hide the logos that go out of view */
    position: relative;
}

/* Logo container with animation */
.logo1 {
    display: flex;
    animation: scroll-left 20s linear infinite; /* Adjust time for speed */
}

/* Each individual logo */
.logo1 img {
    margin-right: 20px; /* Adjust the space between the logos */
    height: auto; /* Maintain aspect ratio */
}

/* Animation to move the logos */
@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Start from the right */
    }
    100% {
        transform: translateX(-100%); /* Move to the left */
    }
}

.flyer .button {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 8px 16px;
  margin: 4px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.flyer .button:hover {
  background-color: #0056b3;
}

.map-container-map { 
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    /* background-color: #f8f9fa; */
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  }
  
  .map-heading-map {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .client-map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ccc;
    z-index: 1;
    position: relative;
  }
  
  .backward-marker-map {
    z-index: 0 !important;
    position: relative !important;
  }
  
  @media (max-width: 768px) {
    .client-map {
      height: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .client-map {
      height: 300px;
    }
  }
  .map-container-map {
      padding: 40px 20px;
      /* background-color: #f9f9f9; */
  }
  
  .map-heading-map {
      text-align: center;
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: bold;
  }
  
  .client-map {
      border-radius: 12px;
      /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  }
  