* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Helvetica Now";
  src: url("fonts/helveticanowtext-bold-demo") format("woff2");
  font-weight:100;
}

body {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  font-weight:100;
}

.h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
h1 {
  font-size: 48px;
  font-weight: 800;
    line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}


.textlink {
font-size:16px;
line-height:3.6;
color:#000;
text-decoration:underline;
}

.smallpara {
font-size:14px;
color:#000;
}


.small {
font-size:14px;
color:#fff;
}

.smallheading {
font-size:20px;
color:#fff;
}

.mediumheading {
font-size:30px;
color:#fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  position: relative;
  background: #fff;
  z-index: 1000;
}

/* NAV LINKS */
#nav-menu {
  display: flex;
  gap: 0px;
}

#nav-menu a {
  text-decoration: none;
  color: #222;
	display: block;
  line-height: 1.2;
  padding: 8px 20;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: black;
  margin: 5px 0;
}

/* MOBILE */
@media (max-width: 900px) {

  #nav-menu {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;

    display: none; /* hidden by default */
  }

  #nav-menu.active {
    display: flex; /* show when active */
  }

  .hamburger {
    display: flex;
  }

  .logo.right {
    display: none;
  }
}

.logo {
  font-weight: bold;
}

@media (max-width: 900px) {
  .logo.right {
    display: block;
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: white;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.2;
}
/* INTRO */
.intro {
  display: flex;
  padding: 80px 10%;
  gap: 50px;
}

.intro .left {
  flex: 1;
}

.intro .right {
  flex: 1;
}

.intro.full {
  display: block;
}

.buttons a {
  margin-right: 20px;
  text-decoration: underline;
}

/* SERVICES */
.services {
  padding: 80px 10%;
  background: #dbdbdb;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  padding: 20px;
  color: #333;
  transition: all 0.4s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
  background-color: #FFFFFF;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* PROJECTS */
.projects {
  padding: 80px 10%;
  font-family: Arial, sans-serif;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.projects h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 30px;
}

/* Large Left */
.project.large {
  grid-row: span 2;
}

.project img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.project h3 {
  font-size: 22px;
  margin: 15px 0;
}

.project h4 {
  font-size: 16px;
  margin: 12px 0;
}

.project a {
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
}

.project a:hover {
  color: red;
}

/* Responsive */
@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project.large {
    grid-row: auto;
  }
}
/* CTA */
.cta {
  color: white;
  padding: 80px 10%;
  width: 100%;	
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-grid {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
}

.cta button {
  padding: 12px 30px;
  border: 1px solid white;
  background: transparent;
  font-size: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta button:hover {
  background: #0090F8;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro {
    flex-direction: column;
  }

  .services .grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

#nav-menu {
  list-style: none;
gap: 50px;
}

#nav-menu li {
  position: relative;
	margin: 0;
}

/* desktop dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  gap: 30px;
  padding: 0px 0;
  
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown.active .dropdown-menu {
  display: block;
	 opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.dropdown-menu a {
  display: block;
  line-height: 1.4;
  padding: 8px 15px;
  color: #111; /* default color */
  text-decoration: none;
  transition: 0.3s;
	font-size: 14px; 
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: rgba(0, 144, 248, 0.1);
 color: #0090F8;
}

/* mobile dropdown */
@media (max-width: 900px) {

  .dropdown-menu {
    position: static;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    max-height: 0;
    overflow: hidden;

    opacity: 1;
    transform: none;

    transition: max-height 0.3s ease;
	  z-index: 999;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
	  margin-top: 5px;
  }
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (max-width: 900px) {

  #nav-menu {
    align-items: flex-start;   /* 👈 key fix */
    padding: 10px 10px;
	  	  gap: 10px;

  }

  #nav-menu li {
    width: 100%;
	  margin: 0px;
  }

  #nav-menu a {
    display: block;
    width: 100%;
    text-align: left;          /* 👈 aligns all items */
    padding: 10px 0;
	  line-height: 1.2;
  }

  /* indent dropdown items */
  .dropdown-menu a {
    padding: 5px 20px;
	line-height: 1.1;

  }
}

/* DESKTOP ONLY (real mouse devices) */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* COMMON */
.container {
  width: 100%;
  padding-left: 10%;
  padding-right: 0;
}

/* INTRO SECTION */
.about-intro {
  width: 80%;
  margin-left: 10%;

  padding: 100px 0;
  text-align: left;

  opacity: 0;
  transform: translateY(30px);

  animation: smoothFade 0.8s ease-out forwards;
}

@keyframes smoothFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* MISSION VISION OBJECTIVE */
.mvo {
  padding: 80px 0;
}

.mvo .container {
  display: flex;
  gap: 30px;
}

.mvo-box {
  flex: 1;
  padding: 40px;
  border: 1px solid #eee;
  transition: 0.3s;
  background: #fff;
}

.mvo-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mvo-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.mvo-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .mvo .container {
    flex-direction: column;
  }
}