* { margin:0; padding:0; box-sizing:border-box; font-family:Poppins,sans-serif; }

body { 
  background: #ffffff;
  color:#333;
  min-height: 100vh;
}

:root {
  --orange:#23cbf5;
  --dark:#0de3ca;
  --blue:#0c2d48;
}

.bg-logo{
  position:fixed;
  inset:0;
  background:url('images/logo.jpg') center/400px no-repeat;
  opacity:0.06;
  z-index:-1;
}

/* HEADER */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 8%;
  background:var(--dark);
  position:sticky;
  top:0;
  z-index:10;
}
header img{ height:40px; }
header span{ color:#fff; font-weight:700; }
nav a{
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

/* HERO */
.hero{
  height:90vh;
  position:relative;
  overflow:hidden;
  background: url('images/logo.jpg') center/contain no-repeat;
  background-position: center center;
}
.slides img{
  position:absolute;
  width:120%;
  height:120%;
  object-fit:cover;
  opacity:0;
  left:50%;
  transform:translateX(-150%);
  transition:transform 1s ease-in-out, opacity 1s;
}
.slides img.active{
  opacity:1;
  transform:translateX(-50%);
}
.slides img.prev{
  transform:translateX(50%);
}

.hero-text{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.3);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}
.hero-text h2{ font-size:42px; color:var(--blue); }

.btn{
  margin-top:20px;
  padding:12px 30px;
  background:var(--orange);
  color:#000;
  text-decoration:none;
  font-weight:600;
}

/* ANGLED SECTIONS */
.angled-white{ background:linear-gradient(135deg,#ffffff 0%,#f0f4f8 100%);clip-path:polygon(0 0,100% 0,100% 90%,0 100%)}
.angled-orange{ background:linear-gradient(135deg,#23cbf5 0%,#0c8fcc 50%,#0de3ca 100%);color:#fff;clip-path:polygon(0 10%,100% 0,100% 100%,0 90%)}
.angled-dark{ background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);color:#fff;clip-path:polygon(0 0,100% 10%,100% 100%,0 100%)}

section{
  padding:80px 10%;
  text-align:center;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

ul {
  list-style-type: none;
}

/* ABOUT */
.features{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:30px;
}
.features i{ font-size:40px; color:var(--blue); }

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

/* SERVICES */
.services {
  background: linear-gradient(rgba(35, 235, 245, 0.8), rgba(35, 200, 245, 0.8)), url('images/hero1.jpg');
  background-size: cover;
  background-position: center;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:30px;
  margin-top:40px;
}
.service-grid div{
  background:rgba(255,255,255,.15);
  padding:25px;
}

/* GALLERY */
.gallery {
  background: #ffffff;
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark), var(--orange), var(--blue));
}

.gallery-grid{
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
}
.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slide 20s infinite linear;
}
.gallery-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3), 0 0 20px rgba(35, 203, 245, 0.5);
  transition: box-shadow 0.3s ease;
}
.gallery-container img:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.5), 0 0 30px rgba(35, 203, 245, 0.8);
}
@keyframes slide {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* CONTACT */
form{
  max-width:500px;
  margin:auto;
}
input,textarea,button{
  width:100%;
  margin-bottom:15px;
  padding:12px;
}
button{
  background:var(--blue);
  border:none;
  font-weight:700;
}

/* FOOTER */
footer{
  background:#7b7979;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* FOOTPRINT */
.footprint {
  background: 
    linear-gradient(135deg, rgba(35, 203, 245, 0.9) 0%, rgba(13, 227, 202, 0.9) 100%),
    url('images/g40.webp');
  background-size: cover;
  background-position: center;
}

.map {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

/* TEAM */
.team {
  background: #ffffff;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  text-align: center;
  max-width: 280px;
}

.team-member:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--blue);
}

.team-member h3 {
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.team-member p {
  color: #666;
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}
