   

    body {
      background: #f5f7fb;
      color: #222;
    }

  
    /* Hero */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      color: #fff;
      padding: 20px;
    }

    .hero-content {
      max-width: 800px;
    }

    .hero h1 {
      font-size: 54px;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 25px;
    }

  

    .btn:hover {
      background: #0844a5;
    }

    /* Sections */
    section {
      padding: 0px 0px;
    }

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

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

    .title h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #0b57d0;
    }

    .title p {
      color: #666;
    }

    /* About */
    .about-box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      align-items: center;
    }

    .about-box img {
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .about-text {
      font-size: 17px;
      line-height: 1.8;
      color: #444;
    }

    /* Services */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: #fff;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      transition: 0.3s;
      text-align: center;
    }

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

    .card h3 {
      margin: 15px 0 10px;
    }

    .card p {
      color: #666;
      line-height: 1.6;
    }

    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    /* Contact */
    .contact-box {
      max-width: 700px;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .contact-box input,
    .contact-box textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      outline: none;
    }

    .contact-box button {
      padding: 12px 25px;
      border: none;
      background: #0b57d0;
      color: #fff;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #0b57d0;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .toggle {
        display: block;
      }

   

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

      .hero p {
        font-size: 16px;
      }

      .about-box {
        grid-template-columns: 1fr;
      }

      .title h2 {
        font-size: 28px;
      }
    }

  :root{
    --bg:#fff; --text:#1f2937; --muted:#6b7280; 
    --primary:#d97706; --primary-dark:#b45309; --border:#e5e7eb; --shadow:0 10px 30px rgba(0,0,0,.08);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{font-family:Arial,sans-serif;background:#f8fafc;color:var(--text);}

  /* Topbar */
  .topbar{
    background:#0f172a;color:#fff;font-size:14px;padding:10px 16px;
  }
  .topbar .wrap{
    max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;
  }
  .topbar span{opacity:.9; color:#fff; }
  .topbar span a{color:#fff; text-decoration: none;}

  /* Header */
  .header{
    position:sticky;top:0;z-index:1000;
    background:rgba(255,255,255,.92);backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);box-shadow:0 2px 20px rgba(0,0,0,.03);
  }
  .header .wrap{
    max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 16px;
  }

  /* Logo */
  .brand{display:flex;align-items:center;gap:12px;min-width:0;}
  .logo{
    width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--primary),#f59e0b);
    color:#fff;display:grid;place-items:center;font-weight:700;box-shadow:var(--shadow);
  }
  .logo img {
  width: 48px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),#f59e0b);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}
  .brand-text h1{font-size:18px;line-height:1.1;margin-bottom:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .brand-text p{font-size:13px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

  /* Navigation */
  nav{display:flex;align-items:center;gap:24px;}
  .nav-links{list-style:none;display:flex;gap:22px;}
  .nav-links li {list-style:none;display:flex;gap:22px;}
  .nav-links a{font-size:15px;color:var(--text);padding:8px 0;position:relative;font-weight:600;text-decoration: none;}
  .nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--primary);transition:.25s ease;}
  .nav-links a:hover::after{width:100%;}
  .nav-links a:hover{color:var(--primary-dark);}

  /* Buttons */
  .actions{display:flex;align-items:center;gap:12px;}
  .btn{display:inline-flex;align-items:center;justify-content:center;padding:11px 18px;border-radius:999px;font-weight:700;border:1px solid transparent;cursor:pointer;transition:.25s ease;white-space:nowrap;}
  .btn-primary{background:var(--primary);color:#fff;}
  .btn-primary:hover{background:var(--primary-dark);}
  .btn-outline{border:1px solid var(--border);background:#fff;color:var(--text);}
  .btn-outline:hover{border-color:var(--primary);color:var(--primary-dark);}

  /* Mobile menu toggle */
  .menu-toggle{display:none;width:46px;height:46px;border-radius:14px;border:1px solid var(--border);background:#fff;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 5px 16px rgba(0,0,0,.05);}
  .menu-icon{width:20px;height:14px;position:relative;}
  .menu-icon span{position:absolute;left:0;right:0;height:2px;background:var(--text);border-radius:999px;transition:.25s ease;}
  .menu-icon span:nth-child(1){top:0;}
  .menu-icon span:nth-child(2){top:6px;}
  .menu-icon span:nth-child(3){bottom:0;}

  /* Mobile panel */
  .mobile-panel{display:none;border-top:1px solid var(--border);background:#fff;box-shadow:var(--shadow);}
  .mobile-panel.open{display:block;}
  .mobile-panel .inner{padding:12px 16px 18px;}
  .mobile-links{list-style:none;display:grid;gap:8px;margin-bottom:14px;}
  .mobile-links a{display:block;padding:8px 14px;border-radius:12px;background:#f9fafb;font-weight:600; text-align: left;}
  .mobile-links a:hover{background:#f3f4f6;color:var(--primary-dark); }
  .mobile-actions{display:flex;gap:10px;flex-wrap:wrap;}
  .mobile-actions .btn{flex:1 1 160px;}

  @media (max-width:900px){
    nav,.actions{display:none;}
    .menu-toggle{display:inline-flex;}
  }
  
    .slider{position:relative;overflow:hidden;margin-top:0px;}
    .slides{display:flex;transition:transform 0.5s ease-in-out;}
    .slide{min-width:100%;height:500px;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;color:#fff;font-size:32px;font-weight:700;text-shadow:2px 2px 10px rgba(0,0,0,.5);}
    .slider-buttons{position:absolute;top:50%;left:0;right:0;display:flex;justify-content:space-between;transform:translateY(-50%);padding:0 10px;}
    .slider-btn{background:rgba(0,0,0,0.3);border:none;color:#fff;padding:8px 16px;border-radius:8px;cursor:pointer;transition:.3s;}
    .slider-btn:hover{background:rgba(0,0,0,0.6)}

    @media(max-width:900px){nav,.actions{display:none}.menu-toggle{display:inline-flex}.mobile-panel.open{display:block} .topbar span{opacity:.9; color:#fff; text-align: center;
  width: 100%;} .topbar{display:none;}}
    @media(max-width:600px){.logo{width:46px;height:46px}.brand-text h1{font-size:16px}.brand-text p{font-size:12px} .topbar span{opacity:.9; color:#fff; text-align: center;
  width: 100%;}.slide{font-size:24px;height:172px}.topbar{display:none;}}

  

    .about-section {
      width: 100%;
      padding: 80px 20px;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      border-radius: 28px;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
      padding: 35px;
    }

    .about-content h5 {
      display: inline-block;
      background: #e0f2fe;
      color: #0369a1;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .about-content h2 {
      font-size: 44px;
      line-height: 1.15;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .about-content h2 span {
      color: #2563eb;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #475569;
      margin-bottom: 18px;
    }

    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 28px 0;
    }

    .feature-box {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 18px;
      padding: 18px;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }

    .feature-box:hover {
      transform: translateY(-4px);
      border-color: #93c5fd;
    }

    .feature-box h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #111827;
    }

    .feature-box span {
      font-size: 14px;
      color: #64748b;
      line-height: 1.6;
    }

    .about-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 10px;
    }

  

    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(37, 99, 235, 0.32);
    }

    .btn-outline {
      background: #fff;
      color: #1d4ed8;
      border: 2px solid #bfdbfe;
    }

    .btn-outline:hover {
      background: #eff6ff;
    }

    .about-image {
      position: relative;
      min-height: 520px;
      border-radius: 28px;
      overflow: hidden;
      background: url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    }

    .about-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.35));
    }

    .about-card {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 2;
      background: rgba(255, 255, 255, 0.92);
      padding: 22px;
      border-radius: 18px;
      display: grid;
      gap: 8px;
    }

    .about-card h3 {
      font-size: 22px;
      color: #0f172a;
    }

    .about-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #475569;
    }

    .stats {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .stat {
      background: #eff6ff;
      padding: 12px 16px;
      border-radius: 14px;
      min-width: 110px;
      text-align: center;
    }

    .stat strong {
      display: block;
      font-size: 22px;
      color: #1d4ed8;
    }

    .stat span {
      font-size: 13px;
      color: #475569;
    }

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

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

      .about-image {
        min-height: 420px;
      }
    }

    @media (max-width: 600px) {
      .about-section {
        padding: 55px 14px;
      }

      .about-container {
        padding: 20px;
        border-radius: 22px;
      }

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

      .about-features {
        grid-template-columns: 1fr;
      }

      .about-btns {
        flex-direction: column;
      }

    

      .about-image {
        min-height: 360px;
      }

      .about-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }
    }

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

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 10px 0;
}

.card-content p {
  color: #666;
  font-size: 14px;
}

.buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}



.whatsapp {
  background: #25D366;
}

.view {
  background: #ff6600;
}

/* Mobile */
@media(max-width:600px){
  .section h2 {
    font-size: 24px;
  }
}


/* SECTION */
.middle-section {
  padding: 60px 8%;
  text-align: center;
}

.middle-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.middle-section p {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

/* BUTTON */
.card-content a {
  text-decoration: none;
  background: linear-gradient(45deg, #ff7e00, #ffb347);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.card-content a:hover {
  background: linear-gradient(45deg, #ff5a00, #ffa500);
}

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

  
   

    .heading {
      text-align: center;
      margin-bottom: 24px;
    }

    .heading h2 {
      font-size: 2rem;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .heading p {
      font-size: 1rem;
      color: #64748b;
    }

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

    .card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    }

    .card-top {
      background: linear-gradient(135deg, #0f766e, #14b8a6);
      color: #fff;
      padding: 22px;
    }

    .card-top h3 {
      font-size: 1.35rem;
      margin-bottom: 8px;
    }

    .badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.18);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.9rem;
      margin-top: 6px;
    }

    .card-body {
      padding: 22px;
    }

    .card-body ul {
      list-style: none;
      margin-bottom: 18px;
    }

    .card-body li {
      padding: 8px 0;
      border-bottom: 1px solid #e5e7eb;
      font-size: 0.95rem;
      color: #334155;
    }

    .card-body li:last-child {
      border-bottom: none;
    }

    .btn-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }


    .btn-whatsapp {
      background: #25d366;
      color: #fff;
    }

    .btn-whatsapp:hover {
      background: #1fb857;
    }

    .btn-view {
      background: #0f172a;
      color: #fff;
    }

    .btn-view:hover {
      background: #1e293b;
    }

    .note {
      margin-top: 18px;
      background: #eff6ff;
      border-left: 4px solid #2563eb;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 0.95rem;
      color: #1e3a8a;
    }

    @media (max-width: 600px) {
      .section {
        padding: 16px;
      }

      .heading h2 {
        font-size: 1.6rem;
      }

      .card-top h3 {
        font-size: 1.2rem;
      }

      .btn {
        width: 100%;
        flex: unset;
      }
    }
 
 
 .footer{
background:#111;
color:#fff;
padding:60px 0 20px;
font-family:Arial, sans-serif;
}

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

.footer h3{
margin-bottom:20px;
font-size:20px; background: none;
color:#ffb300; text-align: left;
}

.footer p{
font-size:14px;
line-height:1.7;
color:#ccc;
}

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

.footer ul li{
margin-bottom:10px; text-align: left;
}

.footer ul li a{
text-decoration:none;
color:#ccc;
font-size:14px;
transition:0.3s;
}

.footer ul li a:hover{
color:#ffb300;
padding-left:5px;
}

.social-icons a{
display:inline-block;
margin-right:10px;
color:#fff;
background:#333;
width:35px;
height:35px;
text-align:center;
line-height:35px;
border-radius:50%;
transition:0.3s;
}

.social-icons a:hover{
background:#ffb300;
color:#000;
}

.footer-bottom{
border-top:1px solid #333;
margin-top:40px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#aaa;
}

.contact-info i{
color:#ffb300;
margin-right:8px;
}

@media(max-width:768px){

.footer{
text-align:center;
}

.social-icons{
margin-top:10px;
}

}
.icon-bar {
  position: fixed; 
    right: 2%;
  top: 80%; z-index: 999;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.whatsapp {
  color: white;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 999;
}
.call-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #ff5722;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 999;
}