/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --gradient: linear-gradient(90deg, #3db6d1, #79bf8e); /* logo color gradient */
  --main-color: #3db6d1;
  --dark-bg: #2d2d2d;

}
/* GLOBAL */
body {
  background-color: var(--dark);
  color: black;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/* Consistent Top Gap for All Sections */
section,
.products,
.about-section,
.news-section,
.industries,
.why-choose,
.contact,
.footer {
  scroll-margin-top: 110px; /* ensures scroll anchors show full section below header */
  padding-top:
}

/* TOP HEADER */
.top-header {
  width: 100%;
  background: #2d2d2d; /* top bar color */
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  height: 50px;
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header .logo img {
  height: 40px;
  width: auto;
  
}
/* NAVBAR */
.navbar {
  width: 100%;
  position: fixed;
  top: 50px; /* height of top-header */
  left: 0;
  background: white;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
}

/* Gradient Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo1 img {
  height: 40px;  /* or whatever fits your navbar */
  width: auto;
  display: block;
}



/* Navbar Links with Gradient Text */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  text-decoration: none;
  color: #2d2d2d; /* changed from gradient to solid color */
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7; /* keeps the hover effect */
}

.nav-btn {
  background: linear-gradient(90deg, #3db6d1, #79bf8e);
  color: #2d2d2d;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  background-size: 200% auto;
  display: inline-block;
}

.nav-btn:hover {
  background-position: right center; /* moves gradient */
  color: #fff;                       /* makes text white */
  transform: scale(1.05);            /* subtle lift effect */
  box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
}


/* HERO SECTION */
/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;  /* vertically centers content */
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding-top: 90px; /* remove large padding */
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  /* optional: slightly move up */
  transform: translateY(-50px); /* moves content 50px up */
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}



/* Gradient Text for h1 */
.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ddd;
}

/* BUTTONS */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-btn {
  background: linear-gradient(90deg, #3db6d1, #79bf8e);
  color: #2d2d2d;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  background-size: 200% auto;
}

.hero-btn:hover {
  background-position: right center; /* move gradient */
  color: #fff;
  transform: scale(1.05);
}


.hero-btn-outline {
  border: 2px solid var(--main-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn-outline:hover {
  background: var(--main-color);
  color: #2d2d2d;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* PRODUCTS SECTION */
/* Products Section with Dark Wave Background */
:root {
  --gradient: linear-gradient(90deg, #3db6d1, #79bf8e); /* logo color gradient */
  --main-color: #3db6d1;
  --dark-bg: #2d2d2d;

}
.products {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full height like About section */
  padding: 80px 0 60px 0;
  box-sizing: border-box;
  color: #2d2d2d;
  background: black; /* dark base */
  overflow: hidden;
}



/* Keep content above waves */
.product-grid, .section-tittle {
  position: relative;
  z-index: 1;
}

/* Reuse wave animation keyframes */
@keyframes waveMotion {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}





.section-tittle {
  text-align: center;
  margin-bottom: 50px;
  
}

.section-tittle h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
 
}

.section-tittle p {
  font-size: 1.1rem;
  
   color: #d4fff0;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
  width: 100%;
}

/* PRODUCT CARD */
.product-card {
  background: #0074ac;
  padding: 30px 20px;
  color: white;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Individual card colors - Dark Theme Based on #2d2d2d */
.product-card:nth-child(1)  { background: #2f4f5f; }   /* Dark blue shade */
.product-card:nth-child(2)  { background: #356a6d; }
.product-card:nth-child(3)  { background: #3a8680; }
.product-card:nth-child(4)  { background: linear-gradient(to bottom, #2f4f5f, #4a8f70); }
.product-card:nth-child(5)  { background: #468f72; }
.product-card:nth-child(6)  { background: #51a57a; }
.product-card:nth-child(7)  { background: #5cbf82; }
.product-card:nth-child(8)  { background: linear-gradient(to bottom, #356a6d, #5cbf82); }
.product-card:nth-child(9)  { background: #44c290; }
.product-card:nth-child(10) { background: #50d798; }
.product-card.last-dark {
  background: linear-gradient(to bottom, #2f4f5f, #5cbf82);
}

/* ICONS */
.product-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #f7a61a;
}

/* TITLES */
.product-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
}

.product-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #2d2d2d;
  margin: 6px auto 0;
}

/* DESCRIPTION */
.product-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 10px;
  color: #d4fff0;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 2;
}

/* RESPONSIVE GRID */
@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .product-grid { grid-template-columns: 1fr; } }




/* about */


/* About Section */
/* About Section with Dark Wave Background */
:root {
  --gradient: linear-gradient(90deg, #3db6d1, #79bf8e); /* logo color gradient */
  --main-color: #3db6d1;
  --dark-bg: #2d2d2d;

}
.about-section {
  position: relative;
  width: 100%;

  min-height: 100vh;
  padding: 80px 20px;
  box-sizing: border-box;
  color: rgb(210, 205, 205);
  background: #000; /* dark base */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.middle-logo{
  width: 100%;
}


.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.about-text {
  flex: 1 1 50%;
  padding: 20px;
}


.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.about-text h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color:#79bf8e ;
  margin-top: 10px;
  
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #d4fff0;
  text-align: justify;
}

.about-image {
  flex: 1 1 50%;
  padding: 20px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 700px;
 
  border-radius: 0px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  margin-right:200px;
}

/* Responsive */
@media(max-width:992px){
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
    padding: 15px;
  }
}



/*news*/
/* NEWS & MEDIA SECTION */


.nm-section {
  font-family: "Poppins", sans-serif;
  background: black;
  color: #d4fff0;
  padding:  20px;
  text-align: center;
}

.nm-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #3db6d1;
}

.nm-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Headings */
.nm-heading {
  position: relative;
  display: inline-block;
}

.nm-link {
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
  color: #d4fff0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.nm-link i {
  color: #3db6d1;
  margin-right: 12px;
  font-size: 28px;
  vertical-align: middle;
}

.nm-link:hover {
  color: #3db6d1;
}

/* Underline style */
.nm-underline {
  display: block;
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, #3db6d1, #79bf8e);
  bottom: -10px;
  width: 160%;
  opacity: 1;
  transition: transform 0.6s ease;
}

/* Left heading */
.nm-heading.left {
  text-align: left;
}
.nm-heading.left .nm-underline {
  left: 0;
}
.nm-heading.left .nm-underline::after {
  content: '';
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2379bf8e' stroke-width='2'><path stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/></svg>");
}

/* Right heading */
.nm-heading.right {
  text-align: right;
  padding-top: 80px;
}
.nm-heading.right .nm-underline {
  right: 0;
}
.nm-heading.right .nm-underline::after {
  content: '';
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2379bf8e' stroke-width='2'><path stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/></svg>");
}

/* Hover animation */
.nm-heading.left:hover .nm-underline,
.nm-heading.right:hover .nm-underline {
  transform: scaleX(1.1);
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nm-inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .nm-heading {
    text-align: center !important;
  }
  .nm-underline {
    width: 130%;
  }
  .nm-underline::after {
    display: none;
  }
}

/* Dancing Icon */
.dancing-icon {
  font-size: 40px;       /* size of icon */
  color: #3db6d1;        /* icon color */
  margin: 0 15px;        /* spacing between icons */
  display: inline-block;
  animation: dance 1.8s infinite ease-in-out; /* animation */
}

/* Keyframes for dance */
@keyframes dance {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-8deg);
  }
  50% {
    transform: translateY(3px) rotate(6deg);
  }
  75% {
    transform: translateY(-4px) rotate(-5deg);
  }
}




/* INDUSTRIES SECTION */
/* INDUSTRIES SECTION */
.industries {
  background-color:black;
  color: #d4fff0;
  padding: 120px 40px;
  text-align: center;
  position: relative;
}

/* TITLE */
.industries .section-title {
  margin-bottom: 60px;
}

.industries .section-title h2 {
  font-size: 2.8rem;
  color:#3db6d1;
  
  font-weight: 700;
  margin-bottom: 15px;
}

.industries .section-title p {
  color: #d4fff0;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-content: center;
}

/* CARD */
.industry-card {
  
  border-radius: 20px;
  
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(61, 182, 209, 0.2);
}

.industry-card:hover {
  transform: translateY(-10px);
  
  color: #2d2d2d;
  box-shadow: 0 0 25px rgba(61, 182, 209, 0.5);
}

.industry-card img {
  width: 100%;
  height: 280px; /* reduced image height */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}


.industry-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.industry-card:hover p {
  color: #2d2d2d;
}




/* WHY CHOOSE US SECTION */
.why-choose {
  background: black;
  color: white;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
  
}

.section-title h2 {
  font-size: 2rem;
  color: #3db6d1;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: #d4fff0;
  margin-bottom: 50px;
}
h3{
  font-size: 70px;
}
/* Grid Layout */
.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 0;
}

/* Cards */
.choose-card {
  flex: 1 1 25%;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.choose-card:last-child {
  border-right: none;
}

/* Icons */
.choose-card .icon {
  font-size: 2.5rem;
  color: #f7a61a;
  margin-bottom: 15px;
}

/* Headings */
.choose-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Text */
.choose-card p {
  font-size: 0.95rem;
  color: #eaeaea;
}

/* Hover Effect */
.choose-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media(max-width:992px){ .choose-card{flex:1 1 50%;} }
@media(max-width:576px){ .choose-card{flex:1 1 100%; padding:30px 20px;} }




/* CONTACT SECTION */
.contact {
  background: black;
  color: white;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
}

.contact .section-title h2 {
  font-size: 2rem;
  color: #f7a61a;
  margin-bottom: 10px;
}

.contact .section-title p {
  font-size: 1rem;
  color: #d4fff0;
  margin-bottom: 50px;
}

/* Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Box */
.contact-info {
  flex: 1 1 40%;
  text-align: left;
}

.info-item {
  margin-bottom: 30px;
}

.info-item .icon {
  font-size: 1.8rem;
  color: #f7a61a;
  margin-right: 10px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.info-item p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact .section-title h2 {
  color:  #0074ac ;
}
  

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  background: linear-gradient(90deg, #0074ac, #9cfced); /* same as Get a Quote button */
  color: #000;  /* text color black */
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #0099cc, #c0ffff); /* slightly lighter gradient on hover */
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:992px){
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-info, .contact-form {
    flex: 1 1 100%;
    text-align: center;
  }
  .info-item {
    margin-bottom: 20px;
  }
}

/* FOOTER */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 60px 20px 20px 20px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Headings Gradient */
.footer-about h3,
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-weight: 600;
  background: linear-gradient(90deg, #0074ac, #9cfced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}




.footer-about p {
  color: #ccc;
  line-height: 1.6;
  text-align: center;
}




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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #9cfced;
}

/* Contact Info */
.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #ccc;
}

.footer-contact .icon {
  margin-right: 8px;
 
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #f7a61a;
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media(max-width:992px){
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .footer-links, .footer-contact, .footer-social { margin-top: 30px; }
}




.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: white;
  margin-left: 5px;
  animation: blink 0.8s steps(1) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}









