@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}


/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1rem 20px;
  position: relative;
  max-width: 1200px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.chat-btn {
  background: #e31e24;
  color: white;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.chat-btn:hover {
  background: #c41e3a;
}



.container3 {
  margin: 0 auto;
  max-width: 1200px;

}

/* Footer */
.footer {
  background: #e31e24;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.company-description h4 {
  color: #e31e24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.company-description p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.quick-links h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #e31e24;
}

.contact-section h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.social-section h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #e31e24;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #c41e3a;
}

.social-link.facebook {
  background: #4267b2;
}

.social-link.facebook:hover {
  background: #365899;
}

.social-link.instagram {
  background: #e4405f;
}

.social-link.instagram:hover {
  background: #c13584;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.linkedin:hover {
  background: #005885;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Desktop and Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu ul {
  list-style: none;
  padding: 10px 0;
}

.nav-menu li {
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.nav-menu a:hover {
  background: #f8f9fa;
  color: #e31e24;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url("assets/home-page-hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: left;
    color: white;
}

.hero-text {
    max-width: 800px;
    padding-left: 120px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: start;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-dark {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #E31E24;
    color: white;
}

.btn-primary:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* PHONE SHOWCASE */
.phone-showcase {
  position: relative;
  height: 160vh;
  /* taller so semi-circle + text have space */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #fff;
  overflow: hidden;
}

/* Semi-circle background */
.semi-circle {
  position: absolute;
  bottom: 0;
  /* stick to bottom */
  width: 100%;
  /* wider so it curves nicely */
  height: 900px;
  /* taller to show more arc */

  border-radius: 100% 100% 0 0;
  background: linear-gradient(135deg, #e31e24, #f02128);
  z-index: 1;
  overflow: hidden;
}

/* Dotted overlay */
.dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(white 1.5px, transparent 1.5px);
  background-size: 25px 25px;
  opacity: 0.15;
  z-index: 2;
}

/* BIG Scrolling text */
.scrolling-text {
  position: absolute;
  bottom: 40px;
  /* ensures it shows BELOW phones */
  width: 200%;
  white-space: nowrap;
  display: flex;
  animation: scrollText 25s linear infinite;
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  opacity: 0.25;
  z-index: 2;
  /* below phones but above bg */
}

.scrolling-text span {
  margin-right: 100px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Phones */
.phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  z-index: 5;
  margin-bottom: 160px;
  /* <<< pushes phones UP above bottom */
}

.phone {
  width: 442px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.phone.center {
  transform: translateY(-80px) scale(1.15);
  z-index: 6;
}

.phone.left {
  transform: rotate(-10deg) translateY(40px);
  z-index: 4;
}

.phone.right {
  transform: rotate(10deg) translateY(40px);
  z-index: 4;
}

.phone:hover {
  transform: scale(1.2) !important;
  z-index: 7;
}







/* ABOUT SECTION */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 8%;
  background: #fff;
  position: relative;
  z-index: 3;
}

.about-content {
  max-width: 600px;
}

.about-badge {
  display: inline-block;
  background: #fff5f5;
  color: #e31e24;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about h2 {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about h2 .highlight {
  color: #e31e24;
  font-style: italic;
  font-weight: 600;
}

.about p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.additional-content {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin: 20px 0 40px;
  transition: opacity 0.5s ease;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #e31e24;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #f33036;
}

.about-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}




/* Selling Proposition Section */
.selling-proposition {
  background: #fff;
  padding: 50px 8%;
  padding-bottom: 130px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.selling-proposition-header {
  text-align: center;
  margin-bottom: 60px;
}

.selling-proposition-badge {
  display: inline-block;
  background: #fff5f5;
  color: #e31e24;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.selling-proposition h2 {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.selling-proposition .highlight {
  color: #e31e24;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.selling-proposition p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

.selling-proposition img {
  width: 70%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.selling-proposition img.show {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICES SECTION */
.services {
  background: #fff5f5;
  padding: 120px 8%;
  border-radius: 24px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-badge {
  display: inline-block;
  background: #fff;
  color: #e31e24;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.services h2 {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.services h2 .highlight {
  color: #e31e24;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f2f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #e31e24;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


.process-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.process-badge {
  display: inline-block;
  background: #fff5f5;
  color: #e31e24;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.process-section h2 {
  font-size: 2rem;
  margin: 15px 0 40px;
  font-weight: 600;
}

.process-section h2 span {
  color: #e31e24;
  font-style: italic;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff5f5;
  border: 1px solid #f7e1e1;
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 220px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.card-content {
  text-align: left;
  max-width: 60%;
}

.card-number {
  display: inline-block;
  background: #fff;
  border: 2px solid #ddd;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.learn-more {
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: black;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background: #e31e24;
  color: #fff;
  border-color: #c41e3a;
}

.learn-more::after {
  content: "→";
  margin-left: 8px;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Header */
  .header .container {
    padding: 0.5rem 15px;
  }

  .logo-img {
    height: 45px;
  }

  /* Hero Section */
  .hero h1 .black-text,
  .hero h1 .highlight-text {
    font-size: 42px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .hero-buttons .btn {
    margin: 5px;
  }

  /* Phone Showcase */
  .phone-showcase {
    height: 40vh;
    padding: 0 20px;
  }

  .semi-circle {
    height: 250px;
  }

  .phones {
    gap: 15px;
    margin-bottom: -20px;
    transform: scale(0.45);
  }

  .phone {
    width: 500px;
  }

  .phone.center {
    transform: translateY(-80px) scale(1.15);
  }

  .phone.left {
    transform: rotate(-10deg) translateY(40px);
  }

  .phone.right {
    transform: rotate(10deg) translateY(40px);
  }

  .scrolling-text {
    font-size: 3rem;
    bottom: 5px;
  }

  .hero-text {
    max-width: 800px;
    padding-left: 20px;
}

  /* About Section */
  .about {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 30px;
  }

  .about h2 {
    font-size: 32px;
  }

  .about-image img {
    max-width: 100%;
  }

  /* Services Section */
  .services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services h2 {
    font-size: 32px;
  }

  /* Process Section */
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card img {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }

  .card-content {
    max-width: 100%;
    text-align: center;
  }

  /* Selling Proposition */
  .selling-proposition {
    padding: 40px 20px;
  }

  .selling-proposition h2 {
    font-size: 32px;
  }

  .selling-proposition img {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 3rem 20px 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }
  
  .footer-bottom {
    padding: 1rem 15px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero h1 .black-text,
  .hero h1 .highlight-text {
    font-size: 36px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .phone {
    width: 220px;
  }

  .scrolling-text {
    font-size: 3rem;
  }
}





/* Fade-in animation */
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Expandable text */
.card p {
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.card p.expanded {
  max-height: 500px;
  /* enough to reveal full text */
}


.testimonials-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}







.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  z-index: 1;
  position: relative;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.testimonial.show {
  opacity: 1;
  transform: translateY(0);
}

/* Zig-zag alignment */
.testimonial:nth-child(odd) {
  align-self: flex-start;
}

.testimonial:nth-child(even) {
  align-self: flex-end;
}

.testimonial h3 {
  margin: 0 0 10px;
  color: #e31e24;
}

.testimonial p {
  margin: 0;
  color: #333;
}

.map-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-line path {
  fill: none;
  stroke: #bbb;
  stroke-width: 3;
  stroke-dasharray: 8 12;
  /* dotted effect */
  stroke-linecap: round;
  stroke-dashoffset: 1000;
  transition: stroke 0.3s ease;
}

.map-line path.active {
  stroke: #e31e24;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  position: relative;
  z-index: 2;
}

.testimonial {
  width: 280px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial:nth-child(odd) {
  align-self: flex-start;
  margin-left: 60px;
}

.testimonial:nth-child(even) {
  align-self: flex-end;
  margin-right: 60px;
}

.testimonial h3 {
  margin-top: 0;
  color: #e31e24;
}