@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');
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #f0f3fa, #e9eef7);
      color: #333;
    }

    /* 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 --- */
    .contact-hero {
      background: url('servic.png') center/cover no-repeat;
      position: relative;
      color: #fff;
      padding: 230px 0;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .hero-container {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
    }

    .hero-text h1 {
      font-size: 36px;
      color: #fff;
      text-align: center;
    }

    /* ===== Section Layout ===== */
    .process {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      max-width: 1100px;
      margin: 60px auto;
      flex-wrap: wrap;
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .reverse { flex-direction: row-reverse; }

    .process-text { width: 48%; }

    .process-text h3 {
      color: #2475c7;
      margin-bottom: 12px;
      font-size: 24px;
    }

    .process-text p { line-height: 1.8; font-size: 16px; }

    /* ===== Image Slider ===== */
    .slider {
      width: 48%;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .slide-container {
      display: flex;
      transition: transform 0.8s ease-in-out;
    }

    .slide-container img {
      width: 100%;
      height: 340px;
      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;
      cursor: pointer;
      border-radius: 50%;
      font-size: 18px;
      transition: 0.3s;
    }

    .slider button:hover { background: rgba(0,0,0,0.7); }

    .prev { left: 10px; }
    .next { right: 10px; }

    /* ===== Live Project Section ===== */
    .live-section {
      text-align: center;
      padding: 70px 20px;
      background: #fff;
      margin-top: 80px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }

    .live-title {
      font-size: 32px;
      color: #0b1c8c;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .live-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 35px;
    }

    .live-card {
      width: 300px;
      border-radius: 15px;
      background: #f9faff;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .live-card:hover { transform: translateY(-6px); }

    .live-slider {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .live-slide-container {
      display: flex;
      transition: transform 0.8s ease-in-out;
    }

    .live-slide-container img {
      width: 100%;
      object-fit: cover;
      height: 200px;
    }

    .live-card h4 {
      padding: 15px;
      background: #fff;
      color: #2475c7;
      font-size: 20px;
    }

    /* --- Footer --- */
    .footer {
      background: #0b1c8c;
      color: #fff;
      padding: 14px 20px;
    }

    .footer-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer p { font-size: 16px; }
    .social a {
      color: #ffffff;
      margin: 0 10px;
      font-size: 18px;
      text-decoration: none;
    }

    @media(max-width: 768px) {
      .process { flex-direction: column; }
      .slider, .process-text { width: 100%; }
      header { flex-direction: column; gap: 10px; padding: 15px; }
    }
