/* Reset and Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f8fafc;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: #f8fafc;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  color: #a91b60;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link i {
  margin-right: 6px;
}

.nav-link:hover {
  color: #a91b60;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #a91b60;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #a91b60;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(images/bg.png) no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 100px 20px 50px;
  z-index: 0;
  position: relative;
  margin-bottom: 90px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-left: 90px;
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #ffffff;
  color: #a91b60;
}

.btn-primary,
.send-message {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #a91b60;
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #a91b60;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-illustration {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.tech-illustration i {
  font-size: 8rem;
  opacity: 0.8;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #a91b60;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.about-image {
  display: flex;
  justify-content: center;
}

.team-illustration {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  background: linear-gradient(135deg, #a91b60, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.team-illustration i {
  font-size: 6rem;
}

/* Services Section */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a91b60, #1d4ed8);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #a91b60, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-icon i {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card li {
  color: #64748b;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Opportunities Section */
.opportunity-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.opportunity-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.opportunity-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.opportunity-image {
  flex: 0 0 40%;
  max-width: 40%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.opportunity-text {
  flex: 0 0 55%;
  max-width: 55%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}
.opportunity-text p {
  margin-bottom: 10px;
}

.opportunity-image.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .opportunity-image,
  .opportunity-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px 2rem;
  }
}

/* Goals  Section*/
.goals-section {
  margin: 6rem 0;
}

.goals-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  margin-top: 3rem;
  padding-left: 1rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.goal-icon {
  min-width: 50px;
  height: 50px;
  background-color: #a91b60;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.goal-content h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.goal-content p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content i {
  font-size: 2rem;
  color: #a91b60;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #64748b;
  font-size: 0.9rem;
}

.rating {
  color: #fbbf24;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #a91b60;
  margin-top: 0.25rem;
}

.contact-item h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: #64748b;
  line-height: 1.6;
}

.contact-form {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a91b60;
}

.form-group:nth-child(2),
.form-group:nth-child(3) {
  flex-direction: column;
}

.form-group:nth-child(2) input,
.form-group:nth-child(3) textarea {
  width: 100%;
}

/* Footer */
.footer {
  background: #f8fafc;
  padding: 60px 0 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #a91b60;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.footer-section p {
  color: #000;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-services i {
  margin-right: 8px;
  margin-bottom: 12px;
  color: #a91b60;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #86164c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #a91b60;
  transform: translateY(-2px);
}

.footer-section h3 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a91b60;
}

.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-footer i {
  color: #a91b60;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 50px;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    width: 80%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .tech-illustration {
    width: 200px;
    height: 200px;
  }

  .tech-illustration i {
    font-size: 5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-text p {
    width: 80%;
    margin: 0 auto 20px;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-group {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .opportunity-text p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hidden-left,
.hidden-right {
  opacity: 0;
}

.hidden-left {
  transform: translateX(-30px);
}

.hidden-right {
  transform: translateX(30px);
}

.fade-left.show {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-right.show {
  animation: fadeInRight 0.6s ease-out forwards;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card.delay-1 {
  transition-delay: 0.1s;
}
.service-card.delay-2 {
  transition-delay: 0.2s;
}
.service-card.delay-3 {
  transition-delay: 0.3s;
}
.service-card.delay-4 {
  transition-delay: 0.4s;
}

/* Hover effects for better interactivity */
.service-card:hover .service-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
