* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    @font-face {
      font-family: 'Brittany';
      src: url('fonts/Brittany.otf');
    }

    body {
      background: #f0c785;
      color: #111;
      overflow-x: hidden;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Navbar Styles */
    .navbar {
      background: #072638;
      color: white;
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 15;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .navbar .container {
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo h1 {
      margin-left: 10px;
      font-size: 26px;
      font-weight: 600;
    }

    .logo img {
      width: 50px;
      margin-right: 5px;
    }

    .logo span {
      color: #f0c785;
    }

    nav ul {
      color: white;
      display: flex;
      gap: 20px;
      list-style: none;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    nav a:hover {
      color: #f0c785;
      border-bottom: solid 1px #f0c785;
    }
    nav ul li {
      position: relative;
    }

    nav ul .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #072638;
      min-width: 200px;
      z-index: 1000;
      border-radius: 8px;
      border: solid white 1px;
    }

    nav ul .dropdown-content li {
      padding: 10px;
    }

    nav ul .dropdown-content li a {
      display: block;
      color: white;
    }

    nav ul li:hover .dropdown-content {
      display: block;
    }
@media (max-width: 768px) {
  nav ul .dropdown-content {
    left: -100px;
    min-width: 180px;
  }
}
nav ul .dropdown::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

nav ul .dropdown:hover::after {
  transform: rotate(180deg);
}
    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      padding: 100px 20px;
      background: #f0c785;
      min-height: 100vh;
      position: sticky;
      top: -70%;
      z-index: 4;
    }

    .hero-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      width: 100%;
    }
    @media (max-width: 768px) {
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px;
  }
}
    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero-text h1 {
      font-size: 100px;
      color: #072638;
      margin-left: 30px;
      line-height: 0.8;
    }

    .hero h2 {
      color: #072638;
      font-size: 70px;
      margin-top: 50px;
      font-family: 'Brittany', cursive;
    }

    .home {
      display: flex;
      justify-content: space-between;
      margin-top: 50px;
    }

    .home h3 {
      width: 80%;
      color: #072638;
      font-weight: 1000;
      margin-right: 10%;
      margin-left: 4%;
      padding-right: 10%;
    }

    .home p {
      font-size: 2.2rem;
      margin-left: 10%;
      color: #072638;
      margin-bottom: -50px;
    }

    .btn {
      width: 30%;
      font-size: 1.5rem;
      background: #072638;
      color: white;
      padding: 10px 25px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.3s ease;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    .hero-media img {
      width: 600px;
      max-width: 100%;
      border-radius: 15px;
    }

    .services {
      color: #072638;
      background: #ffffff;
      padding: 80px 20px;
      position: sticky;
      top: -180%;
      z-index: 6;
    }

    .services h2 {
      color: #072638;
      text-align: center;
      margin-bottom: 60px;
      font-size: 32px;
    }

    .cards {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      text-align: center;
    }

    .card {
  background: #fff;
  height: auto;
  min-height: 350px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
  .card-icon {
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 48px;
  color: #f0c785;
  transition: color 0.3s ease;
}

.card:hover .card-icon i {
  color: #072638;
}
    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 40px;
    }

    .card:hover {
      background: #f0c785;
      color: #072638;
      transform: translateY(-8px);
    }

    .card:hover h3, .card:hover p {
      color: #072638;
    }

    /* Portfolio Section */
    .portfolio {
      background: #f0c785;
      padding: 80px 20px;
      color: #072638;
      position: sticky;
      top: -300%;
      z-index: 7;
    }

    .portfolio h2 {
      text-align: center;
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .portfolio-subtitle {
      text-align: center;
      font-size: 20px;
      margin-bottom: 60px;
      opacity: 0.8;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .portfolio-item {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .portfolio-item:hover {
      transform: translateY(-10px);
    }

    .portfolio-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .portfolio-content {
      padding: 30px;
    }

    .portfolio-content h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #072638;
    }

    .portfolio-content p {
      font-size: 16px;
      color: #666;
      margin-bottom: 20px;
    }

    .portfolio-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: #f0c785;
      color: #072638;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }

    /* Technologies Section */
    .technologies {
      background: #072638;
      color: white;
      padding: 80px 20px;
      position: sticky;
      top:-60%;
      z-index: 8;
    }

    .technologies h2 {
      text-align: center;
      font-size: 42px;
      margin-bottom: 60px;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .tech-item {
      background: rgba(240, 199, 133, 0.1);
      padding: 30px 20px;
      border-radius: 15px;
      transition: transform 0.3s ease;
    }

    .tech-item:hover {
      transform: translateY(-5px);
      background: rgba(240, 199, 133, 0.2);
    }

    .tech-item i {
      font-size: 48px;
      color: #f0c785;
      margin-bottom: 15px;
    }

    .tech-item h4 {
      font-size: 16px;
      font-weight: 500;
    }

    /* About Section */
    .about {
      background: white;
      padding: 80px 20px;
      color: #072638;
      position: sticky;
      top: -120%;
      z-index: 9;
    }

    .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .about h2 {
      font-size: 42px;
      margin-bottom: 30px;
    }

    .about p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-top: 60px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 48px;
      font-weight: 700;
      color: #f0c785;
      display: block;
    }

    .stat-label {
      font-size: 16px;
      color: #666;
      margin-top: 10px;
    }

    .contact {
      background: #f0c785;
      padding: 80px 20px;
      color: #072638;
      position: sticky;
      top: -100%;
      z-index: 10;
    }

    .contact h2 {
      text-align: center;
      font-size: 42px;
      margin-bottom: 60px;
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .contact-info h3 {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-size: 16px;
    }

    .contact-item i {
      background: #072638;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      font-size: 24px;
      margin-bottom: 30px;
      color: #072638;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid #eee;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #f0c785;
    }

    .submit-btn {
      width: 100%;
      background: #072638;
      color: white;
      padding: 15px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-btn:hover {
      background: #0a3a4f;
    }

    /* Footer */
    .footer {
      background: #072638;
      color: white;
      padding: 60px 20px 20px;
      position: sticky;
      top: 0;
      z-index: 12;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h3 {
      font-size: 20px;
      margin-bottom: 20px;
      color: #f0c785;
    }

    .footer-section p,
    .footer-section li {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: #f0c785;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: #f0c785;
      color: #072638;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .social-links a:hover {
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
      color: #ccc;
    }

    .footer-bottom p {
      margin-bottom: 10px;
    }

    /* Responsive Design */
    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #072638;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }
      
      nav ul.active {
        display: flex;
      }
      
      .hamburger {
        display: block;
      }
      
      .hero-text h1 {
        font-size: 60px;
      }
      
      .hero h2 {
        font-size: 40px;
      }
      
      .home {
        flex-direction: column;
        gap: 20px;
      }
      
      .home p {
        font-size: 1.5rem;
        margin-left: 0;
      }
      
      .btn {
        width: 100%;
        font-size: 1.2rem;
      }
      
      .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
      
      .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }

    html {
      scroll-behavior: smooth;
    }
.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .hero {
    top: -70% !important;
  }
  
  .services {
    top: -40% !important;
  }
  
  .portfolio {
    top: -150% !important;
  }
  
  .technologies {
    top: -20% !important;
  }
  
  .about {
    top: -50% !important;
  }
  
  .contact {
    top: -50% !important;
  }
}
 @media (min-width: 768px) {
  .hero-section {
    top: -60% !important;
  }
  
  .platforms-section {
    top: -100% !important;
  }
  
  .services-section {
    top: -50% !important;
  }
  
  .success-section {
    top: -20% !important;
  }
  
  .process-section {
    top: -60% !important;
  }
  
  .cta-section {
    top: -20% !important;
  }
}