body {
  margin: 0;
  font-family: Arial, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


nav {
  background: #f4f9ff;
  border-bottom: 2px solid #1e63d9;
  padding: 0.8rem 2rem;
  position: fixed;
  z-index: 1000;
  width: 100%;
}




.logo-link {
  display: flex;
  align-items: center;  /* vertically align logo + text */
  text-decoration: none; /* remove underline */
}

.logo-img {
  width: 50px;   /* adjust logo size */
  height: auto;
  margin-right: 10px; /* space between logo and text */
}

.logo-text {
  font-size: 20px;   /* adjust text size */
  font-weight: bold;
  color: black;
  font-family: Arial, sans-serif;
}


@media (max-width: 768px){
  .logo-img{
    width: 30px;
    height: 5vh;
  }
  .logo-text{
    font-size: 15px;
  }
}



.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}






.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #1e63d9;
  transform: scale(1.1);
}

.btn {
  padding: 8px 16px;
  background: #5c8ef2;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  display: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.btn-1 {
  padding: 12px 33px;
  background: #5c8ef2;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-1:hover {
  transform: scale(1.1);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      color: #ffffff;

}

.mobile-menu a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;

  }
  .hamburger {
    display: block;
  }
  .mobile-menu.show {
    display: flex;
    
  }
  .btn-1 {
    display: none;
  }
  .btn {
    display: inline-block;
  }
}



.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Full screen height */
  background: url("background_image.png") no-repeat center center/cover; /* Replace with your image path */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(36, 108, 249, 0.85),
    rgba(249, 111, 75, 0.85)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.highlight {
  /* background: #f96f4b; */
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(to right, #246cf9, #f96f4b);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.1); /* Zoom in */
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.5s ease;
}

.btn-secondary:hover {
  opacity: 0.9;
  color: black;
}

/* Trust Line */
.trust-line {
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.partners {
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin: 8px 0;
  }
}

.services-section {
  text-align: center;
  padding: 50px 20px;
}
.services-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.service-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* .service-card ul {
  padding-left: 20px;   /* ensures bullets don’t overlap content */
/* margin: 0 0 20px;
  font-size: 14px;
  color: #555;          /* text color */
/* list-style-position: inside;
}   */
/* .service-card ul li::marker { */
/* color: #007bff;       bullet color */
/* font-size: 16px;      make bullet slightly bigger if needed */
/* } */

.service-card p {
  line-height: 1.3;
  font-size: 0.9rem;
}

.service-card ul {
  list-style: none; /* remove default bullets */

  margin: 0 0 0px;
  font-size: 14px;
  color: #555;
}

.service-card ul li {
  margin: 5px 0;
  position: relative;
  padding-left: 15px; /* space for custom dot */
  line-height: 1.7;
}

.service-card ul li::before {
  content: "•"; /* custom bullet */
  color: #007bff; /* bullet color */
  position: absolute;
  left: 0;
  font-size: 16px;
  line-height: 1;
  list-style-position: inside;
  padding-left: 85px;
}

.learn-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #007bff;
  border-radius: 6px;
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 15px;
  width: 100%;
}
.learn-btn:hover {
  background: #007bff;
  color: #fff;
}
@media (max-width: 600px) {
  .services-section h2 {
    font-size: 24px;
  }
  .service-card {
    padding: 20px;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
  .service-card ul li::before{
    display: none;
  }
  .learn-btn{
    transition: background 0.3s ease, color 0.3s ease;

  }
  .learn-btn:hover {
  background: #007bff;
  color: #fff;
}
}




@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}


.promo-container {
  text-align: center; /* centers text & button */
  padding: 0rem 1rem;
  max-width: 700px;
  margin: 0 auto; /* centers container horizontally */
}

.promo-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.promo-text {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.promo-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #2563eb;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 0.3s ease;
  display: inline-block;
  transition: all 0.3s ease;
}

.promo-button:hover {
  background-color: #1e40af;
  transform: scale(1.1); /* Zoom in */
}

/* Responsive */
@media (min-width: 768px) {
  .promo-title {
    font-size: 2rem;
  }
  .promo-text {
    font-size: 1.125rem;
  }
  .promo-button {
    font-size: 1.125rem;
  }
}

.stats-section {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.stats-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blue {
  color: #2563eb; /* Blue */
}

.orange {
  color: #f97316; /* Orange */
}

.stat-label {
  font-size: 1rem;
  color: #4b5563;
}

/* Responsive layout */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.case-studies {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.case-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0rem;
  color: #111827;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.card-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.highlight-box {
  display: inline-block;
  background: #356ce2;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 100%;
}

.card-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #374151;
  display: flex;
  align-items: center;
}

.card-list li::before {
  content: "●";
  color: #2563eb;
  font-size: 0.7rem;
  margin-right: 8px;
}

/* Responsive */
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #f97316; /* orange stars */
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.quote-icon {
  font-size: 2rem;
  color: #60a5fa; /* light blue */
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.highlight-badge {
  display: inline-block;
  background: #f68738;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.client-info {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

.client-role {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.join-section {
  text-align: center;
  padding: 2rem 1rem;
}

.join-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.join-text {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.join-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #2563eb, #f97316);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .join-heading {
    font-size: 1.5rem;
  }
  .join-text {
    font-size: 1rem;
  }
  .join-btn {
    width: 100%;
    max-width: 320px;
  }
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* Form */
.form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-box p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
  height: 100px;
}

.form-submit {
  margin-top: 1rem;
}

.form-submit button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, #2563eb, #f97316);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.form-box small {
  display: block;
  margin-top: 1rem;
  color: #6b7280;
  font-size: 0.85rem;
  text-align: center;
}

/* Contact Info */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-card i {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.info-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.info-card p,
.info-card a {
  margin: 0.3rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Urgent Project */
.urgent-card {
  background: linear-gradient(90deg, #2563eb, #f97316);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.urgent-card h4 {
  margin-bottom: 0.5rem;
}

.urgent-btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  background: #ef4444;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.urgent-btn:hover {
  background: #dc2626;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #1f2937;
  padding: 2rem 2rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Left Column */
.footer-logo {
  height: 12px;
  width: 180px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #d1d5db;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #1d4ed8;
}

/* Footer Links */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-bottom a {
  color: #d1d5db;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #f97316;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
