@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=moderrat@200,400,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=bogart@400,700&display=swap');

/* General Reset */

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1.6;
  background: #4da1a1;
  cursor: default;
}

/* ===================== */
/* Navbar - Desktop Base */
/* ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
}

.logo a {
  text-decoration: none;
    color: azure;
}

nav h1 {
  font-size: 24px;
  color: #64ffda;
}

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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #ccd6f6;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #64ffda;
}

/* ===================== */
/* Hamburger button      */
/* ===================== */
.hamburger {
  cursor: pointer;
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  z-index: 1100; /* stay above menu */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #64ffda;
  border-radius: 2px;
  transition: 0.4s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== */
/* Mobile styles         */
/* ===================== */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0; /* just under navbar */
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: rgba(10, 25, 47, 0.95);
    gap: 15px;
    display: none; /* hidden by default */
    padding-top: 160px;
    box-sizing: border-box;
    z-index: 1200;
  }

  nav ul.active {
    display: flex; /* show on toggle */
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul li a {
    font-size: 1.5rem;
    padding: 15px;
  }

  .hamburger {
    display: flex; /* show hamburger on mobile */
    z-index: 1300;
  }
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 100vh;
  color: white;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-content p {
  margin-top: -20px;
  word-spacing: 10px;
}

.hero h1 {
  font-family: "Saira", sans-serif; 
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 3px;
  margin-top: 70px;
  margin-bottom: 30px;
  justify-content: center;
}

#typed {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  min-height: 2rem;
  letter-spacing: 1px;
  line-height: 1.4;
}

.view-plans-btn {
  background: #00dcdc;
  color: #050c17;
  font-weight: 500;
  letter-spacing: 1.0px;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 220, 220, 0.6),
              0 0 24px rgba(0, 220, 220, 0.4);
}

.view-plans-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0, 220, 220, 0.8),
              0 0 36px rgba(0, 220, 220, 0.6);
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-foreground video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Dark overlay */
.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 100;
    justify-content: center;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 100;
    justify-content: center;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  #typed {
    font-size: 1.3rem;
    height: 1.3rem;
  }
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
}

.hero-image {
  max-width: 40%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animate in */
.hero-image.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-image {
    max-width: 70%;
    right: 5%;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 90%;
    bottom: 10px;
    right: 5%;
  }
}

.hero button {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: #64ffda;
  color: #0a192f;
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .hero-button {
    max-width: 90%;
    bottom: 10px;
    right: 5%;
  }
}

.hero button:hover {
  background: #48c9b0;
}

.new-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #3d8181;
}

.new-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.new-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.para {
    margin-left: 76px;
    width: 85%;
}

.cards {
  align-content: center;
  display: flex;
  gap: 20px;
}

.card {
    color: white;
  font-size: 18px;
  background-color: #072e2e;
  padding-top: 50px;
  padding-left: 13px;
  padding-bottom: 50px;
  padding-right: 13px;
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card2 {
    color: #000;
  font-size: 18px;
  background-color: #fff;
  padding-top: 50px;
  padding-left: 13px;
  padding-bottom: 50px;
  padding-right: 13px;
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ser-card {
    color: #fff;
  background-color: #072e2e;
}

#ser-card h3{
    font-size: 18px;
}

#standard-plan {
    margin-top: -18px;
    height: 107%;
}

.card-content ul li {
    list-style-type: none;
}

.card-content p {
    width: 90%;
    padding-left: 30px;
}

.card p {
  padding-top: 4px;
  font-size: 13px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.7);
}

.card2 p {
  padding-top: 4px;
  font-size: 13px;
}

.card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.7);
}

.plans-btn {
    font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 17px;
  padding: 10px 40px;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 5px;
  text-decoration: none;
    transition: 2s;
}

.plans-btn:hover {
  background: #000;
    color: #fff;
}

.plans-btn-og {
    font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 17px;
  padding: 10px 40px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
    transition: 2s;
}

.plans-btn-og:hover {
  background: #fff;
    color: #072e2e;
}

.hotlines {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-card {
    color: #fff;
    width: 60%;
    padding: 12px 0;
    text-decoration: none;
    border: 2px solid #fff;
  background: transparent;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 300px;
    transition: 0.7s;
}

.whatsapp-card i {
    font-size: 20px;
    padding-left: 8px;
}

.whatsapp-card:hover {
  background: #fff;
    color: #25D366;
    
}

.whatsapp-card h3{
    justify-content: center;
    display: flex;
    align-items: center;
}

.whatsapp-card p{
    font-size: 1rem;
}

.whatsapp-card .btn {
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 576px) {
  .new-section h2 {
    font-size: 2rem;
  }
  .new-section p {
    font-size: 1rem;
  }
}

/* Sections */
section {
  padding: 100px 50px;
}

.services,
.portfolio,
.contact {
  background: #2d6969;
}

.about {
  background: #398686;
}

.about h2,
.services h2,
.portfolio h2,
.contact h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #64ffda;
}

.about h4 {
  text-align: center;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about p {
    padding: 0 30px;
  font-size: 1.4rem;
  text-align: center;
}

.about1 {
  background: transparent; 
  text-align: center;
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 25px;
}

/* Portfolio Gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.portfolio-gallery img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact {
  background: url("assets/raphael-ai\\ (1).jpeg") no-repeat center center/cover;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 15px;
  border: none;
  border-radius: 10px;
  outline: none;
}

.contact textarea {
  height: 140px;
}

.contact input:focus{
    border: 2px solid rgba(10,90,30,0.7);
}

.contact textarea:focus{
    border: 2px solid rgba(10,90,30,0.7);
}

.contact button {
  padding: 15px;
  background: #69bebe;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  color: #0a192f;
  font-weight: bold;
}

.contact button:hover {
  background: #48c9b0;
}

/* Footer */
footer {
  background: #0a192f;
  text-align: center;
  padding: 20px;
  color: #8892b0;
}
footer p {
  font-size: 14px;
}

/* Reveal-on-scroll */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounceIn {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.section-animate:hover {
  animation: bounceIn 0.6s ease forwards;
}

/* Hamburger button default (for .menu-toggle variant) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #64ffda;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Transform hamburger into X when active */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: rgba(10, 25, 47, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 1000;
  }

  nav ul.active {
    max-height: 500px;
    opacity: 1;
    padding: 20px 0;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul li a {
    font-size: 1.5rem;
    padding: 15px;
  }

  .menu-toggle {
    display: flex;
  }
}

.plans-section {
  padding: 50px 50px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 57px;
  background: url("assets/raphael-ai\\ (2).jpeg") no-repeat center center/cover;
}

.plan h1 {
  font-size: larger;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.plan-card {
  background: #0c4949;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  transition: transform 0.2s;
}
.plan-card:hover { transform: translateY(-5px); }

.plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.plan-card p { 
  color: #e0d8d8;
  font-size: 1.2rem;
}

.plan-card .price {
  font-size: 24px;
  margin: 15px 0;
  font-weight: bold;
}

.plan-card button {
  background: #0077ff;
  color: #072e2e;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.plan-card button:hover { background: #005fcc; }

h1 { font-size: 3.5rem; }
p  { font-size: 1.8rem; line-height: 1.6; }

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
  p { font-size: 1rem; }
  button, .btn { font-size: 0.9rem; padding: 10px 20px; }
}

/* Mobile screens (480px and below) */
@media (max-width: 480px) {
  p { font-size: 0.9rem; }
  button, .btn { font-size: 0.85rem; padding: 8px 16px; }
}

/* plan-Portfolio Section */
.plan-portfolio { padding: 60px 10%; text-align: center; }
.plan-portfolio h2 { font-size: 2.5rem; margin-bottom: 40px; }

.plan-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.plan-portfolio-item img {
  width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}
.plan-portfolio-item img:hover { transform: scale(1.05); }

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 0px;
}

.note-section {
  background: url("assets/raphael-ai\\ (3).jpeg") no-repeat center center/cover; /* FIX: removed extra ; */
}

/* Store */
.store-section { padding: 100px 100px; text-align: center; }

.store-section h1 {
    font-size: 40px;
}

.store-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: #6e1414;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-5px); }

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 { margin: 10px 0; }

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.product-card button {
  background: #28a745;
  color: #791e1e;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.product-card button:hover { background: #1e7e34; }

/* Store Card Hover Effects */
.card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); }

.card img {
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
}
.card p { margin-bottom: 10px; }
.card:hover img { transform: scale(1.05); }

.card2 { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card2:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); }

.card2 img {
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
}
.card2 p { margin-bottom: 10px; }
.card2:hover img { transform: scale(1.05); }

.subtitle { 
    margin-top: 12px;
    margin-bottom: 40px;
}

.subtitle2 { 
    font-size: 22px;
    margin-top: 12px;
    margin-bottom: 40px;
}

/* Button Hover Effects */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}


/* About Section */
.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-family: "Saira", sans-serif; 
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  background: #007BFF;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #0056b3;
}

#editing {
    padding-bottom: 40px;
}

#graphics {
    padding-bottom: 67px;
}

#graphics2 {
    padding-bottom: 20px;
}

.services_container{
    margin-left: 110px;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2.5rem;
}
.service_box{
    background-color: #072e2e;
    height: 100px;
    border-radius: 1rem;
    border: 5px solid transparent;
}
.service_box:hover{
    transform: scale(1.03);
}
.service_box .service_info{
    display: flex;
    flex-direction: column;
    text-align: left;
    max-height: 200px;
    justify-content: left;
    align-items: baseline;
    padding-top: 2rem;
}
.service_info p{
    font-size: 1rem;
    font-weight: 600;
    max-height: 100px;
    line-height: 1.7;
    text-align: center;
    margin: auto;
}
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-150px);
  transition: all 0.6s ease-in-out;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.service_box:nth-child(2) {
  transition-delay: 50ms;
}
.service_box:nth-child(3) {
  transition-delay: 100ms;
}
.service_box:nth-child(4) {
  transition-delay: 150ms;
}

.ser1 {
    margin-top: 60px;
    margin-left: -1084px;
    width: 140px;
    height: 140px;
    z-index: -1;
}
.ser2 {
    margin-top: 184px;
    margin-left: 30px;
    width: 140px;
    height: 140px;
    z-index: -1;
}
.ser3 {
    margin-top: 309px;
    margin-left: 30px;
    width: 140px;
    height: 140px;
    z-index: -1;
}

.service_flex {
    display: flex;
}

.service_img {
    margin-left: -500px;
    width: 340px;
}

.serviceimg {
    z-index: -1;
}

.services_container2 {
    margin-left: 130px;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 70px;
}
.service_box2{
    background-color: #072e2e;
    height: 100px;
    width: 30%;
    border-radius: 1rem;
    border: 5px solid transparent;
}
.service_box2:hover{
    transition: 1s;
    transform: scale(1.07);
}
#service_info2 {
    padding-top: 20px;
}
.service_info2 {
    padding-top: 10px;
}
.service_info2 p{
    font-size: 0.8rem;
    font-weight: 400;
    max-height: 100px;
    line-height: 1.7;
    text-align: center;
    margin: auto;
}
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-150px);
  transition: all 0.6s ease-in-out;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.service_box2:nth-child(2) {
  margin-left: 170px;
  transition-delay: 50ms;
}
.service_box2:nth-child(3) {
  margin-left: 340px;
  transition-delay: 100ms;
}
.service_box2:nth-child(4) {
  margin-left: 510px;
  transition-delay: 150ms;
}

.faq p {
    padding-bottom: 20px;
}

.social-icons {
    padding-top: 35px;
    margin-left: 500px;
}

.social-icons a {
    color: white;
    font-size: 30px;
    margin-left: 20px;
    transition: 0.4s
}

.social-icons a:hover {
    font-size: 34px;
}

/* =============================== */
/* Extra Responsive Fixes          */
/* =============================== */

/* Large Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .services_container {
    margin-left: 0;
    width: 95%;
    grid-template-columns: 1fr 1fr;
  }

  .service_img {
    margin-left: 0;
    width: 250px;
  }
  .service_box {
    width: 100%;
    height: auto;
    padding: 20px;
    list-style: none;
  }
  .social-icons {
    margin-left: 0;
    text-align: center;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .services_container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .service_box {
    width: 100%;
    height: auto;
    padding: 20px;
    list-style: none;
  }

  .service_flex {
    flex-direction: column;
    align-items: center;
  }

  .service_img {
    margin: 20px 0;
    width: 200px;
  }

  .para {
    margin-left: 0;
    width: 100%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hotlines {
      align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .whatsapp-card {
    width: 90%;
  }

  .social-icons {
    margin: 0;
    text-align: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  p { font-size: 0.9rem; }

  .hero h1 {
      font-weight: 300;
    font-size: 2.7rem;
  }

  .hero p {
    font-size: 1.25rem;
    word-spacing: 5px;
  }

  .view-plans-btn {
    width: 50%;
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .plan-card {
  width: 100%;
  padding: 16px 20px; 
  box-sizing: border-box; 
  list-style: none;
  }

  .product-card {
    width: 100%;
  }
    
    
.store-section { 
    padding: 100px 44px; 
    }
    
.store-section h1 {
    font-size: 30px;
}
    
.subtitle { 
    font-size: 17px;
}
    
.subtitle2 { 
    font-size: 17px;
}
    
    .card-content h2{
        font-size: 20px;
    }

.card-content p {
    font-size: 11px;
    width: 90%;
    padding-left: 30px;
}
    
    .plans-btn {
        font-size: 14px;
        font-weight: 600;
        padding: 10px 30px;
}

#standard-plan {
    margin-top: 0;
    height: 100%;
}
    
.card-content ul {
    font-size: 12px;
}
    
    .service_img, .ser1, .ser2, .ser3 {
        visibility: hidden;
    }
    
    #assure{
        margin-top: -1250px;
    }
    
  .services_container2 {
    margin-left: 0;
    width: 100%;
  }

  .service_box2 {
    list-style: none;
    width: 90%;
    margin: auto !important;
  }

  .social-icons a {
    font-size: 30px;
    margin: 0 15px;
  }

#editing {
    padding-bottom: 0px;
}

#graphics {
    padding-bottom: 0px;
}

#graphics2 {
    padding-bottom: 0px;
}

.about p {
    margin-left: -12px;
    width: 110%;
    padding: 0 0px;
  font-size: 1rem;
}
}
.typed-fade-out {
  opacity: 0;
  transition: opacity 0.9s ease;
}


/* =========================
   Comparison Section Styling
   ========================= */
.comparison-section {
  margin-top: 80px;
  padding: 40px;
  background: rgba(12, 73, 73, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff;
}

.comparison-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
  text-align: center;
}

/* =========================
   Comparison Table Styling
   ========================= */
.pricing-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #444;
  padding: 16px;
  text-align: center;
}

/* Header styling */
.pricing-table th {
  background: #0c4949; /* branded teal header */
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
}

/* Base table cells */
.pricing-table td {
  background: #1e1e1e; /* dark gray background */
  color: #f5f5f5;      /* light text for contrast */
}


/* Alternate row shading for readability */
.pricing-table tbody tr:nth-child(even) td {
  background: #2a2a2a;
}

/* Hover effect */
.pricing-table tr:hover td {
  background: #333333;
  transition: background 0.3s ease;
}

/* Checkmark & cross styling */
.pricing-table td.check {
  color: #00b894;
  font-weight: bold;
}

.pricing-table td.cross {
  color: #d32f2f;
  font-weight: bold;
}

/* Highlighted premium column */
.pricing-table th.highlight,
.pricing-table td.highlight {
  background: #00dcdc;
  color: #fff;
  font-weight: bold;
  position: relative;
}

/* Smooth badge styling */
.pricing-table .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75em;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
  .comparison-section {
    padding: 10px;
  }

  .pricing-table {
    max-width: 100%;
    font-size: 0.7rem; /* shrink text slightly */
  }

  .pricing-table th,
  .pricing-table td {
    padding: 5px; /* tighter padding for small screens */
  }

  .pricing-table th {
    font-size: 0.9rem; /* smaller header text */
  }
}