:root {
  --orange: #ff7e00;
  --blue: #5d5ad1;
  --navy: #1a1a3d;
  --light-navy: #2a2a5a;
  --white: #ffffff;
  --off-white: #f9f9ff;
  --gray: #8a8aa3;
  --light-gray: #e5e5f0;
  --border-radius: 20px;
  --shadow: 0 10px 30px rgba(26, 26, 61, 0.08);
  --shadow-hover: 0 15px 40px rgba(26, 26, 61, 0.12);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-padding {
  padding: 100px 0;
}

/* ============================
           CUSTOM SHAPES
           ============================ */
.organic-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.7));
  opacity: 0.1;
}

/* ============================
           SCROLL INDICATOR
           ============================ */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1001;
  display: none;
}

.scroll-indicator-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.scroll-indicator-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ============================
           SCROLL TO TOP BUTTON - हमेशा visible
           ============================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 1;
  /* हमेशा visible */
  visibility: visible;
  /* हमेशा visible */
  transform: translateY(0);
  /* हमेशा visible */
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
}

.scroll-to-top:hover {
  background-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(93, 90, 209, 0.3);
}

/* ============================
           HEADER/NAVIGATION SECTION
           ============================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 25px 0;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(26, 26, 61, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--orange);
}

.logo .dot {
  width: 10px;
  height: 10px;
  background-color: var(--orange);
  border-radius: 50%;
  margin-left: 5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 126, 0, 0.2);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* ============================
           HERO SECTION
           ============================ */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.1));
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: -1;
  opacity: 0.15;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-image-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.hero-image {
  width: 100%;
  max-width: 550px;
  height: 650px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(26, 26, 61, 0.15));
}

.image-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 550px;
  max-height: 650px;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.8));
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  top: 30px;
  right: 30px;
  z-index: 1;
}

.organic-shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  background: linear-gradient(135deg, var(--orange), rgba(255, 126, 0, 0.5));
}

.organic-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 5%;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.5));
}

/* ============================
           ABOUT SECTION
           ============================ */
.about {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.05));
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about h2 span {
  color: var(--orange);
}

.about p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 17px;
}

.feature-box {
  background-color: var(--blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.feature-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 16px;
}

.ceo-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ceo-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.ceo-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.ceo-info p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

.image-frame {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.student-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .student-image {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* ============================
           SERVICES SECTION
           ============================ */
.services {
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
}

.services p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 30px;
  line-height: 1.6;
}

.plus-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: rgba(93, 90, 209, 0.08);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}

.service-card:hover .plus-icon {
  background-color: var(--orange);
  color: var(--white);
}

/* ============================
           PORTFOLIO SECTION
           ============================ */
.portfolio {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.portfolio-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-content p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 15px;
}

.portfolio-tag {
  display: inline-block;
  background-color: rgba(255, 126, 0, 0.1);
  color: var(--orange);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================
           PRICING SECTION
           ============================ */
.pricing {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 2px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  color: var(--light-gray);
}

.pricing-features li.disabled i {
  color: var(--light-gray);
}

/* ============================
           FOOTER SECTION
           ============================ */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-about {
  max-width: 350px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-services h4 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-services h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ============================
           RESPONSIVE DESIGN
           ============================ */
@media (max-width: 1200px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .about-text {
    max-width: 100%;
  }

  .hero-image-container,
  .about-image-container {
    justify-content: center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .about h2,
  .services h2,
  .portfolio h2,
  .pricing h2 {
    font-size: 38px;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .ceo-signature {
    justify-content: center;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .script-text {
    font-size: 48px;
  }

  .hero p,
  .services p,
  .portfolio p,
  .pricing p {
    font-size: 16px;
  }

  .hero-cta,
  .nav-cta {
    padding: 16px 32px;
    font-size: 15px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 34px;
  }

  .script-text {
    font-size: 42px;
  }

  .about h2,
  .services h2,
  .portfolio h2,
  .pricing h2 {
    font-size: 32px;
  }

  .hero-image,
  .image-frame {
    height: 500px;
  }

  .container {
    padding: 0 20px;
  }

  .price {
    font-size: 36px;
  }

  .scroll-indicator {
    height: 3px;
  }
}

/* ============================
           ANIMATION CLASSES
           ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
           ABOUT PAGE START
           ============================ */

/* Page Header */
.page-header {
  padding: 180px 0 80px;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.1));
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 0;
  opacity: 0.15;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* About Hero Section */
.about-hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-hero-text {
  flex: 1;
}

.about-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-hero h2 span {
  color: var(--orange);
}

.about-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 17px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
}

.image-frame {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.student-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .student-image {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Mission Vision Section */
.mission-vision {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.mission-vision-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.mission-box,
.vision-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
}

.vision-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--blue);
}

.mission-box h3,
.vision-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-box p,
.vision-box p {
  color: var(--gray);
  font-size: 17px;
}

/* Team Section */
.team {
  padding: 100px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.team-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 30px 20px;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--orange);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.team-info .bio {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.1);
  color: var(--orange);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.team-social a:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Values Section */
.values {
  background-color: var(--off-white);
  padding: 100px 0;
}

.values-header {
  text-align: center;
  margin-bottom: 70px;
}

.values-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.values-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  text-align: center;
  background-color: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.about-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .about-hero-image {
    justify-content: center;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .about-hero h2,
  .team-header h2,
  .values-header h2,
  .about-cta h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .about-hero h2,
  .team-header h2,
  .values-header h2,
  .about-cta h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .about-hero p,
  .team-header p,
  .values-header p,
  .about-cta p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .mission-box,
  .vision-box,
  .value-card {
    padding: 30px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .about-hero h2,
  .team-header h2,
  .values-header h2,
  .about-cta h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .stat-number {
    font-size: 36px;
  }

  .image-frame {
    height: 500px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ============================
           ABOUT PAGE END
           ============================ */

/* ============================
           CAREER PAGE START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Career Hero */
.career-hero {
  padding: 100px 0;
  background-color: var(--white);
}

.career-hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.career-hero-text {
  flex: 1;
}

.career-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.career-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.career-hero h2 span {
  color: var(--orange);
}

.career-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 17px;
}

.culture-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.culture-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.culture-feature i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
}

.culture-feature h4 {
  font-size: 17px;
  margin-bottom: 5px;
}

.culture-feature p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.image-frame {
  width: 100%;
  max-width: 500px;
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.career-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .career-image {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Job Openings */
.job-openings {
  background-color: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.job-header {
  text-align: center;
  margin-bottom: 70px;
}

.job-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.job-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.job-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--light-gray);
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--orange);
  transition: var(--transition);
}

.job-card:hover::before {
  height: 100%;
}

.job-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.tag-fulltime {
  background-color: rgba(0, 201, 167, 0.1);
  color: #00c9a7;
}

.tag-remote {
  background-color: rgba(93, 90, 209, 0.1);
  color: var(--blue);
}

.tag-internship {
  background-color: rgba(255, 126, 0, 0.1);
  color: var(--orange);
}

.job-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--navy);
}

.job-card p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.job-details {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
}

.job-detail i {
  color: var(--orange);
}

.job-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.job-cta:hover {
  gap: 15px;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: var(--white);
}

.benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.benefits-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.benefits-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--navy);
}

.benefit-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Application Process */
.process-section {
  background-color: var(--off-white);
  padding: 100px 0;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.process-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.process-step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray);
  font-size: 14px;
}

/* CTA Section */
.career-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .jobs-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .career-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .career-hero-text {
    max-width: 100%;
  }

  .career-hero-image {
    justify-content: center;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .career-hero h2,
  .job-header h2,
  .benefits-header h2,
  .process-header h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .career-hero h2,
  .job-header h2,
  .benefits-header h2,
  .process-header h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .career-hero p,
  .job-header p,
  .benefits-header p,
  .process-header p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .jobs-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .job-card,
  .benefit-card {
    padding: 30px 25px;
  }

  .culture-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .career-hero h2,
  .job-header h2,
  .benefits-header h2,
  .process-header h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .container {
    padding: 0 20px;
  }

  .job-details {
    flex-direction: column;
    gap: 15px;
  }
}

/* ============================
           CAREER PAGE END
           ============================ */

/* ============================
           CONTACT PAGE START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  background-color: var(--off-white);
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--navy);
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-text p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 15px;
}

.contact-text a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--orange);
}

.business-hours {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.business-hours h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--navy);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  color: var(--navy);
  font-weight: 500;
}

.time {
  color: var(--orange);
  font-weight: 600;
}

/* Contact Form */
.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--navy);
}

.contact-form-container p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--navy);
  transition: var(--transition);
  background-color: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.submit-btn {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Map Section */
.map-section {
  background-color: var(--off-white);
  position: relative;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
  margin-top: 60px;
  border: 1px solid var(--light-gray);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.map-placeholder i {
  font-size: 80px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.5;
}

.map-placeholder h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.map-placeholder p {
  color: var(--gray);
  max-width: 400px;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background-color: var(--off-white);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 14px;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
}

/* CTA Section */
.contact-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.cta-btn.primary {
  background-color: var(--orange);
  border-color: var(--orange);
}

.cta-btn.primary:hover {
  background-color: transparent;
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-container {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .contact-info h2,
  .contact-form-container h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .contact-info h2,
  .contact-form-container h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .contact-info p,
  .contact-form-container p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .contact-info,
  .contact-form-container {
    padding: 40px 30px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .contact-info h2,
  .contact-form-container h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .container {
    padding: 0 20px;
  }

  .contact-info,
  .contact-form-container {
    padding: 30px 20px;
  }

  .map-container {
    height: 400px;
  }
}

/* ============================
           CONTACT PAGE END
           ============================ */

/* ============================
           PORTFOLIO PAGE START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}

.filter-btn {
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid var(--light-gray);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 126, 0, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.portfolio-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 26, 61, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  align-self: flex-start;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 20px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.portfolio-link:hover {
  gap: 15px;
  color: var(--orange);
}

/* Portfolio Stats */
.portfolio-stats {
  background-color: var(--off-white);
  padding: 80px 0;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.testimonials-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.testimonials-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
}

.testimonial-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-content::before {
  content: '"';
  font-size: 80px;
  color: rgba(255, 126, 0, 0.1);
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: "Georgia", serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

/* CTA Section */
.portfolio-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .testimonials-header p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .portfolio-grid,
  .testimonials-grid,
  .stats-container {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .container {
    padding: 0 20px;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* ============================
       PORTFOLIO PAGE END
           ============================ */

/* ============================
       PRICING PAGE START
           ============================ */

/* Animated Background Elements */
.floating-element {
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  filter: blur(40px);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, 20px) rotate(5deg);
  }

  50% {
    transform: translate(-15px, 15px) rotate(-5deg);
  }

  75% {
    transform: translate(15px, -10px) rotate(3deg);
  }
}

.floating-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--orange), rgba(255, 126, 0, 0.3));
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  top: 10%;
  left: 5%;
}

.floating-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--blue), rgba(93, 90, 209, 0.3));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 15%;
  right: 8%;
}

.floating-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffd700, rgba(255, 215, 0, 0.3));
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  top: 40%;
  right: 15%;
  animation-delay: -5s;
}




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Plans */
/* ============================
   PRICING PLANS SECTION CSS
   ============================ */

/* Pricing Plans Container */
.pricing-plans {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: var(--off-white);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pricing-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--navy);
}

.pricing-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Pricing Cards */
.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--light-gray);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--orange);
  transform: translateY(-20px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-35px);
}

/* Plan Badges */
.plan-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.silver-badge {
  background-color: #c0c0c0;
  color: var(--navy);
}

.gold-badge {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--navy);
}

.platinum-badge {
  background: linear-gradient(135deg, #e5e4e2, #b0b0b0);
  color: var(--navy);
}

/* Plan Icons */
.plan-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
}

.silver-icon {
  background-color: rgba(192, 192, 192, 0.1);
  color: #c0c0c0;
  border: 2px solid rgba(192, 192, 192, 0.3);
}

.gold-icon {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.platinum-icon {
  background-color: rgba(229, 228, 226, 0.1);
  color: #b0b0b0;
  border: 2px solid rgba(229, 228, 226, 0.3);
}

/* Plan Titles */
.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--navy);
}

/* Price Display */
.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

/* Plan Description */
.plan-description {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 15px;
  min-height: 60px;
  line-height: 1.6;
}

/* Plan Features */
.plan-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 5px;
}

.plan-features li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* CTA Buttons */
.plan-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255, 126, 0, 0.2);
}

.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 0, 0.3);
  background-color: #ff6b00;
}

.gold-cta {
  background-color: #ffd700;
  color: var(--navy);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.gold-cta:hover {
  background-color: #ffc400;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: var(--navy);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .pricing-header h2 {
    font-size: 38px;
  }

  .pricing-card.popular {
    transform: translateY(0);
  }

  .pricing-card.popular:hover {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  .pricing-plans {
    padding: 80px 0;
  }

  .pricing-header h2 {
    font-size: 34px;
  }

  .pricing-header p {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 50px;
  }

  .pricing-card {
    padding: 40px 30px;
  }

  .price {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .pricing-header h2 {
    font-size: 32px;
  }

  .price {
    font-size: 36px;
  }

  .plan-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .plan-cta {
    padding: 14px 30px;
    font-size: 15px;
  }
}

/* ============================
   ANIMATION CLASSES
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Drone Package */
.drone-package {
  background-color: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.drone-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.drone-text {
  flex: 1;
}

.drone-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.drone-text h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.drone-text h2 span {
  color: var(--orange);
}

.drone-text p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 17px;
}

.drone-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.drone-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.drone-feature i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 18px;
}

.drone-feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.drone-feature p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.drone-price {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 40px;
  display: inline-block;
}

.drone-price h3 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 10px;
}

.drone-price p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 16px;
}

.image-frame {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.drone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .drone-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.faq-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-item h4 i {
  color: var(--orange);
}

.faq-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.pricing-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .drone-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .drone-text {
    max-width: 100%;
  }

  .drone-image {
    justify-content: center;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .pricing-header h2,
  .drone-text h2,
  .faq-header h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .pricing-card.popular {
    transform: translateY(0);
  }

  .pricing-card.popular:hover {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .pricing-header h2,
  .drone-text h2,
  .faq-header h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .pricing-header p,
  .drone-text p,
  .faq-header p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 40px 30px;
  }

  .drone-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .pricing-header h2,
  .drone-text h2,
  .faq-header h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .price {
    font-size: 36px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ============================
       PRICING PAGE END
           ============================ */

/* ============================
       SERVICES PAGE START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Main Section */
.services-main {
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 15px;
}

/* Service Detail Sections */
.service-detail {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.service-detail-content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.service-detail-text {
  flex: 1;
}

.service-detail-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.service-detail h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-detail h3 span {
  color: var(--orange);
}

.service-detail p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 16px;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-feature i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 18px;
}

.detail-feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.detail-feature p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.image-frame {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-detail-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Process Section */
.process {
  background-color: var(--white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-detail-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-detail-text {
    max-width: 100%;
  }

  .service-detail-image {
    justify-content: center;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-detail h3,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-detail h3,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-detail p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card {
    padding: 30px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-detail h3,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ============================
       SERVICES PAGE END
           ============================ */

/* ============================
       WEBSITE DEVELOPMENT START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Web Development Services */
.web-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Process Section */
.process {
  background-color: var(--white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Tech Stack Section */
.tech-stack {
  background-color: var(--off-white);
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.tech-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.tech-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: rgba(93, 90, 209, 0.08);
  color: var(--blue);
  font-size: 28px;
  transition: var(--transition);
}

.tech-card:hover .tech-icon {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}

.tech-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tech-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Pricing Section */
.pricing {
  background-color: var(--white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .tech-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .tech-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .services-grid,
  .tech-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
       WEBSITE DEVELOPMENT END
           ============================ */

/* ============================
  PERSONAL BRANDING START
           ============================ */





.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Branding Services */
.branding-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Platform Strategy */
.platform-strategy {
  background-color: var(--white);
  position: relative;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.platform-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.linkedin-icon {
  background-color: rgba(10, 102, 194, 0.08);
  color: #0a66c2;
}

.twitter-icon {
  background-color: rgba(29, 161, 242, 0.08);
  color: #1da1f2;
}

.instagram-icon {
  background-color: rgba(225, 48, 108, 0.08);
  color: #e1306c;
}

.youtube-icon {
  background-color: rgba(255, 0, 0, 0.08);
  color: #ff0000;
}

.platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.platform-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Success Stories */
.success-stories {
  background-color: var(--white);
  position: relative;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.story-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.story-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.story-content {
  padding: 30px;
}

.story-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.story-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
}

/* Branding Elements */
.branding-elements {
  background-color: var(--off-white);
  position: relative;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.element-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.element-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.element-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  transition: var(--transition);
}

.element-card:hover .element-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.element-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.element-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
  background-color: var(--white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1580894732444-8ecded7900cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .platform-grid,
  .pricing-grid,
  .stories-grid,
  .elements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .platform-card,
  .pricing-card,
  .story-card,
  .element-card {
    padding: 30px 20px;
  }

  .services-grid,
  .platform-grid,
  .pricing-grid,
  .stories-grid,
  .elements-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .story-img {
    height: 200px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
  PERSONAL BRANDING END
           ============================ */

/* ============================
  PHOTOGRAPHY-VIDEOGRAPHY START
           ============================ */





.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Services Grid */
.visual-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Equipment Section */
.equipment {
  background-color: var(--white);
  position: relative;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.equipment-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.equipment-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.camera-icon {
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
}

.lens-icon {
  background-color: rgba(93, 90, 209, 0.08);
  color: var(--blue);
}

.lighting-icon {
  background-color: rgba(255, 215, 0, 0.08);
  color: #ffd700;
}

.audio-icon {
  background-color: rgba(0, 128, 0, 0.08);
  color: #008000;
}

.equipment-card:hover .equipment-icon {
  transform: scale(1.1);
}

.equipment-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.equipment-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Portfolio Gallery */
.portfolio-gallery {
  background-color: var(--white);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  height: 300px;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 61, 0.9));
  color: var(--white);
  padding: 25px;
  transform: translateY(10px);
  transition: var(--transition);
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Video Types Section */
.video-types {
  background-color: var(--off-white);
  position: relative;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.type-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.type-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  transition: var(--transition);
}

.type-card:hover .type-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.type-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.type-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-card {
  background-color: var(--off-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.testimonial-content {
  font-size: 18px;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray);
  font-size: 14px;
}

/* Pricing Section */
.pricing {
  background-color: var(--off-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .equipment-grid,
  .pricing-grid,
  .gallery-grid,
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .equipment-card,
  .pricing-card,
  .type-card {
    padding: 30px 20px;
  }

  .services-grid,
  .equipment-grid,
  .pricing-grid,
  .gallery-grid,
  .types-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .gallery-item {
    height: 250px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
  PHOTOGRAPHY-VIDEOGRAPHY END
           ============================ */

/* ============================
CONTENT CREATION START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Content Services */
.content-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Content Formats */
.formats {
  background-color: var(--white);
  position: relative;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.format-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.format-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.format-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.blog-icon {
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
}

.video-icon {
  background-color: rgba(255, 0, 0, 0.08);
  color: #ff0000;
}

.graphic-icon {
  background-color: rgba(93, 90, 209, 0.08);
  color: var(--blue);
}

.social-icon-format {
  background-color: rgba(29, 161, 242, 0.08);
  color: #1da1f2;
}

.format-card:hover .format-icon {
  transform: scale(1.1);
}

.format-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.format-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Portfolio Showcase */
.portfolio-showcase {
  background-color: var(--white);
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.portfolio-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  height: 350px;
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 61, 0.9));
  color: var(--white);
  padding: 30px;
  transform: translateY(10px);
  transition: var(--transition);
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.portfolio-tag {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Content Strategy Section */
.content-strategy {
  background-color: var(--off-white);
  position: relative;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.strategy-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.strategy-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}

.strategy-item:hover .strategy-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.strategy-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.strategy-content p {
  color: var(--gray);
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  background-color: var(--white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1558655146-364adaf1fcc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .formats-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .format-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .services-grid,
  .formats-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
CONTENT CREATION END
           ============================ */

/* ============================
DIGITAL MARKETING START
           ============================ */





.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Digital Marketing Services */
.digital-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Marketing Channels */
.channels {
  background-color: var(--white);
  position: relative;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.channel-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.channel-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.seo-icon {
  background-color: rgba(0, 128, 0, 0.08);
  color: #008000;
}

.social-icon-channel {
  background-color: rgba(29, 161, 242, 0.08);
  color: #1da1f2;
}

.content-icon {
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
}

.email-icon {
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
}

.channel-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.channel-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Results Dashboard */
.results-dashboard {
  background-color: var(--white);
  position: relative;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Strategy Framework */
.strategy-framework {
  background-color: var(--off-white);
  position: relative;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.framework-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.framework-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}

.framework-item:hover .framework-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.framework-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.framework-content p {
  color: var(--gray);
  font-size: 15px;
}

/* Case Studies */
.case-studies {
  background-color: var(--white);
  position: relative;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.case-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.case-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 30px;
}

.case-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.case-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.case-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}

.case-stat {
  text-align: center;
}

.case-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
}

.case-label {
  font-size: 12px;
  color: var(--gray);
}

/* Pricing Section */
.pricing {
  background-color: var(--off-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .channels-grid,
  .pricing-grid,
  .dashboard-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .channel-card,
  .pricing-card,
  .stat-card,
  .case-card {
    padding: 30px 20px;
  }

  .services-grid,
  .channels-grid,
  .pricing-grid,
  .dashboard-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .case-img {
    height: 180px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
DIGITAL MARKETING END
           ============================ */

/* ============================
DRONE SHOOT START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Drone Services */
.drone-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Drone Equipment */
.drone-equipment {
  background-color: var(--white);
  position: relative;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.equipment-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.equipment-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.drone-icon {
  background-color: rgba(0, 123, 255, 0.08);
  color: #007bff;
}

.camera-icon-equipment {
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
}

.gimbal-icon {
  background-color: rgba(40, 167, 69, 0.08);
  color: #28a745;
}

.equipment-card:hover .equipment-icon {
  transform: scale(1.1);
}

.equipment-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.equipment-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Aerial Gallery */
.aerial-gallery {
  background-color: var(--white);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  height: 300px;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 61, 0.9));
  color: var(--white);
  padding: 25px;
  transform: translateY(10px);
  transition: var(--transition);
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Applications */
.applications {
  background-color: var(--off-white);
  position: relative;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.app-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.app-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  transition: var(--transition);
}

.app-card:hover .app-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.app-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.app-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Safety & Regulations */
.safety-regulations {
  background-color: var(--white);
  position: relative;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.safety-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.safety-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}

.safety-item:hover .safety-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.safety-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.safety-content p {
  color: var(--gray);
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  background-color: var(--off-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1508614589041-895b88991e3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1372&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-about {
  max-width: 350px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-services h4 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-services h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .equipment-grid,
  .pricing-grid,
  .gallery-grid,
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .equipment-card,
  .pricing-card,
  .app-card {
    padding: 30px 20px;
  }

  .services-grid,
  .equipment-grid,
  .pricing-grid,
  .gallery-grid,
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .gallery-item {
    height: 250px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
DRONE SHOOT END
           ============================ */

/* ============================
SOCIAL MEDIA MARKETING START
           ============================ */




.page-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 56px;
  color: var(--orange);
  margin-bottom: -10px;
  display: block;
  font-weight: 400;
}

.page-header h1 {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Hero */
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-hero-text {
  flex: 1;
}

.service-hero-image {
  flex: 1;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.service-hero h2 span {
  color: var(--orange);
}

.service-hero p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.service-hero-features {
  list-style: none;
  margin-top: 30px;
}

.service-hero-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--orange);
  font-size: 20px;
}

.hero-cta {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.35);
}

.image-frame {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover .service-hero-img {
  transform: scale(1.05);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--border-radius) - 10px);
  z-index: 1;
  pointer-events: none;
}

/* Social Media Services */
.social-services {
  background-color: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--orange);
}

/* Social Media Platforms */
.platforms {
  background-color: var(--white);
  position: relative;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.platform-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  transition: var(--transition);
}

.facebook-icon {
  background-color: rgba(24, 119, 242, 0.08);
  color: #1877f2;
}

.instagram-icon {
  background-color: rgba(225, 48, 108, 0.08);
  color: #e1306c;
}

.twitter-icon {
  background-color: rgba(29, 161, 242, 0.08);
  color: #1da1f2;
}

.linkedin-icon {
  background-color: rgba(10, 102, 194, 0.08);
  color: #0a66c2;
}

.platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.platform-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Process Section */
.process {
  background-color: var(--off-white);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
  margin: 0 auto 25px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* Strategy Section */
.strategy {
  background-color: var(--white);
  position: relative;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.strategy-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.strategy-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 126, 0, 0.08);
  color: var(--orange);
  font-size: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}

.strategy-item:hover .strategy-icon {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(15deg);
}

.strategy-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.strategy-content p {
  color: var(--gray);
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  background-color: var(--off-white);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card.popular .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--orange);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

/* CTA Section */
.services-cta {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.95)),
    url("https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1460&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .platforms-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-hero-text {
    max-width: 100%;
  }

  .nav-links {
    position: static;
    transform: none;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .script-text {
    font-size: 48px;
  }

  .page-header p,
  .services-header p,
  .service-hero p,
  .cta-content p {
    font-size: 16px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .service-card,
  .platform-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .services-grid,
  .platforms-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .page-header h1,
  .services-header h2,
  .service-hero h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .script-text {
    font-size: 42px;
  }

  .image-frame {
    height: 300px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
SOCIAL MEDIA MARKETING END
           ============================ */
