/* ==========================
   GOOGLE FONT
========================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ==========================
   RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #222;
}

/* ==========================
   CONTAINER
========================== */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ==========================
   HEADER
========================== */
header {
  background: #5b5ab2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
}

/* Logo */

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

/* Navigation */

#nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 50px;
}

#nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

#nav-menu ul li a:hover,
#nav-menu ul li a.active {
  color: #fff;
  font-weight: 700;
}

/* Hamburger */

#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

#hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

/* ==========================
   HERO SECTION
========================== */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #f8f9fc;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  background: #5b5ab2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #5b5ab2;
  color: #5b5ab2;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  header .container {
    min-height: 90px;
  }

  .logo img {
    height: 75px;
  }

  #hamburger {
    display: flex;
  }

  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #5b5ab2;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  #nav-menu.active {
    max-height: 500px;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 75vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .logo img {
    height: 65px;
  }
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-choose-us {
  position: relative;
  padding: 120px 0 180px;
  background: url("../img/why-bg.jpeg") center center/cover no-repeat;
  text-align: center;
}

.why-choose-us .overlay {
  position: absolute;
  inset: 0;
  background: rgba(91, 90, 178, 0.8);
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-heading h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 25px;
}

.section-heading p {
  max-width: 1000px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.9;
}

.features-box {
  margin-top: 70px;
  background: #fff;
  border-radius: 35px;
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.feature i {
  font-size: 70px;
  color: #5b5ab2;
  margin-bottom: 25px;
}

.feature h4 {
  font-size: 28px;
  color: #5b5ab2;
  margin-bottom: 15px;
}

.feature p {
  color: #666;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading h3 {
    font-size: 28px;
  }

  .features-box {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

/* ==========================
   TRUSTED AGENCY
========================== */

.trusted-agency {
  padding: 120px 0;
  background: #f8f8f8;
}

.trusted-agency .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tabs {
  display: flex;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 25px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
}

.tab-btn.active {
  background: #5b5ab2;
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.tab-content {
  display: none;
  background: #5b5ab2;
  color: #fff;
  padding: 50px;
  border-radius: 0 20px 20px 20px;
  min-height: 280px;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 700;
}

.tab-content p {
  font-size: 20px;
  line-height: 1.8;
}

.agency-content h2 {
  font-size: 58px;
  line-height: 1.1;
  color: #5b5ab2;
  margin-bottom: 30px;
  font-weight: 800;
}

.agency-content p {
  font-size: 20px;
  line-height: 2;
  color: #555;
  margin-bottom: 25px;
}

/* Responsive */

@media (max-width: 992px) {
  .trusted-agency .container {
    display: flex;
    flex-direction: column;
  }

  .agency-content {
    order: 1;
  }

  .tabs-side {
    order: 2;
  }
}

@media (max-width: 768px) {
  .trusted-agency .container {
    display: flex;
    flex-direction: column;
  }

  .agency-content {
    order: 1;
    margin-bottom: 40px;
  }

  .tabs-side {
    order: 2;
  }
}

/* ==========================
   STATS SECTION
========================== */

.stats-section {
  padding: 120px 0;
  background: linear-gradient(90deg, #5b5ab2 0%, #0a0a2e 100%);
  text-align: center;
}

.stats-heading h2 {
  color: #fff;
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 800;
}

.stats-heading p {
  max-width: 1000px;
  margin: auto;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
}

.stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box h3 {
  font-size: 72px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-box p {
  color: #fff;
  font-size: 24px;
}

/* Responsive */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box h3 {
    font-size: 55px;
  }

  .stats-heading h2 {
    font-size: 32px;
  }
}

/* ==========================
   VISION & MISSION
========================== */

.vision-mission {
  position: relative;
  padding: 120px 0;
  background: url("../img/vision-bg.jpeg") center center/cover no-repeat;
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(91, 90, 178, 0.75);
}

.vision-mission .container {
  position: relative;
  z-index: 2;
}

.vm-heading {
  text-align: center;
  margin-bottom: 70px;
}

.vm-heading h2 {
  font-size: 70px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.vm-card {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  border: 2px solid #5b5ab2;
}

.vm-icon {
  margin-bottom: 25px;
}

.vm-icon i {
  font-size: 55px;
  color: #5b5ab2;
}

.vm-card h3 {
  font-size: 42px;
  color: #5b5ab2;
  margin-bottom: 25px;
  font-weight: 700;
}

.vm-card p {
  font-size: 20px;
  line-height: 1.9;
  color: #555;
}

.eye-blink {
  font-size: 55px;
  color: #5b5ab2;
  display: inline-block;
  transform-origin: center;
  animation: eyeBlink 1.5s infinite;
}

@keyframes eyeBlink {
  0%,
  96%,
  100% {
    transform: scaleY(1);
  }

  98% {
    transform: scaleY(0.05);
  }
}

.vm-icon .fa-bullseye {
  animation: targetLock 2s infinite;
}

@keyframes targetLock {
  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.95);
  }

  75% {
    transform: scale(1.1);
  }
}

/* Responsive */

@media (max-width: 992px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-heading h2 {
    font-size: 42px;
  }

  .vm-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .vm-heading h2 {
    font-size: 32px;
  }

  .vm-card {
    padding: 35px;
  }

  .vm-card p {
    font-size: 16px;
  }
}

/* ==========================
   WHY BRANDS CHOOSE US
========================== */

.why-brands {
  padding: 120px 0;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 65px;
  font-weight: 800;
  color: #5b5ab2;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.section-title p {
  max-width: 1000px;
  margin: auto;
  font-size: 20px;
  line-height: 1.8;
  color: #666;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.brand-card {
  background: #5b5ab2;
  padding: 40px 30px;
  border-radius: 25px;
  color: #fff;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-icon {
  margin-bottom: 25px;
}

.brand-icon i {
  font-size: 70px;
  color: #fff;
  transition: 0.4s;
}

.brand-card:hover .brand-icon i {
  transform: scale(1.15);
}

.brand-card h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.brand-card p {
  font-size: 18px;
  line-height: 1.8;
}

/* ==========================
   ICON ANIMATIONS
========================== */

.fa-lightbulb {
  animation: glowBulb 2s infinite;
}

@keyframes glowBulb {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.fa-chart-line {
  animation: bounceChart 2s infinite;
}

@keyframes bounceChart {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fa-percent {
  animation: pulsePercent 1.8s infinite;
}

@keyframes pulsePercent {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.fa-headset {
  animation: wiggleHeadset 2s infinite;
}

@keyframes wiggleHeadset {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 16px;
  }

  .brand-card h3 {
    font-size: 24px;
  }

  .brand-icon i {
    font-size: 55px;
  }
}

/* ==========================
   FOOTER
========================== */

footer {
  background: #5b5ab2;
  padding: 70px 0;
  color: #fff;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.footer-logo {
  text-align: left;
}

.footer-logo img {
  height: 130px;
  width: auto;
}

.footer-address,
.footer-contact {
  text-align: center;
}

.footer-address h3,
.footer-contact h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-address p,
.footer-contact p {
  font-size: 18px;
  line-height: 1.8;
}

.footer-address i,
.footer-contact i {
  margin-right: 10px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    height: 100px;
  }
}

/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
  padding: 120px 0;
  background: #f8f8f8;
  text-align: center;
}

.contact-tag {
  display: inline-block;
  background: #5b5ab2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: 60px;
  color: #5b5ab2;
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-size: 18px;
  color: #666;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info {
  padding: 80px 0;
}

.contact-info .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #5b5ab2;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.info-card i {
  font-size: 50px;
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
}

/* ==========================
   CONTACT FORM
========================== */
/* ==========================
   CONTACT BANNER
========================== */

.contact-banner {
  position: relative;
  height: 500px;
  background: url("../img/contact-banner.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(91, 90, 178, 0.75);
}

.contact-banner .container {
  position: relative;
  z-index: 2;
}

.contact-banner h1 {
  color: #fff;
  font-size: 90px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.contact-banner h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-banner {
    height: 350px;
  }

  .contact-banner h1 {
    font-size: 50px;
  }

  .contact-banner h2 {
    font-size: 24px;
  }
}

/* ==========================
   CONTACT INTRO
========================== */

.contact-intro {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.contact-intro h2 {
  font-size: 60px;
  color: #5b5ab2;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-intro p {
  max-width: 1200px;
  margin: 0 auto 30px;
  font-size: 22px;
  line-height: 1.9;
  color: #666;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-intro {
    padding: 70px 0;
  }

  .contact-intro h2 {
    font-size: 34px;
  }

  .contact-intro p {
    font-size: 16px;
  }
}

/* ==========================
   CONTACT CARDS SECTION
========================== */

.contact-cards {
  padding: 100px 0;
  background: #f8f8f8;
}

.contact-cards .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.contact-card {
  background: #fff;
  padding: 50px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon */

.contact-icon {
  margin-bottom: 25px;
}

.contact-icon i {
  font-size: 65px;
  color: #5b5ab2;
}

/* Title */

.contact-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #5b5ab2;
  margin-bottom: 15px;
}

/* Text */

.contact-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* ==========================
   PHONE ANIMATION
========================== */

.fa-phone {
  animation: ringPhone 2s infinite;
}

@keyframes ringPhone {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-15deg);
  }

  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

/* ==========================
   LOCATION ANIMATION
========================== */

.fa-location-dot {
  animation: bouncePin 2s infinite;
}

@keyframes bouncePin {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==========================
   EMAIL ANIMATION
========================== */

.fa-envelope {
  animation: mailFloat 2s infinite;
}

@keyframes mailFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 1200px) {
  .contact-cards .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .contact-cards {
    padding: 80px 0;
  }

  .contact-cards .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-card {
    padding: 45px 30px;
  }

  .contact-icon i {
    font-size: 60px;
  }

  .contact-card h3 {
    font-size: 26px;
  }

  .contact-card p {
    font-size: 17px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .contact-cards {
    padding: 70px 0;
  }

  .contact-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .contact-icon {
    margin-bottom: 20px;
  }

  .contact-icon i {
    font-size: 50px;
  }

  .contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-icon i {
    font-size: 45px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-card p {
    font-size: 15px;
  }
}

/* ==========================
   CAREER FORM
========================== */

.career-form-section {
  padding: 100px 0;
  background: #fff;
}

.career-heading {
  text-align: center;
  margin-bottom: 60px;
}

.career-heading h2 {
  font-size: 60px;
  color: #5b5ab2;
  margin-bottom: 20px;
}

.career-heading p {
  font-size: 20px;
  color: #666;
}

#career-form {
  max-width: 1200px;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  color: #5b5ab2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Inputs */

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #5b5ab2;
  padding: 15px 5px;
  font-size: 18px;
  outline: none;
  background: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 180px;
}

/* ==========================
   CUSTOM SELECT
========================== */

.custom-select {
  position: relative;
  width: 100%;
}

.select-header {
  width: 100%;
  min-height: 56px;
  border: none;
  border-bottom: 2px solid #5b5ab2;
  padding: 15px 5px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin-top: 10px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.select-options.active {
  max-height: 400px;
}

.select-options li {
  padding: 15px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.select-options li:hover {
  background: #5b5ab2;
  color: #fff;
}

/* ==========================
   MESSAGE FIELD
========================== */

.full-width {
  margin-bottom: 40px;
}

/* ==========================
   BUTTON
========================== */

.submit-btn {
  width: 100%;
  border: none;
  background: #5b5ab2;
  color: #fff;
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* ==========================
   SUCCESS MESSAGE
========================== */

#success-message {
  display: none;
  margin-top: 25px;
  padding: 20px;
  background: #eafaf0;
  color: #0f7b3a;
  border: 1px solid #0f7b3a;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .career-heading h2 {
    font-size: 44px;
  }

  .career-heading p {
    font-size: 18px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .career-heading h2 {
    font-size: 34px;
  }

  .career-heading p {
    font-size: 16px;
  }

  .form-group label {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-group input,
  .form-group textarea,
  .select-header {
    font-size: 16px;
  }

  .select-header {
    min-height: 50px;
  }

  .submit-btn {
    font-size: 18px;
    padding: 18px;
  }
}

/* ==========================
   SERVICE HERO
========================== */

.service-hero {
  padding: 100px 0;
  background: #f8f8f8;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.service-text {
  flex: 1;
}

.service-text h1 {
  font-size: 90px;
  line-height: 1;
  color: #5b5ab2;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.service-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .service-content {
    flex-direction: column;
  }

  .service-text h1 {
    font-size: 60px;
  }

  .service-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 70px 0;
  }

  .service-text h1 {
    font-size: 42px;
  }

  .service-text p {
    font-size: 16px;
  }
}

.service-content.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .service-content.reverse {
    flex-direction: column;
  }
}

/* ==========================
   PRODUCTION
========================== */

.production-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.production-heading {
  text-align: center;
  margin-bottom: 60px;
}

.production-heading h1 {
  font-size: 70px;
  color: #5b5ab2;
  margin-bottom: 20px;
}

.production-heading p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.production-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.production-card:hover {
  transform: translateY(-10px);
}

.production-icon {
  margin-bottom: 25px;
}

.production-icon i {
  font-size: 60px;
  color: #5b5ab2;
}

.production-card h3 {
  font-size: 28px;
  color: #5b5ab2;
  margin-bottom: 20px;
}

.production-card p {
  color: #666;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
  .production-grid {
    grid-template-columns: 1fr;
  }

  .production-heading h1 {
    font-size: 45px;
  }
}

/* Production */

.production-card:nth-child(2) .production-icon i {
  animation: recordPulse 1.5s infinite;
}

@keyframes recordPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* Post Production */

.production-card:nth-child(3) .production-icon i {
  animation: clapper 2s infinite;
}

@keyframes clapper {
  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(0deg);
  }
}

/* ==========================
   ANIMATED VIDEOS
========================== */

.animation-section {
  padding: 100px 0;
  background: #fff;
}

.animation-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.animation-image {
  flex: 1;
}

.animation-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.animation-text {
  flex: 1;
}

.animation-text h1 {
  font-size: 70px;
  color: #5b5ab2;
  margin-bottom: 25px;
}

.animation-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.animation-text ul {
  padding-left: 25px;
}

.animation-text ul li {
  font-size: 18px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 992px) {
  .animation-content {
    flex-direction: column;
  }

  .animation-text h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .animation-text h1 {
    font-size: 38px;
  }

  .animation-text p,
  .animation-text ul li {
    font-size: 16px;
  }
}

.website-benefits {
  margin-top: 20px;
  padding-left: 25px;
}

.website-benefits li {
  margin-bottom: 12px;
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.service-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #5b5ab2;
  font-size: 28px;
}

@media (max-width: 768px) {
  .website-benefits li {
    font-size: 16px;
  }

  .service-text h3 {
    font-size: 22px;
  }
}

/* ==========================
   CONSULTANCY SECTION
========================== */

.consultancy-section {
  padding: 100px 0;
  background: #fff;
}

.consultancy-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.consultancy-text {
  flex: 1;
}

.consultancy-text h1 {
  font-size: 80px;
  color: #5b5ab2;
  margin-bottom: 30px;
}

.consultancy-text p {
  font-size: 20px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}

.consultancy-image {
  flex: 1;
}

.consultancy-image img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .consultancy-content {
    flex-direction: column;
    gap: 50px;
  }

  .consultancy-text h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .consultancy-section {
    padding: 70px 0;
  }

  .consultancy-text {
    text-align: center;
  }

  .consultancy-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .consultancy-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ==========================
   WHAT WE DO
========================== */

.what-we-do {
  padding: 100px 0;
  background: #f8f8f8;
}

.what-we-do-heading {
  margin-bottom: 60px;
}

.what-we-do-heading h2 {
  font-size: 80px;
  color: #5b5ab2;
  text-transform: uppercase;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.what-card {
  background: #5b5ab2;
  border-radius: 25px;
  padding: 40px 25px;
  min-height: 380px;
  transition: 0.3s ease;
}

.what-card:hover {
  transform: translateY(-10px);
}

.what-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.what-card p {
  color: #fff;
  font-size: 18px;
  line-height: 1.9;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 70px 0;
  }

  .what-we-do-heading {
    text-align: center;
  }

  .what-we-do-heading h2 {
    font-size: 42px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .what-card {
    min-height: auto;
    padding: 35px 25px;
  }

  .what-card h3 {
    font-size: 22px;
  }

  .what-card p {
    font-size: 16px;
  }
}


/* ==========================
   CONSULTANCY EXPERTISE
========================== */

.consultancy-expertise{
    padding:100px 0;
    background:#fff;
}

.expertise-heading{
    text-align:center;
    margin-bottom:60px;
}

.expertise-heading h2{
    font-size:70px;
    color:#5b5ab2;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.expertise-card{
    background:#5b5ab2;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:.3s;
}

.expertise-card:hover{
    transform:translateY(-10px);
}

.expertise-icon{
    margin-bottom:25px;
}

.expertise-icon i{
    font-size:55px;
    color:#fff;
}

.expertise-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.expertise-card p{
    color:#fff;
    line-height:1.9;
    font-size:17px;
}

/* Responsive */

@media(max-width:992px){

    .expertise-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .expertise-heading h2{
        font-size:50px;
    }

}

@media(max-width:768px){

    .consultancy-expertise{
        padding:70px 0;
    }

    .expertise-grid{
        grid-template-columns:1fr;
    }

    .expertise-heading h2{
        font-size:38px;
    }

    .expertise-card h3{
        font-size:24px;
    }

    .expertise-card p{
        font-size:16px;
    }

}


/* Marketing Consultancy */
.expertise-card:nth-child(1) .expertise-icon i{
    animation:grow 2s infinite ease-in-out;
}

@keyframes grow{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.2);
    }
}

/* Social Media Consultancy */
.expertise-card:nth-child(2) .expertise-icon i{
    animation:bounce 2s infinite;
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* Branding Consultancy */
.expertise-card:nth-child(3) .expertise-icon i{
    animation:glow 2s infinite;
}

@keyframes glow{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:.5;
    }
}

/* Website & Digital Consultancy */
.expertise-card:nth-child(4) .expertise-icon i{
    animation:spin 5s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Digital Transformation Consultancy */
.expertise-card:nth-child(5) .expertise-icon i{
    animation:rocket 1.5s infinite ease-in-out;
}

@keyframes rocket{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* Analytics Consultancy */
.expertise-card:nth-child(6) .expertise-icon i{
    animation:pulse 1.8s infinite ease-in-out;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);
    }
}


/* ==========================
   CONSULTANCY CTA
========================== */

.consultancy-cta{
    padding:80px 0;
    background:#5b5ab2;
    text-align:center;
}

.consultancy-cta h2{
    color:#fff;
    font-size:60px;
    margin-bottom:20px;
}

.consultancy-cta p{
    max-width:800px;
    margin:0 auto 35px;
    color:#fff;
    line-height:1.8;
    font-size:18px;
}

.cta-btn{
    display:inline-block;
    padding:16px 40px;
    background:#fff;
    color:#5b5ab2;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

    .consultancy-cta h2{
        font-size:38px;
    }

    .consultancy-cta p{
        font-size:16px;
    }

}