/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  color: white;
  width: 100%;
  overflow-x: hidden;
}

/* SECTION 1 */
.hero {
  background: linear-gradient(rgba(70, 30, 150, 0.6), rgba(70, 30, 150, 0.6)), 
              url('Images/Page1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  display: flex;
  justify-content: center;
  padding: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li {
  font-size: 16px;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}

nav ul li:hover {
  opacity: 1;
}

.content {
  flex: 1; /* take remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
  padding: 20px;
}

.content h5 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
}

.content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: #4f46e5;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #3730a3;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  transition: 0.3s;
}

.dot.active {
  opacity: 1;
}

/* SECTION 2 */
.section-two {
  background: url('Images/Page2.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: white; /* ensures text stays visible */
}

.section-two .inner {
  max-width: 800px;
}

.section-two h5 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.section-two h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
}

.section-two p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0 auto;
}

/* SECTION 3 */
.section-three {
  background: linear-gradient(rgba(50, 20, 100, 0.6), rgba(50, 20, 100, 0.6)), 
              url('Images/PAge3.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.section-three img {
  max-width: 100%;
  height: auto;
  flex: 1 1 400px;
}

.section-three .text {
  flex: 1 1 400px;
  color: white;
}

.section-three h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.section-three p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.dots-section3 {
  display: flex;
  justify-content: center; 
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.dot-section3 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  transition: 0.3s;
}

.dot-section3.active {
  opacity: 1;
}

/* SECTION 4 */
.section-four {
  background: url('Images/Page4.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
  color: white;
}

.section-four .left {
  flex: 1 1 400px;
  max-width: 500px;
}

.section-four .left h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-four .left p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.section-four .right {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.form-box {
  background: white;
  color: #333;
  border-radius: 10px;
  padding: 30px 25px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.form-box .tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  border-bottom: 1px solid #eee;
}

.form-box .tabs span {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
}

.form-box .tabs .active {
  color: #000;
  border-bottom: 2px solid #333;
}

.form-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}

.form-box .btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  background: #00d1b2;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
  font-size: 14px;
}

.form-box .btn-primary:hover {
  background: #00bfa5;
}

.form-box .or {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 10px 0;
}

.form-box .btn-twitter {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  background: #1da1f2;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.form-box .btn-twitter:hover {
  background: #0d95e8;
}

/* Form toggle */
.form-content {
  display: none;
}
.form-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 { font-size: 36px; }
  .content p { font-size: 16px; }

  .section-two h1 { font-size: 32px; }
  .section-two p { font-size: 14px; }

  .section-three { flex-direction: column; text-align: center; }
  .section-three h1 { font-size: 28px; }
  .features { justify-content: center; }

  .section-four { flex-direction: column; text-align: center; }
  .section-four .left { max-width: 100%; }
}

@media (max-width: 480px) {
  .content h1 { font-size: 28px; }
  .content p { font-size: 14px; }

  .section-two h1 { font-size: 24px; }
  .section-two p { font-size: 13px; }

  .section-three h1 { font-size: 24px; }

  .section-four {
    padding: 40px 20px;
  }
  .section-four .left h1 {
    font-size: 26px;
  }
  .form-box {
    padding: 20px;
  }
}
.features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 200px;
}

.feature h4 {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 { font-size: 36px; }
  .content p { font-size: 16px; }

  .section-two h1 { font-size: 32px; }
  .section-two p { font-size: 14px; }

  .section-three { flex-direction: column; text-align: center; }
  .section-three h1 { font-size: 28px; }
  .features { justify-content: center; }
}

@media (max-width: 480px) {
  .content h1 { font-size: 28px; }
  .content p { font-size: 14px; }

  .section-two h1 { font-size: 24px; }
  .section-two p { font-size: 13px; }

  .section-three h1 { font-size: 24px; }
}
.section-three img {
    width: 100%;
    height: auto;
}

/* SECTION 5: Testimonials */
.section-five {
  background: #1c0f43;
  padding: 80px 10%;
  text-align: center;
  color: white;
}

.section-five h2 {
  font-size: 28px;
  margin-bottom: 50px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

.testimonials .card {
  background: #241255;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  color: #ddd;
}

.testimonials .card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #333; /* placeholder background */
}

.testimonials .card .text {
  flex: 1;
}

.testimonials .card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.testimonials .card h4 {
  font-size: 13px;
  font-weight: bold;
  color: #aaa;   /* gray font */
  margin: 0;     /* remove default margins */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-five h2 { font-size: 24px; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .testimonials .card { flex-direction: column; align-items: flex-start; }
  .testimonials .card img { margin-bottom: 10px; }
}


/* SECTION 6: Call to Action */
.section-six {
  background: url('Images/Page6.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.section-six::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.section-six .cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.section-six h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-six p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-play {
  background: #ff3b30;
  color: white;
  font-size: 20px;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.btn-get {
  background: #00d1b2;
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
}

.btn-get:hover { background: #00bfa5; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-five h2 { font-size: 24px; }
  .section-six h1 { font-size: 28px; }
}
@media (max-width: 480px) {
  .section-six h1 { font-size: 22px; }
  .btn-get { padding: 10px 20px; font-size: 14px; }
}

/* SECTION 7: Last Works */
.section-seven {
  background: #1c0f43;
  padding: 80px 10%;
  color: white;
}

.section-seven .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-seven h2 {
  font-size: 26px;
}

.section-seven .btn-view {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* Always 2 items per row */
  gap: 25px;
}

.work-card {
  background: #241255;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}

.work-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
}

.work-card h4 {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.work-card p {
  font-size: 14px;
  font-weight: 600;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr; 
  }
}


/* SECTION 8: Team */
.section-eight {
  background: #241255;
  padding: 80px 10%;
  color: white;
  text-align: left; /* left align heading + text */
}

.section-eight h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.section-eight .intro {
  max-width: 700px;
  margin: 0 auto 50px 0; /* left aligned */
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 40px 60px; /* row gap / column gap */
  max-width: 800px; /* keeps grid aligned left, not full screen */
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row for tablets */
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr; /* stack for phones */
    max-width: 100%;
  }
}


/* SECTION 10: Contact Section */
.contact-section {
  position: relative;
  background: url('Images/Contact.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 10%;
  color: white;
}

/* Overlay bluish shade */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 60, 0.6); /* bluish overlay */
  z-index: 1;
}

.contact-wrapper {
  position: relative;
  z-index: 2; /* place content above overlay */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Side */
.contact-left {
  flex: 1;
  padding: 40px 0;
  min-width: 280px;
  color: white;
}

.contact-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-left p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-info p {
  font-size: 14px;
  margin: 8px 0;
}

/* Right Side Form */
.contact-right {
  flex: 1;
  padding: 40px;
  background: white;
  color: #333;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.half {
  width: calc(50% - 10px);
}

.full {
  width: 100%;
}

input,
select,
textarea {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 5px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-send {
  background: #00d1b2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #00bfa5;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .half {
    width: 100%;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* SECTION 9: Pricing Table */
.section-nine {
  background: linear-gradient(to bottom, rgba(20,20,60,0.7), rgba(20,20,60,0.7)),
              url('Images/PricingTable.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 10%;
  color: white;
  text-align: center;
}

.pricing-inner h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.pricing-inner p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.85;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  color: white;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
}

.price sup {
  font-size: 14px;
  opacity: 0.7;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  font-size: 14px;
  margin: 10px 0;
  opacity: 0.9;
}

.btn-start {
  background: #00d1b2;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-start:hover {
  background: #00bfa5;
}

.featured {
  border: 2px solid #ff4081;
}

.featured-btn {
  background: #ff4081;
}

.featured-btn:hover {
  background: #e73370;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
}


/* SECTION 11: Footer */
.footer {
  background: #1c0f43;
  color: white;
  padding: 40px 10%;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.footer-left h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  opacity: 0.8;
}

.footer-right a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  opacity: 0.6;
}

/* Responsive Contact and Pricing */
@media (max-width: 768px) {
  .contact-content,
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }
}
