*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}
:root{
  --white:#ffffff;
  --primary:#11d9d8;
  --dark:#0f172a;
  --text:#475569;
  --light-bg:rgba(17,217,216,0.08);
}

body{
  background:var(--white);
  
}
.white{
  color: var(--white);
} 

/* HEADER */
header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:18px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
}

.logo{
  font-size:26px;
  font-weight:700;
  max-width: 200px;
}
.logo img{
  filter: brightness(0) invert(1);
}
img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.logo span{
  color:#11d9d8;
}

nav{
  display:flex;
  gap:25px;
}

/* dropdown container */
.dropdown{
  position:relative;
}
.dropdown .dropbtn{
  display:inline-block;
}
.dropdown-content{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#000;
  flex-direction:column;
  min-width:240px; /* wider dropdown */
  z-index:1000;
}
.dropdown-content a{
  padding:10px 20px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.dropdown:hover .dropdown-content{
  display:flex;
}
nav a{
  text-decoration:none;
  color:#fff;
  font-size:14px;
}

nav a:hover{
  color:#11d9d8;
}

.btn-primary{
  padding:8px 18px; 
  background:#11d9d8;
  color:#000;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* hamburger menu button */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  z-index:1001;
}
.menu-toggle .hamburger{
  display:block;
  width:25px;
  height:2px;
  background:#fff;
  position:relative;
}
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after{
  content:'';
  position:absolute;
  width:25px;
  height:2px;
  background:#fff;
  left:0;
}
.menu-toggle .hamburger::before{ top:-8px; }
.menu-toggle .hamburger::after{ top:8px; }

@media(max-width:992px){
  header{
    padding:18px 20px;
  }
  .hero h1{
    font-size:32px;
  }

  /* show toggle and hide normal nav */
  .menu-toggle{
    display:block;
  }
  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    background:#000;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  nav.open{
    max-height:400px;
  }
  nav a{
    padding:15px 20px;
    border-top:1px solid rgba(255,255,255,0.1);
  }
  .nav-links .btn-primary{
    display:block;
    /* inherits primary button styles */
    margin-left:auto; /* push to end inside flex */
    text-align:center;
  }

@media(max-width:992px){
  .nav-links .btn-primary{
    margin:10px 20px; /* restore margin for vertical layout */
  }
}
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

/* Use real IMG instead of background */
.hero img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
  object-position: top;
}

/* Overlay */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.69);
  z-index:-1;
}

.hero-content{
  max-width:900px;
  padding:20px;
}

.hero h1{
  font-size:48px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
}

.hero h1 span{
  color:#11d9d8;
}

.hero p{
  margin:20px 0 30px;
  color:#ddd;
  line-height:1.6;
}



@media(max-width:992px){
  header{
    padding:18px 20px;
  }
  .hero h1{
    font-size:32px;
  }
}


.about-section{
  padding:100px 20px;
  background:#f9fafa;
}

.container{
  max-width:1200px;
  margin:auto;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE COLLAGE */
.about-images{
  position:relative;
  min-height:500px;
}

.img-box{
  position:absolute;
  overflow:hidden;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.img-main{
  width:70%;
  height:350px;
  top:60px;
  left:0;
  z-index:2;
}

.img-1{
  width:45%;
  height:200px;
  top:0;
  right:0;
}

.img-2{
  width:40%;
  height:180px;
  bottom:40px;
  left:10%;
  z-index: 2;
}

.img-3{
  width:40%;
  height:200px;
  bottom:0;
  right:0;
}

/* CONTENT */
.section-tag{
  color:#11d9d8;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:14px;
}

.about-content h2{
  font-size:36px;
  margin:15px 0 20px;
  line-height:1.3;
}

.about-content p{
  color:#555;
  line-height:1.7;
  margin-bottom:15px;
}

.about-btn,.hero-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  background:#11d9d8;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.about-btn:hover,.hero-btn:hover{
  opacity:0.85;
}

/* STATS */
.about-stats{
  display:flex;
  gap:40px;
  margin-top:50px;
}

.stat{
  border-left:4px solid #11d9d8;
  padding-left:15px;
}

.stat h3{
  font-size:32px;
  margin-bottom:5px;
}

.stat span{
  font-size:14px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-images{
    min-height:400px;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-stats{
    flex-direction:column;
    gap:20px;
  }
}


.services-section{
  padding:100px 20px;
  background:linear-gradient(135deg, #0a0a0a, #111);
  color:#fff;
}



.services-header{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:60px;
}

.services-header h2{
  font-size:36px;
  line-height:1.3;
  margin-bottom:15px;
}

.services-header p{
  color:#aaa;
  line-height:1.6;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}

/* CARD */
.service-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:40px 30px;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:#11d9d8;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#11d9d8;
  transform:scaleX(0);
  transition:0.4s;
}

.service-card:hover::before{
  transform:scaleX(1);
}

.icon{
  font-size:32px;
  margin-bottom:20px;
}

.service-card h3{
  font-size:22px;
  margin-bottom:15px;
}

.service-card p{
  color:#bbb;
  line-height:1.6;
  margin-bottom:20px;
}

.service-card a{
  color:#11d9d8;
  text-decoration:none;
  font-weight:600;
  position:relative;
}

.service-card a::after{
  content:"→";
  margin-left:8px;
  transition:0.3s;
}

.service-card a:hover::after{
  margin-left:14px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .services-header h2{
    font-size:28px;
  }
}


.why-section{
  padding:100px 20px;
  background:linear-gradient(135deg, #001f21e5, #096066);
  color:#fff;
}



.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.section-tag{
  color:#11d9d8;
  font-weight:600;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:1px;
}

.why-content h2{
  font-size:36px;
  margin:15px 0 20px;
  line-height:1.3;
}

.why-content p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:20px;
}

.why-list{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.why-list li{
  margin-bottom:15px;
  color:#ccc;
  line-height:1.6;
  position:relative;
  padding-left:25px;
}

.why-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#11d9d8;
}

.why-btn{
  display:inline-block;
  padding:14px 28px;
  background:#11d9d8;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* RIGHT STATS */
.why-stats{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
}

.stat-card{
  background:#161618;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.05);
  transition:0.4s ease;
}

.stat-card:hover{
  border-color:#11d9d8;
  box-shadow:0 0 25px rgba(10,213,223,0.15);
  transform:translateY(-6px);
}

.stat-card h3{
  font-size:32px;
  margin-bottom:10px;
  color:#11d9d8;
}

.stat-card p{
  color:#bbb;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-stats{
    grid-template-columns:1fr;
  }

  .why-content h2{
    font-size:28px;
  }
}

.value-section{
  padding:100px 20px;
  background:linear-gradient(180deg, #f8fcfd 0%, #eaf9fb 100%);
}


/* HEADER */
.value-header{
  text-align:center;
  max-width:750px;
  margin:auto;
  margin-bottom:60px;
}

.value-header h2{
  font-size:36px;
  line-height:1.3;
  margin-bottom:15px;
  color:#111;
}

.value-header h2 span{
  color:#11d9d8;
}

.value-header p{
  color:#555;
  line-height:1.6;
}

/* GRID */
.value-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

/* CARD */
.value-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
  text-align:center;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.value-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(10,213,223,0.15);
}

.value-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#11d9d8;
  transform:scaleX(0);
  transition:0.4s;
}

.value-card:hover::before{
  transform:scaleX(1);
}

.icon-circle{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:rgba(10,213,223,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#11d9d8;
}

.value-card h3{
  margin-bottom:15px;
  font-size:20px;
  color:#111;
}

.value-card p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
  .value-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .value-grid{
    grid-template-columns:1fr;
  }

  .value-header h2{
    font-size:26px;
  }
}


.tech-section{
  padding:100px 20px;
  background:#0f1113;
  color:#fff;
}


/* HEADER */
.tech-header{
  text-align:center;
  margin-bottom:40px;
}

.tech-header h2{
  font-size:36px;
  margin-bottom:10px;
}

.tech-header p{
  color:#aaa;
}

/* FILTER BUTTONS */
.tech-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:50px;
}

.tech-filters button{
  padding:10px 22px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.15);
  background:transparent;
  color:#ccc;
  cursor:pointer;
  transition:0.3s;
}

.tech-filters button:hover,
.tech-filters button.active{
  background:#11d9d8;
  color:#000;
  border-color:#11d9d8;
}

/* GRID */
.tech-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

/* CARD */
.tech-card{
  background:#16181b;
  padding:35px;
  text-align:center;
  border-radius:15px;
  transition:0.4s ease;
  border:1px solid rgba(255,255,255,0.05);
}

.tech-card:hover{
  transform:translateY(-6px);
  border-color:#11d9d8;
  box-shadow:0 0 20px rgba(10,213,223,0.15);
}

.tech-card h4{
  font-size:18px;
  font-weight:500;
}

/* RESPONSIVE */
@media(max-width:992px){
  .tech-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .tech-grid{
    grid-template-columns:1fr;
  }
}



/* Section */
.glass-portfolio {
  position: relative;
  padding: 100px 8%;
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  overflow: hidden;
}


/* Soft Glow Background Shapes */
.glass-portfolio::before,
.glass-portfolio::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.glass-portfolio::before {
  background: #6c63ff;
  top: -120px;
  left: -120px;
  opacity: 0.25;
}

.glass-portfolio::after {
  background: #ff6b6b;
  bottom: -120px;
  right: -120px;
  opacity: 0.25;
}

/* Make content appear above background glow */
.glass-portfolio > * {
  position: relative;
  z-index: 1;
}

/* Header */
.glass-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.glass-header span {
  color: #ffffffaa;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.glass-header h2 {
  font-size: 40px;
  margin: 15px 0;
}

.glass-header p {
  color: #333;
  font-size: 16px;
}

/* Grid */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Card */
.glass-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 40px rgba(10, 213, 223, 0.15);
}


/* Image */
.glass-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.glass-content {
  padding: 25px;
}

.glass-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.glass-content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.glass-content a {
  text-decoration: none;
  color: #11d9d8;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  transition: 0.3s;
}

.glass-content a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .glass-header h2 {
    font-size: 28px;
  }
}


.industries-section{
  padding:100px 20px;
  background:#f5f5f5;
}

.industries-container{
  max-width:1200px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header h2{
  font-size:40px;
  font-weight:700;
}

.section-header h2 span{
  color:#11d9d8;
}

.section-header p{
  color:#666;
  margin-top:10px;
  font-size:16px;
}

.industries-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
}

.industry-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  height:420px;
  display:flex;
  align-items:flex-end;
  transition:0.4s ease;
}

.industry-card img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  top:0;
  left:0;
  transition:0.4s ease;
}

.industry-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:60%;
  background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.industry-content{
  position:relative;
  padding:30px;
  color:#fff;
  z-index:2;
}

.industry-content h3{
  font-size:24px;
  margin-bottom:12px;
}

.industry-content p{
  font-size:14px;
  color:#ddd;
  margin-bottom:18px;
  line-height:1.6;
}

.industry-content a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.industry-content a:hover{
  text-decoration:underline;
}

.industry-card:hover{
  transform:translateY(-8px);
}

.industry-card:hover img{
  transform:scale(1.08);
}

@media(max-width:992px){
  .section-header h2{
    font-size:28px;
  }
}


.testimonial-section {
  padding: 80px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #11d9d8;
}

.testimonial-section p.subtitle {
  color: #555;
  margin-bottom: 50px;
  font-size: 16px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 213, 223, 0.2);
}

.quote-icon {
  font-size: 50px;
  color: #11d9d8;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #11d9d8;
  object-fit: cover;
}

.client-details h4 {
  margin: 0;
  font-size: 16px;
  color: #111;
}

.client-details span {
  font-size: 13px;
  color: #11d9d8;
}

@media (max-width: 600px) {
  .testimonial-section h2 {
    font-size: 26px;
  }
}

.cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #001f23, #003f45);
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 650px;
}

.cta-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #d0f9fb;
  line-height: 1.6;
}

.cta-button {
  margin-top: 30px;
}

.cta-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #11d9d8;
  color: #002b2f;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(10, 213, 223, 0.5);
}

.cta-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(10, 213, 223, 0.8);
}

.cta-button a span {
  font-size: 18px;
}

/* Decorative Glow Circles */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(10, 213, 223, 0.2);
  filter: blur(100px);
  z-index: 1;
}

.cta-section::before {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -100px;
}

.cta-section::after {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -120px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-container {
    text-align: center;
    flex-direction: column;
  }
}



.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 30px 20px;
    border-bottom: 4px solid #11d9d8; /* Accent bar at very bottom */
  }

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

  .footer-column {
    flex: 1;
    min-width: 200px;
  }

  /* Headings with your specific color */
  .footer-column h3 {
    color: #11d9d8;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: capitalize;
  }

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

  .footer-column ul li {
    margin-bottom: 15px;
  }

  .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.9;
  }

  .footer-column ul li a:hover {
    color: #11d9d8;
    opacity: 1;
  }

  /* Bottom Copyright & Logo Section */
  .footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-logo img {
    height: 50px; /* Adjust based on your logo design */
    width: auto;
    display: block;
  }

  /* Placeholder for logo if no image found */
  .logo-placeholder {
    color: #11d9d8;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .copyright-text {
    color: #777;
    font-size: 0.85rem;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-column {
      min-width: 40%;
    }
  }

  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-column {
      text-align: center;
    }
  }



/*contact us*/
 .contact-section{
        padding:80px 10%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:50px;
    }

    .contact-info{
        flex:1;
    }

    .contact-info h2{
        font-size:40px;
        margin-bottom:20px;
        color:#111;
    }

    .contact-info p{
        font-size:16px;
        color:#555;
        margin-bottom:30px;
        line-height:1.6;
    }

    .info-box{
        margin-bottom:20px;
    }

    .info-box h4{
        color:#11d9d8;
        margin-bottom:5px;
    }

    .contact-form{
        flex:1;
        background:#fff;
        padding:40px;
        border-radius:15px;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
    }

    .contact-form h3{
        margin-bottom:25px;
        color:#11d9d8;
        font-size:24px;
    }

    .input-group{
        margin-bottom:20px;
    }

    .input-group input,
    .input-group textarea{
        width:100%;
        padding:12px 15px;
        border:1px solid #ddd;
        border-radius:8px;
        outline:none;
        font-size:14px;
        transition:0.3s;
    }

    .input-group input:focus,
    .input-group textarea:focus{
        border-color:#11d9d8;
        box-shadow:0 0 5px rgba(17,217,216,0.3);
    }

    .input-group textarea{
        resize:none;
        height:120px;
    }

    .btn{
        background:#11d9d8;
        color:#fff;
        border:none;
        padding:12px 30px;
        border-radius:30px;
        cursor:pointer;
        font-size:15px;
        transition:0.3s;
        text-decoration: none;
        display: inline-flex;
        gap: 10px;
        align-items: center;
    }

    .btn:hover{
        background:#0fc2c1;
    }

    @media(max-width:992px){
        .contact-section{
            flex-direction:column;
        }
    }

/*about us*/
/* ===== WHO WE ARE ===== */
.who-we-are{
    padding:100px 8%;
    background:#f6f6f6;
    font-family:Arial, Helvetica, sans-serif;
}

.who-we-are .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT COLLAGE */
.about-left{
    position:relative;
    width:520px;
    max-width:100%;
}

.main-img img{
    width:100%;
    border-radius:14px;
    display:block;
}

/* floating circle images */
.float{
    position:absolute;
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* positions */
.f1{top:-30px; left:40px;}
.f2{top:-40px; right:70px;}
.f3{bottom:-40px; left:60px;}
.f4{bottom:-35px; right:30px;}
.f5{top:45%; right:-45px; transform:translateY(-50%);}

/* dotted path */
.path{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
}

/* RIGHT CONTENT */
.about-right{
    max-width:520px;
}

.tag{
    color:var(--primary);
    font-weight:600;
    border-bottom:3px solid var(--primary);
    padding-bottom:5px;
    display:inline-block;
    margin-bottom:18px;
}

.about-right h2{
    font-size:40px;
    margin-bottom:20px;
    color:#111;
}

.about-right p{
    color:#555;
    line-height:1.7;
    margin-bottom:18px;
}


/* responsive */
@media(max-width:992px){
    .container{
        flex-direction:column;
        text-align:center;
    }

    .about-right h2{
        font-size:30px;
    }

    .float{
        width:70px;
        height:70px;
    }
}




.why-best {
  background: #11d9d8;
  padding: 100px 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-best .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 320px;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #004f4f;
}

.left h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.left p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.right {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service .icon {
  font-size: 28px;
  background: #ffffff;
  color: #11d9d8;
  padding: 10px;
  border-radius: 10px;
}

.service h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service p {
  font-size: 14px;
  line-height: 1.6;
}

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

  .left h2 {
    font-size: 32px;
  }
}

.stats-section {
  background: #ffffff; /* light beige background */
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
}

.stats-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: wrap;
  gap: 10px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 220px;
}

.icon {
  font-size: 40px;
}

.stat-box h2 {
  font-size: 42px;
  color: #11d9d8;  /* dark blue number */
  margin: 0;
  font-weight: 700;
}

.stat-box p {
  font-size: 16px;
  color: #555;
  margin-top: 5px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    justify-content: center;
    text-align: center;
  }

  .stat-box {
    flex-direction: column;
  }
}


.team-section {
  background: #fff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}


.section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  color: #ccc;
  line-height: 1.7;
  font-size: 16px;
}

.team-grid {
  margin: auto;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  position: relative;
  width: 420px;
  border-radius: 15px;
  overflow: hidden;
  background: #eaeaea;
}

.team-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to right, #11d9d8, #0c9b9b);
}

.card-overlay h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
}

.card-overlay span {
  font-size: 14px;
  color: #ddd;
}

.linkedin {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #009594;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}

/* Hover Effect */
.team-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.team-card:hover .card-overlay {
  background: linear-gradient(to right, #11d6d5, #056666);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 34px;
  }

  .team-card {
    width: 100%;
  }
}


.future-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(120deg, #ffffff 55%, #11d9d8 45%);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.future-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.bg-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 150px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.left-content {
  flex: 1;
  min-width: 300px;
}

.left-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.left-content h2 span {
  color: #11d9d8;
}

.left-content p {
  margin-top: 20px;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #11d9d8;
  color: #000;
}

.right-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.white-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.white-box h3 {
  font-size: 38px;
  color: #11d9d8;
  margin-bottom: 10px;
}


.technology-section {
  background: #11d9d8;
  padding: 100px 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.small-container{
  text-align: center;
  max-width: 900px;
  margin: auto;
}

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

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.section-title p {
  margin-top: 12px;
}

.slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.slide-track {
  display: flex;
  width: calc(250px * 22);
  animation: scroll 30s linear infinite;
}

.slide-track .tech-card {
  width: 200px;
  margin: 0 25px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(17, 217, 216, 0.2);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.slide-track .tech-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: auto;
  margin-bottom: 10px;
}

.slide-track .tech-card span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.slide-track .tech-card:hover {
  border-color: #11d9d8;
  box-shadow: 0 10px 30px rgba(17, 217, 216, 0.3);
  transform: translateY(-5px);
}
.slide-track:hover{
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slide-track-reverse {
  display: flex;
  width: calc(250px * 22);
  animation: scrollReverse 30s linear infinite;
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


.process-section {
  background: linear-gradient(135deg, #000000, #0f2027);
  padding: 100px 20px;
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}

.section-header h5 {
  color: #11d9d8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 {
  font-size: 42px;
  margin: 10px 0;
}

.section-header p {
  color: #bbb;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #11d9d8;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #11d9d8;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  gap: 40px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: #11d9d8;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 0 25px rgba(17, 217, 216, 0.8);
  z-index: 2;
}

.timeline-content {
  width: 40%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid rgba(17, 217, 216, 0.2);
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(17, 217, 216, 0.4);
}

.timeline-content h3 {
  color: #11d9d8;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #ccc;
}

.process-btn {
  text-align: center;
  margin-top: 40px;
}

/* floating call button always visible */
.floating-call{
  display:block;
  position:fixed;
  bottom:20px;
  right:20px;
  background:#11d9d8;
  color:#000;
  padding:12px;
  border-radius:50%;
  font-size:20px;
  text-decoration:none;
  line-height:1;
  z-index:10000;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
  .floating-call:active,
  .floating-call:hover{
    background:#0ec5c4;
  }
  /* hide the nav call link when floating button present */
  .nav-links .btn-primary{
    display:none;
  }

/* mobile dropdown adjustments */
@media(max-width:992px){
  .dropdown-content{
    display:block !important;
    position:static;
    background:transparent;
    border:none;
  }
  .dropdown-content a{
    padding-left:40px;
    border-top:none;
  }
}



/*hire team page*/

/* Experts */ 
.experts{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90vh;
    background:linear-gradient(135deg,#ffffff 40%, rgba(17,217,216,0.15));
}

.experts-text{
    max-width:50%;
}

.experts img{
    width:45%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* TEAM CARDS */
.hire-team {
    position: relative;
    padding: 120px 8%;
    background: linear-gradient(135deg, #88f9ff 0%, #129f9f 40%, rgba(17, 217, 216, 0.44) 100%);
    overflow: hidden;
}

/* Decorative Glow */
.hire-team::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #11d9d8;
    filter: blur(180px);
    opacity: 0.15;
    top: -100px;
    left: -100px;
}

.title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}
.title-2{
  font-size: 48px;
  line-height: 1.2;
}
.choose-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* Card Design */
.white-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17,217,216,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.white-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(17,217,216,0.25);
    border-color: #11d9d8;
}

/* Top Accent Line */
.white-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #11d9d8, #0fc4c3);
}

.white-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0f172a;
}

.white-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.white-card ul li {
    margin-bottom: 12px;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.white-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #11d9d8;
    font-weight: bold;
}

/* Button */
.hire-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #11d9d8, #0fc4c3);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(17,217,216,0.3);
}

.hire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(17,217,216,0.4);
}

/* Responsive */
@media(max-width:768px){
    .title{
        font-size: 30px;
    }
}


/* PROCESS */
.process{
    background:var(--light-bg);
    border-radius:30px;
    padding: 100px 8%;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    margin-top:60px;
    text-align:center;
}

.step-number{
    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    box-shadow:0 10px 25px rgba(17,217,216,0.3);
}

/* WHY US */
.why-hire-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.why-hire-item{
    background:#fff;
    padding:25px;
    border-radius:15px;
    border-left:5px solid var(--primary);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-hire-item:hover{
    transform:translateY(-6px);
}

/* CTA */
.cta-section-2{
    padding:100px 8% 0;
}
.cta-section-2 .cta{
    background:linear-gradient(135deg,var(--primary),#0fc4c3);
    padding:80px 30px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.cta-section-2 .cta h2{
    color:#fff;
}

.cta-section-2 .cta .btn{
    background:#fff;
    color:var(--primary);
    margin-top:20px;
    font-weight:600;
}

.cta-section-2 .cta .btn:hover{
    background:#f1f1f1;
}

/* RESPONSIVE */
@media(max-width:900px){
    .experts{
        flex-direction:column;
        text-align:center;
        padding-top:60px;
    }

    .experts-text{
        max-width:100%;
        margin-bottom:40px;
    }

    .experts img{
        width:100%;
    }
}


/*CAREER SECTION */
.career-section{
    padding:90px 8%;
    background:#000;
    color:#fff;
}
.space{
  padding:90px 8%;
}

/* TOP CONTENT */
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#11d9d8;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#bbb;
    font-size:18px;
    line-height:1.8;
}

/* GRID */
.career-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.career-card{
    background:linear-gradient(135deg,#111 40%, rgba(17,217,216,0.12));
    border:1px solid rgba(17,217,216,0.25);
    border-radius:20px;
    padding:35px;
    transition:0.4s ease;
    min-height:260px;
}

.career-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(17,217,216,0.18);
    border-color:#11d9d8;
}

/* ICON */
.icon-box{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(17,217,216,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
    color:#11d9d8;
}

/* TEXT */
.career-card h3{
    font-size:22px;
    margin-bottom:18px;
}

.career-card p{
    color:#bbb;
    line-height:1.7;
    font-size:16px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .career-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .career-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }
}
/* SECTION */
.join-team{
    padding:90px 8%;
    text-align:center;
    background:#f3f3f3;
}

/* TITLE */
.join-team h2{
    font-size:54px;
    font-weight:700;
    margin-bottom:30px;
    color:#111;
}

.join-team h2 span{
    color:#11d9d8;
}

/* TEXT */
.join-team p{
    max-width:950px;
    margin:0 auto 20px;
    font-size:18px;
    color:#444;
    line-height:1.8;
}

/* TITLE */
.section-spacer{
    text-align:center;
    margin-bottom:70px;
}

.section-spacer h2{
    font-size:52px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.3;
}

.section-spacer h2 span{
    color:#11d9d8;
}

.section-spacer p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:#555;
    line-height:1.8;
}

/* GRID */
.job-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

/* CARD */
.job-card{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);
    border:1px solid rgba(17,217,216,0.15);
    border-radius:24px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.job-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#11d9d8,#0bb3b2);
}

.job-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(17,217,216,0.18);
}

/* ICON */
.job-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(17,217,216,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
    color:#11d9d8;
}

/* TEXT */
.job-card h3{
    font-size:28px;
    color:#111;
    margin-bottom:18px;
}

.job-info{
    color:#555;
    font-size:16px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* BUTTON */
.apply-btn{
    display:inline-block;
    margin-top:22px;
    padding:13px 28px;
    background:#11d9d8;
    color:#000;
    text-decoration:none;
    border-radius:35px;
    font-weight:600;
    transition:0.3s ease;
}

.apply-btn:hover{
    background:#0bb3b2;
    transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-header h2{
        font-size:38px;
    }
}