* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.navbar {
  background: whitesmoke;
  color:black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 33px;
  font-weight: bolder;
}
.hamburger{
  display: none;
}

.quote {
  font-family: 'coronet';
  font-size: 18px;
  padding-right: 60px;
  padding-top: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 38px;
  padding-right: 90px;
  font-size: 18px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d4ff;
}
.hero {
  height: 100vh; /* Full screen */
  width: 100%;
  background: linear-gradient(500deg, #3f013f, #950286);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  flex-wrap: wrap;
  box-sizing: border-box;
  min-height: 80vh; 
}
.hero-image {
  max-width: 35%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}


/* Add this class to trigger animation */
.hero-image.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;

}

.hero-image img.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 50px;
  font-family: Playfair Display;
  margin-bottom: 10px;
  
}

.hero-content p {
  font-size: 23px;
}
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: 50%;
  flex: 1;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  margin-top: 70px;

}

.hero-content.reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #1e1e2f;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #00b2d6;
}


.btn {
  background-color: #00d4ff;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;

}

.btn:hover {
  background-color: #00a6c4;
}

.home-section {
  display: block;
}

.home-section.active {
  display: block;
}
.tech-section {
  background: #f8fcfd;
  padding: 60px 20px;
  text-align: center;
}

.tech-heading {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
}

.tech-title {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.tech-title span {
  color: #8e329c;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tech-tabs .tab {
  background: #f1f6f9;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.tech-tabs .active {
  background: #8e329c;
  color: #fff;
}

.tech-content {
  background: #f2f9fb;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: none;
  overflow: hidden;
}
.tech-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tech-content h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.tech-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.tech-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.tech-logos div {
  text-align: center;
}

.tech-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.tech-logos img:hover {
  transform: scale(1.1);
}

.tech-logos p {
  font-size: 14px;
  margin: 0;
}
.about-section {
  padding: 100px 50px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 80px;
}

.about-container {
  display: flex;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-container.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-image img {
  width: 500px;
  border-radius: 25px;
  object-fit: cover;
}

.about-text {
  max-width: 600px;
  margin-left: 200px;
  padding-top: 0px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.learn-btn {
  display: inline-block;
  background: #8e329c;
  color: white;
  padding: 13px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  
}

.learn-btn:hover {
  background: #00b2d3;
}
.services-section {
  padding: 100px 50px;
  background: #f1f5fd;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.services-left {
  flex: 1 1 40%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.services-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.services-left p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.services-btn {
  display: inline-block;
  background: #8e329c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.services-btn:hover {
  background: #00b2d3;
}

.services-right {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-left: 20px;
  transform: translateX(30px); /* Slight shift to the right */
}

.service-card {
  background:rgb(241, 240, 240);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-8px);
}

.service-card img {
  height: 70px;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #042997;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}
.services-left.show {
  opacity: 1;
  transform: translateY(0);
}
/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 10px 5px 5px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin-bottom: 20px;
  color: #bbb;
  margin-right: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  text-align: left;
}

.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.link-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column li {
  margin-bottom: 8px;
}

.link-column a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  color: #aaa;
}
/*Responsive*/
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px 30px;
  }

  .nav-links {
    flex-direction: column;
    padding-right: 0;
    gap: 15px;
    font-size: 16px;
  }


  .hero {
    flex-direction: column;
    padding: 100px 20px 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 150px;
  }
  .hero-image{
    max-width: 100%;
    margin-bottom: 50px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .tech-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .about-section {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    width: 100%;
  }

  .about-text {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }

  .services-section {
    padding: 60px 30px;
  }

  .services-container {
    flex-direction: column;
  }

  .services-right {
    margin-left: -55px;
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 350px) {
  .navbar {
    padding: 5px 15px;
  }

  .quote {
    display: none;
  }

  .logo {
    font-size: 20px;
    padding-right: 160px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    gap: 10px;
  }
  .nav-links.show {
    display: flex;
  }
  
  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    z-index: 100;
  }
  
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-btn, .btn, .learn-btn, .services-btn {
    width: 100%;
    text-align: center;
  }

  .tech-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .footer {
    padding: 8px 10px;
    font-size: 12px;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-logo p {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .social-icons a {
    padding: 6px 8px;
    font-size: 11px;
    margin-right: 10px;
  }

  .footer-container {
    gap: 10px;
    padding-bottom: 20px;
  }
  
}
@media (max-width: 550px) {
  .navbar {
    padding: 5px 15px;
  }

  .quote {
    display: none;
  }

  .logo {
    font-size: 20px;
    padding-right: 160px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    gap: 10px;
  }
  .nav-links.show {
    display: flex;
  }
  
  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    z-index: 100;
  }
  
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-btn, .btn, .learn-btn, .services-btn {
    width: 100%;
    text-align: center;
  }

  .tech-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .footer {
    padding: 8px 10px;
    font-size: 12px;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-logo p {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .social-icons a {
    padding: 6px 8px;
    font-size: 11px;
    margin-right: 10px;
  }

  .footer-container {
    gap: 20px;
  }

  /* New styles for the hero-image */
  .hero-image {
    display: none;
  }
  
}
