@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #2475c7;
  color: #222;
  scroll-behavior: smooth;
}

    /* Header */
.color{
  background:linear-gradient(90deg,#2475c7,#0b1c8c);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 18px;
  flex-wrap:wrap;
}

.logo img{height:50px;padding-left: 10px;}


/* Navbar Base */
    .navbar {
      padding: 12px 40px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 6px 10px;
      border-radius: 6px;
    }

    /* Hover effect */
    .nav-links a:hover {
      background: #ffcc00;
      color: #111;
    }

    /* Active page highlight */
    .nav-links a:hover,
    .nav-links a.active {
      background: #ffcc00;
      color: #111;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #222;
      min-width: 180px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      flex-direction: column;
      overflow: hidden;
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 15px;
      color: #fff;
      transition: 0.3s;
    }

    .dropdown-menu li a:hover {
      background: #ffcc00;
      color: #111;
    }

    /* Show dropdown on hover */
    .dropdown:hover .dropdown-menu {
      display: flex;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
        border-radius: 10px;
        padding: 15px 0;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
        cursor: pointer;
        color: #fff;
        font-size: 28px;
        position: absolute;
        right: 30px;
      }
    }

    .menu-toggle {
      display: none;
    }



/* Call button */
.call button{
  background:#ffd700;
  color:#0b1c8c;
  border:none;
  padding:10px 14px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.call button:hover{transform:scale(1.05);}

/* HERO SECTION */
.architecture-hero {
  background-image: url(3D-Design.png);
  padding: 190px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 38px;
  color: #ffd700;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-cta {
  background: #0b1c8c;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-cta:hover {
  background: #ffd700;
  color: #111;
}

.hero-image img {
  max-width: 440px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* PROCESS SECTIONS */
.process {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  flex-wrap: wrap;
  gap: 30px;
}

.reverse { flex-direction: row-reverse; }

.process-text {
  flex: 1;
  min-width: 300px;
}

.process-text h3 {
  font-size: 24px;
  color: #2475c7;
  margin-bottom: 10px;
}

.process-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.slider {
  width: 45%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slide-container {
  display: flex;
  transition: transform 0.8s ease;
}

.slide-container img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.prev { left: 10px; }
.next { right: 10px; }

/* TOOLS SECTION */
.card {
  background: #fff;
  max-width: 1150px;
  margin: 70px auto;
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tools h2, .pricing h2, .testimonials h2, .cta-card h2 {
  text-align: center;
  color: #0b1c8c;
  font-size: 28px;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  text-align: center;
}

.tool img {
  width: 100%;
  gap: 100px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.tool h4 {
  color: #2475c7;
  font-size: larger;
}

/* LIVE PROJECTS */
.live-section {
  padding: 60px 20px;
  background: #f9faff;
  text-align: center;
}

.live-title {
  font-size: 32px;
  color: #0b1c8c;
  margin-bottom: 40px;
}

.live-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.live-card {
  background: #fff;
  width: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.live-card:hover {
  transform: translateY(-6px);
}

.live-slider {
  height: 200px;
  overflow: hidden;
}
.live-slide-container {
  display: flex;
  transition: transform 0.8s ease;
}
.live-slide-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.live-card h4 {
  color: #2475c7;
  font-size: 20px;
  margin: 10px 0;
}
.live-card p {
  padding: 0 15px 20px;
  font-size: 15px;
  color: #444;
}

/* PRICING SECTION */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.plan:hover {
  transform: translateY(-5px);
}

.plan.featured {
  background: #0b1c8c;
  color: white;
}
.plan.featured .price {
  color: #ffd700;
}

.plan h3 {
  margin-bottom: 10px;
  color: inherit;
}
.price {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #2475c7;
}
.plan ul {
  list-style: none;
}
.plan li {
  margin: 8px 0;
  color: inherit;
}

/* TESTIMONIALS */
.quote {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

/* CTA CARD */
.cta-card {
  text-align: center;
}
.cta-card p {
  font-size: 16px;
  margin-bottom: 20px;
}
.cta {
  background: #2475c7;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.cta:hover {
  background: #ffd700;
  color: #111;
}

/* FOOTER */
.footer {
  background: #0b1c8c;
  color: white;
  padding: 16px 20px;
  text-align: center;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}
.social a {
  color: white;
  margin: 0 8px;
  font-size: 18px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .process {
    flex-direction: column;
  }
  .slider {
    width: 100%;
  }
}
