@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


body {
	margin: 0;
  	padding: 0;
	background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), fixed;
	font-family: 'Roboto', sans-serif;
}

.logo{
	height: 50px;
	width: auto;
}

.nav-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1); /* keep or adjust */
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav{
  list-style: none;
/*  margin: 0;*/
  justify-content: space-around;
  background-color: rgba(255, 255, 255,1);
  padding: 10px 20px;
  display: flex;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.logo{
	float: left;
}
.fa{
	color: rgba(0, 49, 83,0.8);
	margin: 5px;
}

.moreBtn{
	background-color: crimson;
	color: white;
	margin: 10px;
	border-radius: 22px;
	text-decoration: none;
	padding: 10px;
	font-size: 12px;
}
.moreBtn:hover{
	background-color: rgb(0, 49, 83);
}

nav a,
.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 1);
}


.navbar-nav li a:hover{
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	font-weight: bolder;
	padding: 15px;
}

.banner {
	margin: 0;
  	padding:12px 0;
  	height: 60vh;
	background: linear-gradient(to left,rgba(0,0,139,0.1),rgba(0, 49, 83, 0.9)), url('/static/edtekapp/images/ops.webp') fixed no-repeat right center/contain;
	position: relative;
	z-index: 1;
}

.banner-text {
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%, -50%);
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 1px;
	text-align: left;
	font-weight: bold;
}

.banner-text h2 {
/*	font-family: 'Great Vibes', cursive;*/
  	position: relative;
  	display: inline-block;
  	color: white;
  	text-shadow: 0 3px navy;
}

.banner-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px; /* Controls spacing below the text */
  width: 120%;
  height: 3px; /* Thickness of the underline */
  background-color: limegreen;
}

.why{
	margin:0 40px;
	padding: 10px;
	position: relative;
  	z-index: 2;
  	margin-top: -100px;
}

.why-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  padding: 5px 10px;
  background-color: white;
  text-align: center;
}

.why-content > div {
  flex: 1 1 200px;
  max-width: 400px;
  padding: 20px;
/*  background: white;*/
  position: relative;
/*  border-radius: 12px;*/
/*  box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
}

.why-content > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 5px;
  height: 80%;
  background-color: limegreen;
}

.why-content i {
  font-size: 2rem;
  color: #007bff; /* Bootstrap blue or choose your brand color */
  margin-bottom: 10px;
}

.why-content h2 {
  font-size: 1.5rem;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.why-text h3{
	font-family: 'Great Vibes', cursive;
  	font-size: 2rem;
  	color: rgb(0,0,0,1);
  	letter-spacing: 3px;
  	text-align: center;
  	text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.6);
  	margin: 5;
  	padding: 0;
}

.why p{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	margin: 10px 0;
}

.services{
	margin: 10px;
	display: flex;
	gap: 20px;
	font-family: 'Inter', sans-serif;
}

.hover-image {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 12px;
  padding: 20px;
}

.hover-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

/* Always-visible overlay */
.hover-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: flex-end;  /* Push text to the bottom */
  text-align: center;
  color: black;
  font-weight: bolder;
  box-sizing: border-box;
}

/* Optional: zoom image on hover */
.hover-image:hover img {
  transform: scale(1.05);
}

.overlay-text h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services {
    gap: 15px;
  }
  .hover-image {
    flex: 1 1 45%; /* 2 per row on tablets */
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hover-image {
    flex: 1 1 90%; /* 1 per row on phones */
  }
}

ul li{
	display:inline;
	color: white;
	padding: 5px;
	list-style-type: none;
	float:left;
}

@media only screen and (min-width: 413px) {
	  #header{
		font-family: sans-serif;
		font-weight: bolder;
		color: rgba(165, 42, 42,0.9);
		font-size: 40px;
		text-transform: uppercase;
		letter-spacing: -2px;
		text-shadow: 3px 5px 1px black;
	}
}
@media only screen and (max-width: 413px) {
	  #header{
		font-family: 'Inter', sans-serif;
		font-weight: bolder;
		color: coral;
		font-size: 16px;
		text-transform: uppercase;
		letter-spacing: -2px;
		text-shadow: 3px 5px 1px black;
	}
}

.pheriperal {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left: Text block */
.peri-text {
  flex: 1.5;
  background-color: rgb(0, 49, 83);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pheriperal .fa{
	color: white;
}
.peri-text h5 {
	font-family: 'Inter', sans-serif;
  	font-size: 1.5rem;
  	color: white;
  	margin-bottom: 1px;
}

.peri-text p {
	font-family: 'Inter', sans-serif;
  	font-size: 1rem;
  	line-height: 1.5;
  	color: white;
}

/* Right: Image block */
.peri-image {
  flex: 0.5;
 
  background-color: #e9f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peri-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-left: 2px solid #cce0cc;
}

/* Mobile: Stack the blocks */
@media (max-width: 768px) {
  .pheriperal {
    flex-direction: column;
  }

  .peri-text,
  .peri-image {
    width: 100%;
  }

  .peri-image img {
    border-left: none;
    border-top: 2px solid #cce0cc;
  }
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 40px 20px;
  max-width: 1280px;
  margin: auto;
}

.product-card {
  background: #f9f9f9;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-info {
  padding: 20px;
  flex: 0.5;
}

.product-info h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: black;
}

.product-info p {
  font-size: 0.75rem;
  color: #555;
  margin: 10px 0 20px;
}

.more-btn {
  background-color: rgb(0, 49, 83);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.more-btn:hover {
  background-color: rgba(0, 49, 83,0.8);
}

.banner-curve {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  overflow: hidden;
  z-index: 1;
}

.banner-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 49, 83, 1));
  font-family: 'Inter', sans-serif;
}

.footer-time small {
  color: #ccc;
}

.footer ul li::after {
  content: "|";
  margin-left: 8px;
  color: #888;
}

.footer ul li:last-child::after {
  content: "";
}

.footer1 h4{
	position: absolute;
	margin-top: 50px;
	color: goldenrod;
	font-family: 'Inter', sans-serif;
}

.footer1 p{
	position: absolute;
	margin-top: 50px;
	left: 2;
	color: white;
	font-family:'Inter', sans-serif; 
	font-size: 10px;
}

.footer2{
	margin: 20px;
	text-align: center;
	color: white;
	font-family: 'Inter', sans-serif;
	font-weight: bolder;
	font-size: 14px;
}

.some-link {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin:50px 0;
}

.some-link a{
	text-decoration: none;
	color: white;
}

.some-link a:hover{
	text-decoration: none;
	color: limegreen;
}

.some-link li {
  position: relative;
}

.some-link li:not(:last-child)::after {
  content: "|";
  color: #ccc;
  margin-left: 5px;
}

.connected h5{
	color: white;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  border: none;
  outline: none;
  background-color: rgba(0, 49, 83, 0.8);
  color: white;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 18px;
  display: none; /* Hidden by default */
  transition: all 0.3s ease-in-out;
}

#scrollToTopBtn:hover {
  background-color: limegreen;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 30px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: limegreen;
}
.contact-info {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin: 15px 5px;
}

.contact-info i {
  margin-right: 8px;
  color: white;
  font-size: 25px;
}

.solutions h4 {
  font-weight: 600;
  color: white;
  border-bottom: 2px solid #ccc;
}

.solutions ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

.solutions h6 {
  font-weight: 600;
}

@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/*About*/
.about-banner {
	position: relative;
  	background:linear-gradient(to right,rgba(0, 0, 0, 0.1),navy), url('/static/edtekapp/images/oled.webp') fixed no-repeat left center/contain;
  	height: 80vh;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	text-align: center;
  
  	font-family: Arial, sans-serif;
    color: black;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 0;
    text-shadow: 2px 2px 2px black;
}

/*.about-banner > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}*/

.about-banner-content {
  position: relative;
  z-index: 2;
  padding: 22px;
  max-width: 700px;
/*  background-color: rgba(255, 255, 255, 0.2);*/
  font-size: 64px;
  color: white;
  font-family:  Arial, sans-serif;
}

.about-banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-banner-content p {
  font-size: 1.1rem;
}

.tiny-banner {
  width: 100%;
  background-color: rgb(0, 49, 83);
  padding: 13px 20px;
  color: white;
  box-sizing: border-box;
  font-family:'Inter', sans-serif;
}

.tiny-banner-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; /* for absolute button positioning */
  height: 40px; /* tiny height */
}

/* Center the texts container absolutely */
.tiny-banner-texts {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.tiny-banner-text {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  letter-spacing: 3px;
  color: white;
  user-select: none;
  text-decoration: none;
}

.tiny-banner-button {
  margin-left: auto; /* push button to right */
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background-color: crimson;
  color: white;
  border-radius: 22px;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 12px;
  white-space: nowrap;
  position: relative;
  z-index: 1; /* ensure on top */
}

.tiny-banner-button:hover {
  background-color: #f2f2f2;
  color: crimson;
}
.container {
      max-width: 900px;
      margin: 20px auto;
      padding: 20px;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    .product-description img {
      float: right;
      margin-left: 20px;
      margin-bottom: 5px;
      width: 250px; /* adjust as needed */
      height: auto;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
    }

    .product-description::after {
      content: "";
      display: table;
      clear: both;
    }
    .description {
    	background-color: rgba(0, 49, 83);
    	padding: 20px;
    	border-radius: 12px;
    	font-family: 'Inter', sans-serif;
    	text-align: center;
    	color: white;
    }
    .description h1{
    	font-weight: bolder;
    }
    .description h4{
    	font-weight: bold;
    }
    p.one{
    	margin-top: 30px;
    }
    .description img{
    	float: right;
    	margin-left: 20px;
      	margin-bottom: 10px;
      	width: auto; /* adjust as needed */
      	height: 350px;
      	border-radius: 8px;
      	font-family: 'Inter', sans-serif;
    }
 .image-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      font-family: 'Inter', sans-serif;
    }

    .image-container h1{
    	font-weight: bolder;
    }

    .image-container h4{
    	font-weight: bold;
    }

    .image-row {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap; /* allows stacking on small screens */
      margin-bottom: 50px;
    }

    .image-box {
      flex: 1;
      min-width: 300px;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      border-radius: 8px;
    }

    .image-content-box {
      flex: 2;
      min-width: 300px;
    }

    .image-content-box p {
      font-size: 16px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .image-row {
        flex-direction: column;
        text-align: center;
      }
    }

 
.full-banner {
	  position: relative;
	  width: 100%;
	  height: 400px;
	  background:linear-gradient(to right,rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 1)), url('/static/edtekapp/images/oled.webp') fixed no-repeat left center/contain;
	  display: flex;
	  align-items: center;
	  justify-content: flex-end; 
	  color: white;
	  box-sizing: border-box;
	  padding: 0 70px;
	  font-family: 'Inter', sans-serif;
}

.banner-overlay {
	  text-align: center;
	  max-width: 600px;
	  padding: 20px 30px;
	  border-radius: 8px;
}

.banner-overlay h1 {
	  font-size: 36px;
	  font-weight: bolder;
	  margin: 0 0 10px;
	  line-height: 1.2;
}

.banner-overlay h4 {
	  font-size: 20px;
	  font-weight: bold;
	  margin: 0 0 10px;
	  line-height: 1.2;
}
.banner-overlay p {
	  font-size: 14px;
	  margin: 0;
	  line-height: 1.8;
}

@media (max-width: 768px) {
    .banner {
      margin: 0;
      padding: 40px 20px;
      height: 600px;
      background: linear-gradient(to bottom,rgba(1, 1, 48, 0.1),rgba(0, 49, 83, 0.9)), url('/static/edtekapp/images/ops.webp') fixed no-repeat right center/cover;
      position: relative;
      z-index: 1;
  }
  .full-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1)),
              url('/static/edtekapp/images/oled.webp') no-repeat left center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  box-sizing: border-box;
  padding: 0 70px;
  font-family: 'Inter', sans-serif;
}

#typing-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white; /* optional blinking cursor effect */
  animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
  from, to { border-color: transparent }
  50% { border-color: white }
}
.banner-overlay {
	  text-align: center;
	  max-width: 600px;
	  padding: 20px 30px;
	  border-radius: 8px;
}

.banner-overlay h1 {
	  font-size: 16px;
	  font-weight: bolder;
	  margin: 0 0 5px;
	  line-height: 1.0;
}

.banner-overlay h4 {
	  font-size: 14px;
	  font-weight: bold;
	  margin: 0 0 5px;
	  line-height: 1.0;
}
.banner-overlay p {
	  font-size: 12px;
	  margin: 0;
	  line-height: 1.2;
}

  /* ABOUT BANNER */
  .about-banner {
    height: auto;
    padding: 60px 20px;
    background-attachment: scroll; /* disables fixed background on mobile for smoother scrolling */
    text-align: center;
    background-position: center center;
  }

  .about-banner-content {
    font-size: 32px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
  }

  .about-banner-content h1 {
    font-size: 1.8rem;
  }

  .about-banner-content p {
    font-size: 1rem;
  }

  /* TINY BANNER */
  .tiny-banner-content {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 10px 0;
  }

  .tiny-banner-texts {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }

  .tiny-banner-button {
    margin: 0 auto;
    padding: 10px 16px;
    font-size: 14px;
  }
}

/*specifications banner*/
.features-banner {
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
              url('/static/edtekapp/images/oled.webp') no-repeat left center;
  background-size: cover; /* or 'contain' if you prefer, but 'cover' is usually better */
  color: white;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: bolder;
}


.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 220px;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.feature-box > h1 {
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: bolder;
  color: white;
}

.feature-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  margin: 0;
}

.card-pair {
  display: flex;
  width: 100%;
  height: 300px;
  margin: 0;
  padding: 40px;
}

.card {
  flex: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Colored background card with image + text */
.colored-card {
  background-color: crimson; /* or any other color */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.card-image {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.colored-card h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.colored-card p {
  font-size: 14px;
  margin: 0;
}

/* Image card */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-container {
      background: rgba(0, 0, 0, 0.6);
      color: white;
      max-width: 500px;
      width: 100%;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .contact-container h2 {
      margin-bottom: 20px;
    }

    .contact-item {
      margin: 20px 0;
      font-size: 16px;
      color: white;
    }

    .contact-item a {
      color: white;
      text-decoration: none;
    }

    .whatsapp-button {
      display: inline-block;
      background-color: #25D366;
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .whatsapp-button:hover {
      background-color: limegreen;
    }
    
#typing-text {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white; /* optional blinking cursor effect */
  animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
  from, to { border-color: transparent }
  50% { border-color: white }
}
