@font-face {
  font-family: 'CopperplateGothicBold';
  src: url('./fonts/copperplategothic_bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Root Variables */
:root {
  --primary: #0FC5B9;
  --bg: #0a0a0a;
  --text: #eaeaea;
  --accent: #1f1f1f;
  --font-heading: 'CopperplateGothicBold', sans-serif;;
  --font-body: 'CopperplateGothicBold', sans-serif;;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

html{
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  padding: 0;
  position: relative;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: 50px;
  animation: floatDiamonds 40s linear infinite;
  opacity: 0.03;
  pointer-events: none;
}

@keyframes floatDiamonds {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

.navbar {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;   
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: #0FC5B9;
}

.cta-btn {
  background: #0FC5B9;
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #0cc;
  color: #111;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .navbar{
    padding: 15px 30px;
  }
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #111;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #222;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta {
    display: none;
  }

}


/* Hero */
.hero-section {
  position: relative;
  z-index: 1;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel-track img,
.carousel-track video {
  width: 100vw;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  text-align: center;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  flex: 1 1 calc(45% - 40px); /* Two per row */
  background: var(--accent);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 280px;
  max-width: 400px;
}

.feature:hover {
  transform: translateY(-5px);
  background: #222;
}

.feature img {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px; 
  border-radius: 50%;
  object-fit: cover;
}
.feature h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: bold;
}

.feature p {
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 0 10px;
}


/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--accent);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
}

.industry-card:hover {
  background: #222;
  transform: translateY(-5px);
}

.industry-card img {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px; 
  border-radius: 50%;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: bold;
}

.industry-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 0 10px;
}


/* Contact */
.contact {
  background: var(--primary);
  color: #000;
  padding: 3rem 0;
  text-align: center;
}

.contact h2 {
  color: #000;
}

.contact p {
  font-size: 0.8rem;
  color: #000;
}

/* Footer */
footer {
  background: #111;
  color: #999;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .cta {
    margin-top: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .carousel-track img,
  .carousel-track video {
    height: 300px;
  }

  section {
    padding: 3rem 1rem;
  }
}


.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
/* Contact Form Enhancements */
.contact-form {
  background: var(--accent);
  color: #fff;
  padding: 2rem 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: var(--font-body);
 min-height: 550px; 
}


.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077b6;
  outline: none;
}

.select2-container .select2-selection--single{
  height: calc(1.6em + 0.75rem + 3px) !important;
  border-radius: 8px;
}
.select2-container .select2-selection--multiple{
  height: calc(1.6em + 0.75rem + 3px) !important;
  border-radius: 8px;
}
.select2-selection__choice{
  color: #000;
}
.select2-selection__rendered{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0.4rem 0.6rem;
  font-size: 14px;
}
select {
width: 300px;
margin: 20px auto;
}
/* Style for Select2 container */
.select2-container {
width: 100% !important;
border-radius: 8px;
}
/* Style for Select2 search input */
.select2-search__field {
border: 1px solid #ccc;
border-radius: 8px;
padding: 8px;
outline: none;
}
/* Style for Select2 dropdown */
.select2-dropdown {
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
color: #000;
}
/* Style for Select2 options */
.select2-results__option {
padding: 8px;
}
/* Hover effect for Select2 options */
.select2-results__option:hover {
background-color: #e0e0e0;
}
.option{
  border: none;
  outline: none;
  width: 100%;
}

#dialCode + .select2-container {
  width: 100px !important; /* fixed width */
  flex-shrink: 0;         /* prevent shrinking in flex container */
}

/* Remove top-right and bottom-right border radius from Select2 container */
#dialCode + .select2-container .select2-selection {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 768px) {
  .contact-form .form-row {
      gap: 0rem;
  }
  .contact-form .form-row .form-group {
    flex: 1 1 100%;
  }
}

.form-section {
  transition: all 0.6s ease;
  backface-visibility: hidden;
}

.blurred {
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 767.98px) {
  .blurred {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }
}

.hidden {
  display: none !important;
  opacity: 0;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-row>[class*=col-]{
  padding-left: 15px;
  padding-right: 15px;
}

.error-border {
  border: 2px solid red !important;
}