/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fff;
    padding-top: 80px; /* offset for fixed header */
  }
  
  /* Fixed Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  /* Logo */
  .logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0d3b66;
  }
  
  /* Desktop Nav */
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .desktop-nav a:hover {
    background-color: #e0f0ff;
    color: #0d3b66;
    transform: scale(1.05);
  }
  
  .desktop-nav a.contact {
    background-color: #0d6efd;
    color: white;
  }
  
  .desktop-nav a.contact:hover {
    background-color: #0b5ed7;
    transform: scale(1.08);
  }
  
  /* Menu Toggle (Mobile) */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Side Menu (Mobile) */
  .side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 6rem 1.5rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    z-index: 999;
  }
  
  .side-menu.open {
    transform: translateX(0);
  }
  
  .side-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 18px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .side-menu a:hover {
    background-color: #e0f0ff;
    color: #0d3b66;
    transform: scale(1.05);
  }
  
  .side-menu a.contact {
    background-color: #0d6efd;
    color: white;
    text-align: center;
    font-weight: 600;
  }
  
  .side-menu a.contact:hover {
    background-color: #0b5ed7;
    transform: scale(1.08);
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
  }
  
  .close-btn:hover {
    transform: rotate(90deg);
    color: #0d6efd;
  }
  
  /* Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .side-menu,
    .menu-overlay {
      display: block;
    }
  }
  
  @media (min-width: 769px) {
    .side-menu,
    .menu-overlay {
      display: none !important;
    }
  }

  

  /* css-hero */
  /* Hero Section */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #e0f7ff, #f9fcff);
  overflow: hidden;
 
}





.hero h1 {
  font-size: 3rem;
  color: #0d3b66;
  font-family: 'Pacifico', cursive;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: #0d6efd;
  font-weight: bold;
  text-shadow: 1px 1px 8px rgba(13, 110, 253, 0.3);
}

.hero p {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 12px 28px;
  background-color: #0d6efd;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(13, 110, 253, 0.2);
}

.cta-button:hover {
  background-color: #0b5ed7;
  transform: scale(1.05);
}

/* Fancy animated blob background */
.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 30% 30%, #0d6efd, #66bfff);
  border-radius: 50%;
  opacity: 0.1;
  animation: floatBlob 12s infinite ease-in-out;
  top: -100px;
  left: -100px;
  z-index: 1;
}

@keyframes floatBlob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 60px) scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .blob {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
  }
}


/* css-services */
/* Services Section */
.services {
    padding: 4rem 2rem;
    background: #f9fbff;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0d3b66;
    font-family: 'Pacifico', cursive;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center; /* Ensures center alignment */
  }
  
  .service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.2rem;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 420px;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.2);
  }
  
  .service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0d3b66;
  }
  
  .service-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.2rem;
  }
  
  .card-button {
    display: inline-block;
    padding: 10px 22px;
    background-color: #0d6efd;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .card-button:hover {
    background-color: #0b5ed7;
  }
  
  .card-button.disabled {
    background-color: #ccc;
    pointer-events: none;
  }
  .service-card .icon i {
    color: #0d6efd;
    font-size: 2.5rem;
  }

  /* about-us-css */
  /* Fancy Card Style for About */
.about-card {
    background: #f0f8ff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-wrapper {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
  }
  
  .about-image {
    flex: 1 1 300px;
    max-width: 400px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
  }
  
  .about-text {
    flex: 1 1 400px;
    font-family: 'Poppins', cursive;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: #0d6efd;
    font-family: 'Pacifico', cursive;
    margin-bottom: 20px;
  }
  
  .about-text .brand-color {
    color: #ff4d6d;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-wrapper {
      flex-direction: column;
      padding: 30px;
    }
  
    .about-text h2 {
      font-size: 2rem;
    }
  
    .about-text p {
      font-size: 1rem;
    }
  }
/* ======= CTA SECTION ======= */
.cta-section {
    background: linear-gradient(135deg, #6f8dfd, #c7d2fe);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-container {
    max-width: 900px;
    margin: auto;
    z-index: 2;
    position: relative;
  }
  
  .cta-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Poppins', cursive;
  }
  
  .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    background: white;
    color: #4c63ff;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .cta-button:hover {
    background: #4c63ff;
    color: white;
    transform: scale(1.05);
  }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }