/* 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 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: linear-gradient(135deg, #e0f7ff, #f9fcff);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  text-align: left;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  z-index: 2;
  flex-wrap: wrap;
}


.hero-text {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 1;
  text-align: center;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}


.hero-tagline {
  font-size: 1rem;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 1px;
}




.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 */
.card-button {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s ease;
}
.card-button:hover {
  background-color: #444;
}

.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 350px;
    max-width: 200px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
  }
  
  .about-text {
    flex: 1 1 400px;
    
  }
  
  .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;
    }
    .hero-decor-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, #66bfff, #0d6efd);
  border-radius: 50%;
  opacity: 0.06;
  bottom: -100px;
  right: -150px;
  z-index: 0;
  animation: floatBlob 18s infinite ease-in-out;
}
.hero {
  position: relative;
  padding: 8rem 2rem 10rem;
  background: linear-gradient(135deg, #e0f7ff, #f9fcff);
  overflow: hidden;
  min-height: 90vh;
}



.hero-text {
  flex: 1 1 550px;
  z-index: 3;
}

.hero-image {
  flex: 1 1 500px;
  z-index: 3;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
    min-height: 300px; /* Add this */
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Tagline */
.hero-tagline {
  font-size: 1.1rem;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Heading */
.hero h1 {
  font-size: 3.5rem;
  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);
}

/* Paragraph */
.hero p {
  font-size: 1.15rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.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);
}
.cta-button.secondary {
  background: transparent;
  border: 2px solid #0d6efd;
  color: #0d6efd;
}
.cta-button.secondary:hover {
  background: #0d6efd;
  color: #fff;
}

/* Decorative blobs */
.hero-decor-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0d6efd, #66bfff);
  opacity: 0.06;
  z-index: 1;
  filter: blur(60px);
}
.decor-left {
  top: -80px;
  left: -100px;
}
.decor-right {
  bottom: -80px;
  right: -80px;
}
.decor-top {
  top: 20%;
  right: 30%;
  background: radial-gradient(circle at center, #ff4d6d, #ffcce0);
  opacity: 0.07;
  width: 250px;
  height: 250px;
}

/* Particle effect */
.hero-particles::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#0d6efd 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.02;
  z-index: 0;
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: #0d6efd;
  animation: bounce 2s infinite;
  z-index: 5;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-image {
  flex: 1 1 300px;
  /* margin-bottom: 100px; */
  }
}
@media (max-width: 768px) {
  .hero-image img {
    max-width: 90%;
  }
  .hero-decor-blob {
    width: 300px;
    height: 300px;
  }
  .blob {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
  }
  .scroll-down {
    font-size: 2rem;
  }
  
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    
  }

  .hero-text,
  .hero-image {
    margin: 0;
    padding: 0;
  }
  .hero-inner {
  margin-top: -110px;
}
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .scroll-down {
    font-size: 1.8rem;
  }
}
html {
  scroll-behavior: smooth;
}
.service-card .icon {
  transition: transform 0.3s ease;
}
.service-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}
.project-showcase {
  padding: 4rem 1rem;
  background: #f9fbff;
  text-align: center;
}
.project-title {
  font-size: 2.5rem;
  font-family: 'Pacifico', cursive;
  color: #0d3b66;
  margin-bottom: 2rem;
}
.scroll-wrapper {
  position: relative;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
}
.card-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.card-slider::-webkit-scrollbar {
  display: none;
}
.project-card {
  flex: 0 0 calc(25% - 1.5rem); /* 4 cards on desktop */
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.2);
}
.project-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.project-card p {
  font-weight: 600;
  color: #0d3b66;
}
.scroll-btn {
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}
.scroll-btn:hover {
  background-color: #0b5ed7;
}
.scroll-btn.left {
  position: absolute;
  left: -20px;
}
.scroll-btn.right {
  position: absolute;
  right: -20px;
}

/* Tablet */
@media (max-width: 992px) {
  .project-card {
    flex: 0 0 calc(33.33% - 1.5rem); /* 3 cards */
  }
  
}
/* Mobile */
@media (max-width: 768px) {
  .project-card {
    flex: 0 0 calc(80%); /* 1.2 cards to show horizontal overflow */
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* About Logo */
.about-logo {
  max-width: 100%;
  width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.about-image {
  flex: 1 1 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  
}
.about-section {
  background: #f0f8ff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-logo {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

.about-logo img {
  max-height: 250px;
  width: auto;
}

.about-content {
  flex: 1 1 100%;
  max-width: 800px;
}

.about-title {
  font-size: 2.5rem;
  color: #0d6efd;
  font-family: 'Pacifico', cursive;
  margin-bottom: 20px;
}

.highlight-text {
  color: #ff4d6d;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-logo img {
    max-height: 180px;
  }
  .hero {
  min-height: 100vh;
}
   .logo {
    font-size: 1.rem
  }
}
.site-footer {
  background-color: #0d3b66;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-container h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #ffcccb;
}

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

.footer-container ul li {
  margin-bottom: 0.5rem;
}

.footer-container ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container ul li a:hover {
  color: #ffffff;
}

.footer-contact a {
  color: #ffcccb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
  color: #66bfff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #bbb;
}

/* Fade-in animation */
.site-footer.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.site-footer.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 768px) {
  header {
    padding: 0.8rem 1.2rem;
  }

  .logo {
    font-size: 1.3rem; /* smaller logo for mobile */
  }

  .desktop-nav a {
    font-size: 0.85rem; /* smaller nav links */
    padding: 6px 12px;
  }

  .menu-toggle {
    font-size: 1.5rem; /* smaller hamburger icon */
  }

  .side-menu a {
    font-size: 1rem; /* slightly smaller for side menu */
    padding: 10px 14px;
  }

  .side-menu a.contact {
    font-size: 1rem;
  }

  .close-btn {
    font-size: 1.8rem;
  }
  .hero {
  margin-top: -16px; /* same space as header height */
}

}
