@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --base-clr: #eff3ec;
  --line-clr: #42434a;
  --hover-clr: #c2d4bb;
  --text-clr: #062905;
  --accent-clr: #38a856;
  --secondary-text-clr: #76a06a;
   --secondary-backgrnd-clr: #fff;
   --item-grid-clr: #80eaa8;
   --new--back--clr:#94959c;
   --new--lightgry--clr:#424a43;
}
input::placeholder { 
font-size: 13px; 
font-weight:400;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

body {
	/*background-color: var(--base-clr) !important;*/
	color: #000;
   
}
.carousel-control-next-icon {
    filter: invert(1);
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: transparent !important;
  width: 1.5rem;  /* Default is 2rem */
  height: 1.5rem;
}
/* Bring the inner content forward so buttons can be clicked */
#rightImageCarousel .carousel-inner {
    position: relative;
    z-index: 2;
}

/* Stop the large invisible control blocks from blocking clicks */
#rightImageCarousel .carousel-control-prev,
#rightImageCarousel .carousel-control-next {
    z-index: 3;
    width: 5%; /* Shrinks the clickable area of the arrows so they don't cover text */
    pointer-events: none; 
}

/* Ensure the physical arrow icons can still be clicked to change slides */
#rightImageCarousel .carousel-control-prev-icon,
#rightImageCarousel .carousel-control-next-icon {
    pointer-events: auto;
}
/* Force the bottom dots to be dark gray and visible */
#rightImageCarousel .carousel-indicators [data-bs-target] {
    background-color: #212529 !important; /* Bootstrap dark color */
    opacity: 0.4;
    height: 3px; /* Makes them slightly thicker and easier to see */
    border-radius: 2px; /* Rounds the edges */
}

/* Make the active dot fully opaque and highly visible */
#rightImageCarousel .carousel-indicators .active {
    opacity: 1 !important;
    background-color: #0d6efd !important; /* Optional: Uses Bootstrap Blue for the active tab */
}

/* Ensure the indicators container isn't buried behind the card elements */
#rightImageCarousel .carousel-indicators {
    z-index: 10;
    bottom: -10px; /* Optional: Pushes the dots slightly lower so they don't overlap slide text */
}

.container{
	height: 500px; /* Modify this value to your preferred height */
	min-height: 500px;
}
.prod-item{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Navbar container layout */
.customnavbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #fff;
    padding: 10px 20px !important;
    height: 60px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
}

/* Logo styling */
.customnav-logo img {
    height: 48px !important;
    display: block !important;
}

/* Center nav links alignment (Desktop) */
.customnav-links {
    display: flex !important;
    list-style: none !important;
    align-items: center !important;
	margin-bottom:0;
}

.customnav-links li {
    position: relative !important;
}

.customnav-links a {
    color: black !important;
    text-decoration: none !important;
    padding: 15px 15px !important;
    display: flex !important;         /* Added */
    align-items: center !important;   /* Added */
	font-size:1.1rem !important;
	font-weight:500;
	margin-right:5px !important;
    transition: background 0.3s !important;
}
.customnav-links a:hover{
	 background-color: #f7fafc;
    color: #1a202c;
	border-radius:5px;
}
.customnav-links a.active{
	background-color:#0e20c7 !important;
	height:35px;
	border-radius:5px;
	color: white !important;
}

/* Animated Hamburger Icon Button Setup */
.menu-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Stays above sidebar */
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger to X Transform Animations */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Sidebar Dim Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}
.nav-profile-container {
    position: relative;
    margin-left: auto; /* Forces element to the far right side on mobile */
}
.item-box{
	background-color: var(--secondary-backgrnd-clr);
  box-shadow:3px 3px 5px rgba(0,0,0,0.2);
  color: var(--line-clr);
  border-radius: 5px;
  align-content: center;
  margin-bottom:10px;
}
.carousel-item-box{
	background-color: var(--secondary-backgrnd-clr);
  box-shadow:3px 3px 5px rgba(0,0,0,0.2);
  color: var(--line-clr);
  border-radius: 10px;
  align-content: center;
  margin:10px;
  height:auto;
  background: linear-gradient(90deg,#020024 0%, #090979 46%, #A2DAE8 100%);"
}
.quicklink a{
	text-decoration: none !important;
	font-weight:500;
	color:#fff;
	padding-left:15px;
}
.flex-row {
  display: flex;         /* Activates flexbox */
  flex-wrap: wrap;       /* Allows wrapping on smaller screens */
  gap: 2px;             /* Adds spacing between columns */
}
.flex-column {
  flex: 1;               /* Makes columns share horizontal space equally */
  min-width: 250px; 
}
footer{
	background-color:#0e20c7;
}
.product-grid {
	display:grid;
	padding:10px 10px;
	grid-template-columns:repeat(2, 1fr);
	grid-gap: 10px;
	overflow:auto;  
}
.productitem-box{
	/*background-color: var(--base-clr);*/
	background-color:#e4f8ff;
  box-shadow:3px 3px 5px rgba(0,0,0,0.2);
  
  border-radius: 10px;
  margin-bottom:10px;
  padding:0 10px;
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9; /* Automatically locks the YouTube player format */
  margin-bottom: 15px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.imgclass{
	max-width:70%;
	max-height: 300px;
	height: 150px; 
	display: block;
}
.hover-lift {
      transition: transform 0.3s ease; /* Smooth zoom transition */
    }
    .hover-lift:hover {
      transform: scale(1.03);
    }
.about-desc{
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 32px 0;
}
.about-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin: 0 0 20px 0;
}
.mini-desc{
	font-size: 16px;
	line-height: 1.5;
	margin: 0 32px 32px 0;
}
.ul-item{
	font-size: 15px;
	line-height: 1.8;
	margin: 0 32px 32px 0;
}
.plus-img{
	max-width:38%;
	max-height: 380px;
	height: auto; 
	display: block;
}
/*---------------------------------*/
.bootstrap-select .dropdown-toggle {
  font-size: 13px !important; 
}
.bootstrap-select .dropdown-menu li a {
  font-size: 14px !important;
}

.rotate{
  transform: rotate(180deg); 
  transition: rotate .75s ease;
}/*----Aboutup Page-----------------------------*/
.hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  /* Horizontal 90-degree mild blue gradient blend */
  background: linear-gradient(
    90deg, 
    #f0f9ff 0%, 
    #e0f2fe 35%, 
    #bae6fd 70%, 
    #7dd3fc 100%
  );
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Halves */
.left-half, .right-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Left Half - Content */
.left-half {
  justify-content: flex-start;
}

.text-block h1 {
  font-size: 3rem;
  color: #0c4a6e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-block p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0284c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #0369a1;
  transform: translateY(-2px);
}

/* Right Half - Seamless Soft Graphic */
.right-half {
  justify-content: flex-end;
}

/* Frosted glass style looks excellent against soft, blended gradients */
.glass-card-placeholder {
  width: 85%;
  height: 75%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(12, 74, 110, 0.15);
}
/*------end of aboutus page---------------------------*/
.apptimg{
	height:200px;
}
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;  
 min-height: 75vh;
  z-index: 10;  
}
.login-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px !important;
	width:40%;
	padding:10px 20px 10px 20px;
    min-height: 40vh;
}
.login-card img{
	width:70% !important;
}
/*-------------------------------------*/
/* Mobile responsive breakpoint (768px) */
@media (max-width: 768px) {
    .customnavbar {
        justify-content: flex-start; /* Aligns left components together */
        gap: 20px; /* Space between Left Hamburger and Logo */
    }
	.nav-profile {
        margin-left: auto; /* Forces profile item to stay on the far right edge */
    }
    .menu-toggle {
        display: flex;
    }
    /* Transform menu list into a left-to-right sidebar */
    .customnav-links {
        position: fixed;
        top: 0;
        left: -280px; /* Off-screen default state */
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background-color: #6a89a7;
        padding-top: 80px; /* Clear spacing under top navigation container */
        transition: left 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
		padding-left: 0 !important;
    }

    /* Open state: slide from left to right */
    .customnav-links.active {
        left: 0;		
    }

    .customnav-links li {
        width: 100%;
    }

    .customnav-links a {
        padding: 8px 20px !important;
        width: 100%;
		font-size:.95rem;
		color: white !important;
    }
	.customnav-links svg{
		fill: #fff !important;
	}
	.customnav-links a:hover{
		background-color: #6a89a7 !important;
		color: black !important;
		/*border-radius:5px;*/
		svg{
			fill: #000000 !important;
		}
	}
	.customnav-links a.active{
		color: black !important;
		border-bottom: none !important;
		svg{
			fill: #000000 !important;
		}
	}
.tile-adj{
	 margin-bottom:10px;
  }
  .product-grid {
	display:grid;
	padding:10px 10px;
	grid-template-columns:auto;
	grid-gap: 8px;
	overflow:auto;  
}
.productitem-box{
	background-color:#e4f8ff;
  box-shadow:3px 3px 5px rgba(0,0,0,0.2)
  border-radius: 10px;
  margin-bottom:10px;
  padding:10px 10px;
}
.about-desc{
	font-size: 15px;
}
.mini-desc{
	font-size: 15px;
	line-height: 1.7;
}

  /* Adjust the width of the control buttons */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    position: absolute;
  }

  /* Move the previous button outside the image */
  .carousel-control-prev {
    left: 10px;
  }

  /* Move the next button outside the image */
  .carousel-control-next {
    right: 10px;
  }
.plus-img{
	max-width:32%;
	max-height: 220px;
	height: auto; 
	display: block;
}
/*-aboutus-----------------------------*/
.hero-banner {
    height: auto;
    padding: 60px 20px;
    /* Flips gradient top-to-bottom on mobile for text readability */
    background: linear-gradient(
      180deg, 
      #f0f9ff 0%, 
      #e0f2fe 35%, 
      #bae6fd 70%, 
      #7dd3fc 100%
    );
  }
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .left-half, .right-half {
    padding: 0;
    justify-content: center;
    text-align: center;
  }
  .left-half {
    order: 1;
  }
  .right-half {
    order: 2;
  }
  .glass-card-placeholder {
    width: 100%;
    height: 300px;
  }
  .apptimg{
	height:200px;
	width:80%;
}
.tableheader{
	font-size:12px;
	vertical-align:middle;
	font-weight:400;
	border-right: 1px solid white;
	white-space: nowrap;
}

.login-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px !important;
	width:95%;
	padding:10px 20px 10px 20px;
    min-height: 50vh;
}
}
@media (min-width: 769px) {
    .nav-profile-container {
        margin-left: 0; /* Align directly adjacent to center items layout on desktop */
    }
	
}
