* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;

}

:root {
  --gradient: linear-gradient(90deg, #3db6d1, #79bf8e);
  --main1: #3db6d1;
  --main2: #79bf8e;
  --dark-bg: #000;
}

/* DISPLAY CURSOR*/

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/****CONTACT****/


/* BODY */

body {
  background-color: black;
  color: #fff;
  overflow-x: hidden;
  cursor: none; /* hide default cursor */
}
html {
  scroll-behavior: smooth;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #3db6d1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background 0.3s;
  z-index: 9999;
  backdrop-filter: blur(2px);
}




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

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

.top-header .logo img {
  height: 60px;
  width: auto;
  
}





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

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

/*  Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  }
.logo1 img {
  height: 40px;  
  width: auto;
  display: block;
}



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

.nav-links a {
  font-weight: 400;
  text-decoration: none;
  color:white; 
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  transition: 0.3s ease;
  font-size: 0.98rem;
  letter-spacing: 1px;
}

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



/*NAV BUTTON*/

.nav-btn {
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding: 8px 35px;
  border-radius: 999px;
  font-size: 16px;
  text-decoration: none;
  margin: 0 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45); /* dark glassy look */
color:white;
  border: 1px solid rgba(255, 255, 255, 0.25);
   backdrop-filter: blur(6px);
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}
.nav-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-4px);
}

/* asymmetric glow */
.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.4),
      transparent 70%
    );
  z-index: 0;
  transition: 0.5s;
  opacity: 0.8;
}

/* text layering */
.nav-btn span {
  position: relative;
  z-index: 2;
}

/* hover: increase glow */
.nav-btn:hover::before {
  opacity: 1;
  filter: blur(2px);
}
.btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
/* Create the duplicate arrow using pseudo-element */
.btn-arrow::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 16px; /* starts below the main arrow */
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19L19 5' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M11 5H19V13' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.nav-btn:hover .btn-arrow {
  transform: translateY(-4px); /* main arrow moves up */
}

.nav-btn:hover .btn-arrow::after {
  transform: translateY(-16px); /* second arrow moves up into view */
  opacity: 1;                   /* second arrow becomes visible */
}
/* Baseproductlist */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* Dropdown container */
.nav-links .dropdown {
  position: relative;
}

/* The dropdown menu */
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #000;              /* match your dark navbar */
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  list-style: none;
  display: none;                 /* hidden by default */
  z-index: 1000;
}

/* Items inside dropdown */
.nav-links .dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav-links .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: #3db6d1;
}

/* Show dropdown on hover (desktop) */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
.nav-links .dropdown-menu.open {
  display: block;
}

/*FIRST*/

/* HEADER */

.hero-banner {
  position: relative;
  width: 100%;
  height: 42vh;
  overflow: hidden;
  margin: 0;
  border: none;
  margin-top: 10%;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75% !important;
  
  transition: all 0.6s ease;
  box-shadow: 0 0 40px rgba(61,182,209,0.1);
  display: block;
  
}


.hero-banner-img:hover {
  filter: grayscale(0);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(121,191,142,0.2);
}



.hero-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 0.9;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 1px;
      text-transform: uppercase;
      white-space: nowrap;
      background-image: linear-gradient(90deg, #3db6d1, #79bf8e, #3db6d1);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientmove 5s linear infinite;
}

.hero-banner-content h1 {
  font-size: clamp(60px, 10vw, 90px);
  font-weight: 800;
  
}



@keyframes gradientmove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

/* CONTACT SECTION */
.contact-section {
  
  background: #0a0a0a;
  color: white;
}


/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.contact-box {
    text-align: center;
    padding: 10px;
}

/* Icons */
.icon i {
    width: 70px;
    opacity: 0.9;
    margin-bottom: 16px;
   font-size: 25PX;
}

.contact-box h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    letter-spacing: 1.3px;
}

/* Divider lines */
.contact-grid div:nth-child(1),
.contact-grid div:nth-child(2) {
    border-right: 1px solid rgba(255,255,255,0.12);
}











/* === Form === */
.form-box{
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.12); 
  padding:30px;
  margin-left: 30px;
  margin-right: 30px;
  background: rgba(14, 14, 14, 0.85); /* slightly transparent dark */
  backdrop-filter: blur(6px);         /* frosted effect */
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 0 25px rgba(255,255,255,0.05);
}


.form-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 0 35px rgba(0,255,255,0.18); /* brighter glow */
}
.form-box h2{
  font-size:24px;
  margin-bottom:20px;
  letter-spacing: 1px;
}
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

label{display:block;color:#ccc;margin-bottom:6px;font-size:14px}
input,textarea{
  width:100%;
  padding:18px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.2);
  background:#000;
  color:#fff;
  font-size:15px;
  letter-spacing: 1px;
}
textarea{min-height:140px;resize:vertical;
letter-spacing: 1px;}
button{
  margin-top:15px;
  padding:12px 30px;
  border-radius:999px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.45); /* dark glassy look */
color:white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  
 backdrop-filter: blur(6px);
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
  letter-spacing: 1px;
}
.btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-4px);
}



/* asymmetric glow */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.4),
      transparent 70%
    );
  z-index: 0;
  transition: 0.5s;
  opacity: 0.8;
}


/* text layering */
.btn span {
  position: relative;
  z-index: 2;
}

/* hover: increase glow */
.btn:hover::before {
  opacity: 1;
  filter: blur(2px);
}
.btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
/* Create the duplicate arrow using pseudo-element */
.btn-arrow::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 16px; /* starts below the main arrow */
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19L19 5' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M11 5H19V13' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.btn:hover .btn-arrow {
  transform: translateY(-4px); /* main arrow moves up */
}

.btn:hover .btn-arrow::after {
  transform: translateY(-16px); /* second arrow moves up into view */
  opacity: 1;                   /* second arrow becomes visible */
}

.field {
  margin-bottom: 25px;
  
}
.form-box .row:first-of-type {
    margin-top: 25px;   /* adjust to your taste */
    
}
.consent {
    display: flex;
    align-items: center;
    gap: 10px;       /* space between checkbox and text */
    margin-top: 15px;
}

.consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fff;   /* makes checkbox white on supported browsers */
}

.consent label {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 1px;
}

input:focus,
textarea:focus {
    outline: 0.90px solid #3db6d1 !important;
    border-color: #3db6d1 !important;
}

/*MAP*/

.map-section {
  padding: 60px 0px 100px;
  color: #fff;
}

.map-section h2 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-left: 150px;       /* align with form box */
}

.map-wrapper {
  margin: 0 30px;          /* same as .form-box left/right */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;            /* adjust height if you want bigger */
  display: block;
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  display: block;

  /* grayscale hover effect */
 
  transition: all 0.6s ease;
  transform-origin: center;
  border-radius: 16px; /* needed for smooth edges */
}

.map-wrapper iframe:hover {
  filter: grayscale(0);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(121,191,142,0.2);  /* same glow as about-img hover */
}
/* 1) HERO BANNER smaller */
.hero-banner{
  height: 68vh !important;        /* make it like thin strip */
  margin-top: 0 !important;       /* remove big top gap */
}

/* 2) Add clean spacing AFTER banner before contact grid */
.contact-section{
  padding-top: 120px;              /* creates that big black space */
  padding-bottom: 40px;
}

/* 3) Keep the contact grid centered and not full-edge */
.contact-grid{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;               /* same feel as your form/map */
}
/* === Footer === */




/* ===== Base ===== */
.creative-footer {
  position: relative;
  height: 90vh;
  min-height: 600px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: initial;   /* change from isolate */
  overflow: visible;    /* allow button to move */

  
}
/* ===== Video Background ===== */
.footer-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35) contrast(1.1);
}

/* ===== Overlay ===== */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.8) 100%);
  z-index: -1;
}

/* ===== Content ===== */
.footer-content {
  z-index: 2;
  padding: 0 10px;
  letter-spacing: 1px;
}
.footer-availability {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  opacity: 0.9;
}
.footer-content h2 {
  letter-spacing: 1px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
   /* gradient text */
  background-image:linear-gradient(90deg,#3db6d1, #79bf8e, #3db6d1);
  background-size:200% 100%;       /* put AFTER background-image */
  background-position:0% 0%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;               /* helps Firefox */

            /* ensures background animates cleanly */
  animation:gradientmove 5s linear infinite;
}

@keyframes gradientmove{
  0%   { background-position:0% 0%; }
  100% { background-position:100% 0%; }
}



/* Footer Button */
/* Glowing Outline Button Style */


/* ===== Social Links ===== */
.footer-social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footer-social a {
  color: #ccc;
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}
.footer-content .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:40px 12px;
  letter-spacing: 1px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ccc;
}
.tag .dot{
  width:10px;height:10px;border-radius:50%;
  background:radial-gradient(circle,#fff 30%,rgba(255,255,255,.2) 70%);
  box-shadow:0 0 8px rgba(255,255,255,.8);
  animation:blink 1.2s infinite ease-in-out;
}
.divider {
  width: .99px;
  height: 30px;
  background: rgba(255,255,255,0.3);
}

/* ===== Footer Bottom (Emails) ===== */
.footer-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 1px;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 1px;
}
.footer-bottom a:hover {
  color: #ccc;
}



