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


.nav-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #005B90;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.nav-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}


.nav-button .main-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 24px;
  text-decoration: none;
}

.nav-button .main-link img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.drawer {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 200px;
}

.nav-button:hover .drawer {
  display: flex;
  animation: slideIn 0.3s ease-in-out;
}

.drawer a {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.drawer a:hover {
  background-color: #F5C107;
  color: #FFFFFF;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-button a {
    color: #333;
    text-decoration: none;
    padding: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-button a:hover {
    text-decoration: underline;
    color: #ffcc00; /* Hover text color */
}

.main-link {
    padding: 5px 10px;
    border-radius: 50px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.popup-form {
    display: none;
    position: fixed;
    top: 33px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 15px;  /* Reduced padding */
    box-sizing: border-box;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: auto; /* Ensures scrollability */
    max-height: 90vh; /* Ensures the form does not extend beyond the view height */
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

form label {
  display: block;
  font-size: 14px;
  color: #1A1A1A;
  margin-bottom: 8px;
  font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form input[type="file"],
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  color: #1A1A1A;
  background-color: #F7F9FB;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border-color: #005B90;
  outline: none;
}

form .captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

form .captcha-container img {
  border-radius: 8px;
}

form .captcha-container .reload-captcha-button {
  cursor: pointer;
  font-size: 20px;
  color: #005B90;
  transition: color 0.3s ease;
}

form .captcha-container .reload-captcha-button:hover {
  color: #F5C107;
}

form .form-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

form .submit-application,
form .close-button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

form .submit-application {
  background-color: #005B90;
  color: #FFFFFF;
}

form .submit-application:hover {
  background-color: #003D66;
  transform: translateY(-2px);
}

form .close-button {
  background-color: #D1D5DB;
  color: #1A1A1A;
}

form .close-button:hover {
  background-color: #B0B5BB;
  transform: translateY(-2px);
}

















    .btn-primary {
        background: #00b9ffad !important;
        font-size: 12px !important;
        margin-left: 0 !important;
    }

	
	.footer-tearea {
	  width: 100%;
	  border-radius: 8px;
	  padding: 12px;
	  background-color: transparent;
	  color: #FFFFFF;
	  font-size: 14px;
	  margin-bottom: 15px;
	}

	.footer-button {
	  width: 100%;
	  background-color: #F5C107;
	  color: #1A1A1A;
	  border: none;
	  border-radius: 8px;
	  /*padding: 12px;*/
	  font-size: 14px;
	  cursor: pointer;
	  transition: background-color 0.3s ease, transform 0.3s ease;
	}

	.footer-button:hover {
	  background-color: #FFFFFF;
	  color: #005B90;
	  transform: translateY(-2px);
	}

    @media only screen and (max-width: 992px) {
        .col-lg-3 {
			flex: 0 0 50%;
			max-width: 50%;
			padding: 10px;
			margin-bottom: 15px;
		}
		.footer-button,
		.footer-tearea {
			width: 100%;
			max-width: 250px;
		}
    }
@media only screen and (max-width: 576px) {
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .col-lg-3 .form-control {
    width: 100%;
    margin-left: 0;
  }
  .popup-content {
    padding: 20px;
    max-width: 90%;
  }
  .nav-button {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .drawer {
    width: 180px;
  }
}
    @media only screen and (max-width: 576px) {
        .col-lg-3 {
            flex: 0 0 100% !important;
            max-width: 100% !important;
            margin-bottom: 5px !important; /* Reduce margin-bottom for smaller screens */
            text-align: center !important;
        }

        .col-lg-3 .form-control {
            width: 100% !important;
            margin-left: 0 !important;
        }
    }
	.custom-navbar {
    padding: 15px 25px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 1000;
	background-color: rgba(255,255,255,1) !important;
}

.headerlogo {
    max-width: 120px;
}

.navbar-nav .nav-link {

    font-size: 18px;
    padding: 12px 20px;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out, transform 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    transform: scale(1.05);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url(data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e) !important;
}

.invertimg {
    filter: invert(1);
}

.navbar-toggler {
    border: none;
    background: none;
    outline: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
		background-color: rgba(255,255,255,1) !important;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
    }
	
}
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 12px 15px;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
    }
}

.subdropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.subdropdown-custom {
	width: 600px;
	background-color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 10px;
}

.subdropdown-layout {
	display: flex;
}

.subdropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 1050;
    min-width: 250px;
}
@media (min-width: 992px) {
    .subdropdown-menu {
        left: auto;
        right: 0;
    }
}

@media (max-width: 991px) {
    .subdropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        display: none;
    }

    .subdropdown .subdropdown-menu {
        border-radius: 0;
        padding: 10px;
		box-shadow: 0 0 10px #ddd;
    }

    .subdropdown-sidebar {
        width: 100%;
        background: transparent;
        border: none;
    }

    .subdropdown-sidebar a {
        color: white;
        font-size: 16px;
    }

    .subdropdown-content-panel {
        width: 100%;
        padding: 10px;
    }

    .subdropdown-menu.show {
        display: block;
    }

	.subdropdown-sidebar a:hover, .subdropdown-sidebar a.active {
		background-color: #d9ebff;
		font-weight: bold;
		width: max-content;
	}
}

.nav-item.subdropdown:hover .subdropdown-menu,
.nav-item.subdropdown:focus-within .subdropdown-menu {
    display: block;
}

.subdropdown-menu:hover {
    display: block;
}

.subdropdown-sidebar {
	width: 35%;
	background-color: #f9f9f9;
	padding: 10px;
	border-right: 1px solid #ddd;
}

.subdropdown-sidebar a {
	display: block;
	padding: 12px;
	color: #003366;
	text-decoration: none;
	font-size: 16px;
	border-radius: 5px;
}

.subdropdown-sidebar a:hover,
.subdropdown-sidebar a.active {
	background-color: #d9ebff;
	font-weight: bold;
}

.subdropdown-content-panel {
	width: 65%;
	padding: 15px;
	background-color: white;
}

.subdropdown-content-panel h3 {
	color: #003366;
	font-size: 18px;
	margin-bottom: 8px;
}

.subdropdown-content-panel p {
	font-size: 14px;
	color: #666;
}

.sub-subdropdown {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.sub-subdropdown::-webkit-scrollbar {
    width: 8px;
}

.sub-subdropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sub-subdropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.sub-subdropdown a {
	display: block;
	padding: 8px;
	color: #0056b3;
	text-decoration: none;
	font-size: 14px;
}

.sub-subdropdown a:hover {
	text-decoration: underline;
}
.dropdown-item{
        margin-left:0 !important;
        width:100% !important;
        border: none !important;
    }
    ..dropdown-menu{
        display:block !important;
    }
    .dropone{
        margin-left:50px;
    }
    .droptwo{
        margin-left:50px;
    }
	.dropthree{
        margin-left:50px;
    }
    #transmitter-dropdown{
            height: 400px;
            overflow-y: scroll;
			overflow-x: hidden;

    }
	/* Font Awesome import (if not already included) */
.drawer-container {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.drawer-link {
  background-color: #9E0000;
  color: white;
  padding: 12px;
  width: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none; /* Remove underline */
}

.drawer-link i {
  font-size: 18px;
}

.drawer-link span {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-link:hover {
  width: 200px;
  background-color: #9E0000;
  text-decoration: none;
  color: white;
}

.drawer-link:hover span {
  opacity: 1;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #ffeeba;
  color: #005B90;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-marquee 15s linear infinite;
}

.marquee-container:hover .marquee-inner {
  animation-play-state: paused;
}

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

.blink {
  color: #B30000;
  animation: blink-text 1s infinite;
}

@keyframes blink-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.marquee-link {
  color: #B30000;
  font-weight: bold;
  text-decoration: none;
  margin-left: 10px;
}

.marquee-link:hover {
  text-decoration: none;
  cursor: pointer;
}
.sliderheight{
		height:	650px;
	}
	@media only screen and (max-width: 780px) {
		.sliderheight{
			height:	331px;
		}
		}
	.yellow-sq-wrapper{
		position: absolute;
		display: block;
		width: 57.00075px;
		height: 24%;
		top: 58%;
		left:0;
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
		transition:all .9s cubic-bezier(.075,.82,.165,1) .2s;z-index:1000;
	}
	.yellow-sq-wrapper{
		position:absolute;
		display:block;
		width:75.00075px;
		height: 24%;
		top: 58%;
		left:0;
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
		transition:all .9s cubic-bezier(.075,.82,.165,1) .2s;z-index:1000;
	}
	@media only screen and (min-width:425px){
		.yellow-sq-wrapper{
			width:105.00105px;
		}
	}
	@media only screen and (min-width:768px) and (max-width:1029px){
		.yellow-sq-wrapper{
			width:138.00138px;
		}
	}
	@media only screen and (min-width:1030px){
		.yellow-sq-wrapper{
			width:180.0018px;
		}
	}
	.yellow-sq{
		position:relative;
		display:block;
		width:100%;
		height:100%;
		-ms-transform:translate(-100%);
		transform:translate(-100%);
		background-color:#fe0;
	}
	.yellow-sq,.yellow-sq.anim{
		transition:transform 1.4s cubic-bezier(.075,.82,.165,1),box-shadow .7s ease-in-out 1.4s;
	}
	.yellow-sq.anim{
		-ms-transform:translate(-20%);
		transform:translate(-20%);
		box-shadow:0 0 3px 5px #fe0,0 0 6px 10px rgba(255,238,0,.75),0 0 10px 15px rgba(255,238,0,.5);
	}
	@media only screen and (min-width:425px){
		.yellow-sq.anim{
			box-shadow:0 0 5px 8px #fe0,0 0 10px 15px rgba(255,238,0,.75),0 0 15px 30px rgba(255,238,0,.5);
		}
	}
	@media only screen and (min-width:425px){
		.yellow-sq-wrapper{
			width:105.00105px;
		}
	}
	@media only screen and (min-width:768px) and (max-width:1029px){
		.yellow-sq-wrapper{
			width:138.00138px;
		}
	}
	@media only screen and (min-width:1030px){
		.yellow-sq-wrapper{
			width:180.0018px;
			margin-top: -17px;
			height: 159px;
		}
	}
	.carousel-item-next, .carousel-item-prev, .carousel-item.active{
		margin-top: 81px !important;
	}
	.h-85{
		height: 85% !important;
	}
	.carousel-item{
		transition: transform 5ms ease-in-out,-webkit-transform 5ms ease-in-out;
	}
	.p-3-mobile{
		margin-top: 0;
	}
	@media only screen and (min-width:130px){
		.p-3-mobile{
			margin-top: 21px;
		}
	}
	.product-container {
		perspective: 1000px;
	}

	.product-card {
		width: 100%;
		height: 200px;
		position: relative;
		transform-style: preserve-3d;
		transition: transform 0.5s;
	}

	.product-card:hover {
		transform: rotateY(180deg);
	}

	.product-card .card-side {
		position: absolute;
		width: 100%;
		height: 100%;
		backface-visibility: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 15px;
		overflow: hidden;
	}

	.product-card .front {
		background-color: #3498db;
	}

	.product-card .back {
		background-color: #2ecc71;
		transform: rotateY(180deg);
	}

	.product-card img {
		width: 80%;
		height: auto;
		border-radius: 15px;
	}

	.product-title {
		color: #fff;
		font-size: 1.5rem;
		text-align: center;
		margin-top: 10px;
	}

	.service_box {
		padding: 20px;
		background-color: #f8f9fa;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
		transition: transform 0.3s ease-in-out;
	}

	.service_box:hover {
		transform: translateY(-10px);
	}

	.service_icon {
		width: 60px;
		height: auto;
		margin-bottom: 15px;
	}

	.service_title {
		color: #007bff;
		margin-bottom: 5px;
	}

	.service_description {
		font-size: 14px;
		color: #6c757d;
	}

	.custom-card {
		background: #f4f4f4; /* Light grey background */
		border-radius: 15px; /* Rounded corners */
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
		margin-bottom: 20px; /* Spacing between cards */
		overflow: hidden; /* Ensures content fits within the border-radius */
		transition: all 0.3s ease; /* Smooth transition for hover effect */
	}

	.custom-card:hover {
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
		transform: scale(1.05); /* Slightly enlarges the card */
	}

	.card-icon {
		background: #007bff; /* Primary color background for the icon */
		padding: 20px; /* Spacing around the icon */
	}

	.card-icon img {
		height: 60px; /* Icon size */
		width: auto;
	}

	.card-body {
		padding: 15px; /* Padding inside the card body */
		text-align: center; /* Center align the text */
	}

	h41 {
		font-size: 1.45rem;
	}
	h41 {
		margin-bottom: 0.5rem;
		font-weight: 500;
		line-height: 1.2;
	}
	h41 {
		margin-top: 0;
		margin-bottom: 0.5rem;
	}

	h41 {
		margin-top: 0;
		margin-bottom: 0.5rem;
		font-weight: 500;
		line-height: 1.2;
	}

	.card-body h41 {
		color: #333; /* Darker text for the title */
		margin-bottom: 5px; /* Spacing between title and text */
		font-weight: 700; /* Bold font weight for the title */
	}

	.card-body p {
		color: #666; /* Lighter text color for description */
		font-size: 14px; /* Font size for description */
	}
	/* Popup container */
        .popup-overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: #6c757d75;
			display: flex;
			justify-content: center;
			align-items: center;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
		}

        .popup-container {
            background: #fff;
            width: 90%;
            max-width: 500px;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease-in-out;
        }

        /* Show popup */
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
			z-index:1500;
        }

        .popup-overlay.active .popup-container {
            transform: scale(1);
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 20px;
            color: #333;
            cursor: pointer;
        }

        .close-btn:hover {
            color: red;
        }

        /* Image styling */
        .popup-img {
            width: 100%;
            max-height: auto;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Heading */
        .popup-title {
            font-size: 22px;
            font-weight: bold;
            margin: 15px 0;
            color: #333;
        }

        /* Message */
        .popup-message {
            font-size: 16px;
            color: #555;
            margin-bottom: 15px;
        }

        /* Call-to-action button */
        .popup-btn {
            background: #007bff;
            color: #fff;
            padding: 12px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .popup-btn:hover {
            background: #0056b3;
			color: #fff;
			text-decoration:none;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .popup-container {
                width: 90%;
                padding: 15px;
            }

            .popup-title {
                font-size: 20px;
            }

            .popup-message {
                font-size: 14px;
            }

            .popup-btn {
                font-size: 14px;
                padding: 10px 15px;
            }
        }
	
            .bg-custom{
                background:#222 !important;
                font-size:14px !important;
            }
            .dropdown-menu {
    background:rgba(0,0,0,0.5) !important;;
}
.dropdown-item:hover:not(.text-info_header){
                background:transparent !important;
                color:#00b9ffad !important;
            }
            .dropdown-item{
                display:flex;
                background:transparent !important;
                color:white !important;
            }
.invalid-input {
  border-color: #DC3545 !important;
}
.error-message {
  color: #DC3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}