* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #000;
  --secondary-color: #4f0000ff;
  --accent-color: #ba0000;
  --text-color: #ffffff;
  --light-text: #f8f9fa;
  --dark-text: #212529;
  --bg-color: #000000;
  --dark-bg: #000000;
  --card-bg: #1e1e1e;
  --dark-card-bg: #232323;
  --transition: all 0.3s ease;
  --border-radius: 10px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #f1f1f1;
  overflow-x: hidden;
  background-color: #000000;
  position: relative;
}

/* Particle Background */
.particle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: #000000;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(86, 188, 249, 0.6);
  box-shadow: 0 0 20px 5px rgba(86, 188, 249, 0.4);
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Header & Navigation */
header {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  margin-left: auto;
  gap: 2rem;
}

.logo-dark {
  display: none;
}

.logo img {
  height: 50px;
}

.nav-list a {
  text-decoration: none;
  color: #f1f1f1;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-list a:hover {
  color: var(--accent-color);
}

.nav-list a.active {
  color: var(--accent-color);
  font-weight: 600;
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

/* Burger Menu - Hidden on Desktop */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  order: 3;
  z-index: 1001;
  width: 50px;
  height: 50px;
}

.burger-line {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #f1f1f1;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Carousel - Fixed for desktop banner display */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px; /* Reduced from 180px to match header height */
  margin-bottom: 0;
  background-color: #000000;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-color: #000000;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 90%;
  max-width: 800px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

/* Services Section - Reduced top padding */
.services {
  padding: 2rem 1rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #000000;
  margin-top: -1px;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.containar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.item {
  background-color: var(--dark-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.44);
}

.card {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.item:hover .card img {
  transform: scale(1.05);
  max-width: 100%;
}

.content {
  padding: 1.5rem;
  text-align: center;
}

.content h3 {
  margin-top: 0;
  color: var(--text-color);
  font-size: 1.5rem;
}

.content p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.content a:hover {
  text-decoration: underline;
}

/* Solutions Section */
.solutions {
  padding: 5rem 2rem;
  background-color: #000000;
  text-align: center;
}

.solutions h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #f1f1f1;
}

.solutions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-item {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.solution-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solution-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.solution-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #868686;
}

.solution-item p {
  color: #bbb;
}

/* Partners Section */
.partners {
  text-align: center;
  padding: 60px 300px;
  background: #000000;
  color: #fff;
  overflow: hidden;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partner-logos {
  display: flex;
  align-items: center;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.partner-logos img {
  height: 60px;
  margin: 0 40px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.partner-logos img:hover {
  transform: scale(1.15);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: #000000;
}

.faq-item {
  background: #1e1e1e;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #f1f1f1;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-question .icon::before {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item input:checked + .faq-question .icon::before {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #252525;
  color: #bbb;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item input:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #350000c6, #ba000051);
  color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background-color: #fffdfd;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  min-width: 180px;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #000000;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 300px;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #bbb;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: white;
  background-color: #444;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-color);
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #bbb;
}

.contact-info i {
  margin-right: 0.8rem;
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #444;
  color: #bbb;
  font-size: 0.9rem;
}

.copyright a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.copyright a:hover {
  color: var(--accent-color);
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--accent-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* About Hero Section */
.about-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 0, 0, 0.8)),
    url("assets/images/about_hero_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  background-color: #000000;
}

.principle-icon {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.principle-icon i {
  font-size: 3rem;
  color: #ba0000;
}

.about-hero.loaded {
  opacity: 1;
  transform: translateY(0);
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/about_hero.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* About Sections */
.about-container {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #000000;
}

.about-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  background-color: #000000;
}

.about-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-section:nth-child(even) {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-content p {
  color: #ddd;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Special Layout Sections */
.special-section {
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  background-color: #000000;
}

.special-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.section-image {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-content {
  max-width: 100%;
  margin: 0 auto;
}

/* Mission/Vision/Values */
.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 5rem 0;
  background-color: #000000;
}

.value-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.value-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(186, 0, 0, 0.3);
}

.principle-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Focus Areas */
.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  background-color: #000000;
}

.focus-area {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.focus-area.animate {
  opacity: 1;
  transform: translateY(0);
}

.focus-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(186, 0, 0, 0.3);
}

.focus-icon {
  font-size: 2rem;
  color: #ba0000;
  margin-bottom: 1rem;
}

.focus-area h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  background-color: #000000;
}

.portfolio-item {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  text-align: center;
}

.portfolio-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(186, 0, 0, 0.3);
}

.portfolio-icon {
  font-size: 1.8rem;
  color: #ba0000;
  margin-bottom: 0.8rem;
}

.portfolio-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.portfolio-logo {
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Team Section */
.team-section {
  background: linear-gradient(
    135deg,
    rgba(186, 0, 0, 0.2),
    rgba(186, 0, 0, 0.3)
  );
  border-radius: 15px;
  padding: 3rem;
  margin: 4rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  background-color: #000000;
}

.team-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Services */
.services-container {
  margin: 5rem 0;
}

.service-item {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  background-color: #000000;
}

.service-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-item ul {
  list-style-type: none;
  padding-left: 0;
}

.service-item ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #ddd;
}

.service-item ul li:before {
  content: "•";
  color: #ba0000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Service Boxes */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  background-color: #000000;
}

.service-box {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.service-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(186, 0, 0, 0.3);
}

.service-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.service-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ddd;
}

/* Why DML */
.why-dml {
  background: linear-gradient(
    135deg,
    rgba(186, 0, 0, 0.2),
    rgba(186, 0, 0, 0.3)
  );
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  background-color: #000000;
}

.why-dml.animate {
  opacity: 1;
  transform: translateY(0);
}

.why-dml h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Analytics Hero Section */
.analytics-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.analytics-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.analytics-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.analytics-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Analytics Navigation Tabs */
.analytics-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1000px;
  background-color: #000000;
}

.tab-button {
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(186, 0, 0, 0.5);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.tab-button:hover {
  background: rgba(186, 0, 0, 0.3);
  transform: translateY(-3px);
}

.tab-button.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Analytics Content Sections */
.analytics-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #000000;
}

.analytics-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.analytics-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Analytics Cards */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.analytics-card {
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.analytics-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(186, 0, 0, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.service-cta {
  background: white;
  color: #ba0000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #000;
  transform: translateY(-3px);
}

.analytics-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.analytics-card p {
  color: #bbb;
  margin-bottom: 1.5rem;
}

.card-metric {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.metric-change {
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
}

.metric-change.positive {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.metric-change.negative {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Chart Containers */
.chart-container {
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  height: 400px;
  position: relative;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-title {
  font-size: 1.3rem;
  color: var(--text-color);
}

.chart-options {
  display: flex;
  gap: 0.5rem;
}

.chart-option {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #bbb;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.chart-option:hover {
  background: rgba(186, 0, 0, 0.3);
  color: white;
}

.chart-option.active {
  background: var(--accent-color);
  color: white;
}

/* Data Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.data-table th {
  background: rgba(186, 0, 0, 0.2);
  color: var(--text-color);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
}

.data-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-badge.excellent {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.status-badge.good {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.status-badge.fair {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.status-badge.poor {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Feature Lists */
.feature-list {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.feature-content p {
  color: #bbb;
}

/* Fintech Page Styles */
.fintech-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.fintech-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.fintech-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fintech-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Fintech Navigation Tabs */
.fintech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1000px;
  background-color: #000000;
}

/* Fintech Content Sections */
.fintech-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #000000;
}

.fintech-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.fintech-section.active {
  display: block;
}

/* Fintech Cards */
.fintech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fintech-card {
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.fintech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(186, 0, 0, 0.3);
}

/* Contact Main Section */
.contact-main {
  padding: 120px 0 60px;
  position: relative;
  z-index: 1;
  background-color: #000000;
}

.contact-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Information Section */
.contact-info {
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  height: fit-content;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(186, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.contact-text h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-text p {
  color: #bbb;
  line-height: 1.6;
}

.contact-text a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--accent-color);
}

/* Social Links */
.contact-info h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* Map Container */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-container {
  grid-column: span 2;
}

.contact-form {
  background: var(--dark-card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.required-field::after {
  content: " *";
  color: var(--accent-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.submit-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.submit-btn:hover {
  background: #8a0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(138, 0, 0, 0.2);
}

.success-message {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  display: none;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #000000;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.step {
  flex: 1 1 300px;
  margin: 1rem;
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #ba0000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 2.5rem;
  color: #ba0000;
  margin: 1.5rem 0;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
}

.step p {
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(49, 0, 0, 0.9), rgb(0, 0, 0));
  color: white;
  background-color: #000000;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #f1f1f1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Hero Section */
.film-hero {
  padding: 12rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(138, 0, 0, 0.9),
    rgba(186, 0, 0, 0.8)
  );
  color: white;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.film-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/film-production.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.film-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.film-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.film-hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2rem;
}

body.dark-mode .service-card {
  background: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

body.dark-mode .service-content h3 {
  color: var(--text-light);
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

body.dark-mode .service-content p {
  color: #bbb;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.platform-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.platform-name {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

footer h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
  margin-top: 2rem;
}

/* Responsive Styles - Organized from largest to smallest screens */

/* Desktop and Tablet Landscape */
@media (max-width: 1200px) {
  .partners {
    padding: 60px 100px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .carousel {
    height: 70vh;
    margin-top: 30px;
  }

  /* Change object-fit to contain to show full image on tablets */
  .slide img {
    object-fit: contain;
  }

  .caption h2 {
    font-size: 2rem;
  }

  .caption p {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .partners {
    padding: 60px 20px;
  }

  .partner-logos img {
    height: 40px;
    margin: 0 20px;
  }

  .partners h2 {
    font-size: 1.5rem;
  }

  /* About Page Responsive */
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-section,
  .about-section:nth-child(even) {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    padding: 1rem 0;
  }

  /* Responsive adjustments for partners */
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .partner-item {
    padding: 1.5rem;
  }

  .partner-logo {
    height: 80px;
  }

  .partner-item h3 {
    font-size: 1.1rem;
  }

  /* Analytics & Fintech adjustments */
  .analytics-hero h1,
  .fintech-hero h1 {
    font-size: 2.5rem;
  }

  .analytics-tabs,
  .fintech-tabs {
    gap: 0.5rem;
  }

  .tab-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .chart-container {
    height: 300px;
    padding: 1rem;
  }

  .data-table {
    font-size: 0.9rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.7rem;
  }

  /* Contact page adjustments */
  .page-title {
    font-size: 2.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
  }

  /* Mobile Navigation - Show burger menu */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-line {
    width: 35px;
    height: 4px;
    background-color: #f1f1f1;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 6px 0;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Hide desktop nav on tablet and mobile */
  .nav-list {
    display: none;
  }

  /* Show mobile nav when active */
  .nav-list.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    gap: 2rem;
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-list li {
    margin: 0;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.5rem;
    padding: 1rem 0;
    display: block;
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-list a:hover {
    color: var(--accent-color);
  }

  .nav-list a.active {
    color: var(--accent-color);
  }

  .nav-list a.active::after {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-container {
    grid-column: span 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel {
    height: 50vh;
    margin-top: 30px;
  }

  /* Keep object-fit as contain for mobile to show full image */
  .slide img {
    object-fit: contain;
  }

  .caption {
    width: 95%;
    padding: 0.5rem;
  }

  .caption h2 {
    margin-bottom: 0.8rem;
  }

  .caption p {
    margin-bottom: 1rem;
  }

  .caption button {
    padding: 0.6rem 1.2rem;
  }

  .services,
  .solutions,
  .partners,
  .faq-section {
    padding: 1rem 1.5rem;
  }

  .footer-container {
    flex-direction: column;
  }

  /* Contact Page Responsive */
  .contact-main {
    padding-top: 80px;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  /* About Page Responsive */
  .about-hero h1 {
    font-size: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .value-card {
    padding: 1rem;
  }

  /* Responsive adjustments for partners */
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
  }

  .partner-item {
    padding: 1rem;
  }

  .partner-logo {
    height: 70px;
  }

  .partner-item h3 {
    font-size: 1rem;
  }

  /* Responsive adjustments for portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .portfolio-item {
    padding: 1rem;
  }

  .portfolio-icon {
    font-size: 1.5rem;
  }

  .portfolio-item h3 {
    font-size: 1rem;
  }

  .portfolio-logo {
    height: 50px;
  }

  /* Analytics & Fintech adjustments */
  .analytics-hero h1,
  .fintech-hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .analytics-grid,
  .fintech-grid {
    grid-template-columns: 1fr;
  }

  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .chart-options {
    width: 100%;
    justify-content: space-between;
  }

  /* Film Hero */
  .film-hero {
    padding: 8rem 1rem 4rem;
  }

  .film-hero h1 {
    font-size: 2.5rem;
  }

  .film-hero p {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .carousel {
    height: 45vh;
    margin-top: 30px;
  }

  .caption p {
    display: none;
  }

  .caption {
    bottom: 10%;
    top: 45%;
  }

  .caption h2 {
    font-size: 1.5rem;
  }

  .caption button {
    padding: 0.6rem 1.2rem;
  }

  .services h2 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Ultra-small mobile devices */
  .navbar {
    padding: 1rem;
  }

  .services h2,
  .solutions h2,
  .partners h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .burger-menu {
    width: 45px;
    height: 45px;
    padding: 8px;
  }

  .burger-line {
    width: 30px;
    height: 3px;
    margin: 5px 0;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Contact Page */
  .contact-main {
    padding: 70px 0 40px;
  }

  .page-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .contact-info,
  .contact-form {
    padding: 15px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .social-links {
    justify-content: center;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .map-container {
    height: 200px;
    border-radius: 8px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link i {
    font-size: 0.9rem;
  }
}

/* Very Small Mobile */
@media (max-width: 430px) {
  .burger-menu {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .burger-line {
    width: 28px;
    height: 3px;
    margin: 4px 0;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .carousel {
    height: 40vh;
    margin-top: 30px;
  }
}

@media (max-width: 375px) {
  .carousel {
    height: 35vh;
    margin-top: 30px;
  }
}

@media (max-width: 344px) {
  .carousel {
    height: 40vh;
    margin-top: 30px;
  }
}
