/* Base Styles */
:root {
  --primary-color: #2e296b;
  --secondary-color: #1cc88a;
  --dark-color: #2e384d;
  --light-color: #f8f9fc;
  --gray-color: #858796;
  --danger-color: #e74a3b;
  --success-color: #1cc88a;
  --warning-color: #f6c23e;
  --info-color: #36b9cc;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 5px;
}

@font-face {
  font-family: 'OdinRounded';
  src: local('OdinRounded'),
       url('../fonts/OdinRounded-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #3a5ccc;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover::before {
  left: 100%;
}

#submit-btn {
  font-family: 'Poppins', sans-serif, monospace;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin: 8px 0;
}

.logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Desktop images (default) */
.hero-slide:nth-child(1) {
  background-image: url('../images/hero/hero-Desktop-01-compressed.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('../images/hero/hero-Desktop-02-compressed.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('../images/hero/hero-Desktop-03-compressed.jpg');
}

.hero-slide:nth-child(4) {
  background-image: url('../images/hero/hero-Desktop-04-compressed.jpg');
}

.hero-slide:nth-child(5) {
  background-image: url('../images/hero/hero-Desktop-05-compressed.jpg');
}

.hero-slide:nth-child(6) {
  background-image: url('../images/hero/hero-Desktop-06-compressed.jpg');
}

/* Mobile images for smaller screens */
@media screen and (max-width: 768px) {
  .hero-slide:nth-child(1) {
    background-image: url('../images/hero/hero-Mobile-01-compressed.jpg');
  }

  .hero-slide:nth-child(2) {
    background-image: url('../images/hero/hero-Mobile-02-compressed.jpg');
  }

  .hero-slide:nth-child(3) {
    background-image: url('../images/hero/hero-Mobile-03-compressed.jpg');
  }

  .hero-slide:nth-child(4) {
    background-image: url('../images/hero/hero-Mobile-04-compressed.jpg');
  }

  .hero-slide:nth-child(5) {
    background-image: url('../images/hero/hero-Mobile-05-compressed.jpg');
  }

  .hero-slide:nth-child(6) {
    background-image: url('../images/hero/hero-Mobile-06-compressed.jpg');
  }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero-content .btn {
  animation: fadeIn 1.5s ease;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* For tablet and above (default) - buttons side by side */
/* For phones - stack buttons vertically with Learn More above Get Started */
@media screen and (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 80%;
    max-width: 250px;
  }
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  /* box-shadow: var(--box-shadow); */
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  font-size:1.2rem;
  text-align: justify;
}

.about-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-text ul li i {
  color: var(--success-color);
  margin-right: 10px;
}

/* Expertise Section - New Interactive Design */
.expertise {
  background: linear-gradient(135deg, #2e296b 0%, #1a1640 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Animated Background Shapes */
.expertise::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: calc(-200px + var(--parallax-y, 0px));
  left: -200px;
  animation: float 20s infinite ease-in-out;
  transition: top 0.1s ease-out;
}

.expertise::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: calc(-150px - var(--parallax-y, 0px));
  right: -150px;
  animation: float 15s infinite ease-in-out reverse;
  transition: bottom 0.1s ease-out;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.expertise .section-header h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.expertise .section-header h2::after {
  background-color: white;
}

.expertise-tagline {
  max-width: 700px;
  margin: 0 auto;
}

.tagline-main {
  color: white !important;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Category Cards */
.expertise-categories {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.expertise-category {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expertise-category.active {
  background: white;
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  padding: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.category-header:hover {
  background: rgba(46, 41, 107, 0.05);
}

.category-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, #2e296b, #1a1640);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-right: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(46, 41, 107, 0.3);
}

.expertise-category:hover .category-icon {
  transform: rotate(5deg) scale(1.1);
}

.expertise-category.active .category-icon {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(135deg, #1a1640, #2e296b);
}

.category-info {
  flex: 1;
}

.category-info h3 {
  font-size: 1.6rem;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.category-description {
  color: var(--gray-color);
  font-size: 0.95rem;
}

.category-toggle {
  width: 40px;
  height: 40px;
  background: rgba(46, 41, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e296b;
  transition: all 0.3s ease;
}

.category-toggle i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.expertise-category.active .category-toggle {
  background: #2e296b;
  color: white;
}

.expertise-category.active .category-toggle i {
  transform: rotate(45deg);
}

/* Category Services */
.category-services {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, rgba(46, 41, 107, 0.03), transparent);
}

.expertise-category.active .category-services {
  max-height: 1000px;
  /* Increased to accommodate all services */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 30px 30px;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: default;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(46, 41, 107, 0.2);
  border-color: rgba(46, 41, 107, 0.3);
}

.service-item i {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: linear-gradient(135deg, #2e296b, #1a1640);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 0.9rem;
}

.service-item span {
  color: var(--dark-color);
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Section */
.expertise-cta-section {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-top: 40px;
}

.expertise-cta-section p {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 300;
}

.expertise-cta-section .btn {
  background: white;
  color: #2e296b;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.expertise-cta-section .btn:hover {
  background: linear-gradient(135deg, white, #f8f9ff);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Expertise Section */
@media screen and (max-width: 768px) {
  .expertise {
    padding: 60px 0;
  }

  .expertise .section-header h2 {
    font-size: 2.2rem;
  }

  .tagline-main {
    font-size: 1.1rem;
  }

  .category-header {
    padding: 20px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
    margin-right: 20px;
  }

  .category-info h3 {
    font-size: 1.3rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }

  .expertise-cta-section p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .expertise .section-header h2 {
    font-size: 1.8rem;
  }

  .tagline-main {
    font-size: 1rem;
    padding: 0 10px;
  }

  .category-header {
    flex-wrap: wrap;
    text-align: center;
  }

  .category-icon {
    margin: 0 auto 15px;
  }

  .category-info {
    width: 100%;
    margin-bottom: 15px;
  }

  .category-toggle {
    margin: 0 auto;
  }

  .service-item {
    padding: 12px 15px;
  }

  .service-item span {
    font-size: 0.9rem;
  }

  .expertise-cta-section {
    padding: 30px 20px;
  }

  .expertise-cta-section .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Our Work Section */
.our-work {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.our-work .section-header {
  margin-bottom: 60px;
}

.our-work .section-header h2 {
  color: var(--dark-color);
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.work-description {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-color);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Work Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Large screens - wider columns that extend beyond container */
@media screen and (min-width: 1400px) {
  .our-work .container {
    max-width: 1400px;
  }
  
  .work-grid {
    gap: 40px;
  }
}

@media screen and (min-width: 1600px) {
  .our-work .container {
    max-width: 1600px;
  }
  
  .work-grid {
    gap: 50px;
  }
  
  .work-column {
    padding: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .our-work .container {
    max-width: 1800px;
  }
  
  .work-grid {
    gap: 60px;
  }
  
  .work-column {
    padding: 35px;
  }
}

.work-column {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.work-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.work-column:hover::before {
  transform: scaleX(1);
}

.work-column:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Different accent colors for each column */
.work-column[data-category="film"] .column-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.work-column[data-category="report"] .column-icon {
  background: linear-gradient(135deg, #1cc88a, #36b9cc);
}

.work-column[data-category="mice"] .column-icon {
  background: linear-gradient(135deg, #f6c23e, #e74a3b);
}

.work-column[data-category="procurement"] .column-icon {
  background: linear-gradient(135deg, #858796, #5a5c69);
}

/* Column Header */
.column-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.column-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
  animation-delay: calc(var(--column-index, 0) * 0.2s);
}

.work-column:nth-child(1) .column-icon { --column-index: 0; }
.work-column:nth-child(2) .column-icon { --column-index: 1; }
.work-column:nth-child(3) .column-icon { --column-index: 2; }
.work-column:nth-child(4) .column-icon { --column-index: 3; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.column-header h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  font-weight: 600;
}

/* Work Items */
.work-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: translateX(5px);
}

.work-item-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-item-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-item:hover .work-item-image img {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.work-item p {
  font-size: 0.9rem;
  color: var(--gray-color);
  line-height: 1.4;
  font-weight: 500;
}

/* Fun Decorative Elements */
.work-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-1,
.decoration-2,
.decoration-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-decoration 20s infinite ease-in-out;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #667eea, transparent);
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.decoration-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1cc88a, transparent);
  bottom: 10%;
  right: -200px;
  animation-delay: 7s;
}

.decoration-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #f6c23e, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(30px, 30px) rotate(270deg);
  }
}

/* Responsive Design for Our Work Section */

/* Tablet - 2 columns */
@media screen and (max-width: 1279px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .our-work {
    padding: 80px 0;
  }
  
  .our-work .section-header h2 {
    font-size: 2.5rem;
  }
  
  .work-description {
    font-size: 1rem;
  }

  .work-item-image img {
    height: 240px;
  }
}

/* Mobile - 1 column */
@media screen and (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .our-work {
    padding: 60px 0;
  }
  
  .our-work .section-header h2 {
    font-size: 2.2rem;
  }
  
  .work-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .work-column {
    padding: 20px;
  }
  
  .column-header h3 {
    font-size: 1.2rem;
  }
  
  .work-item-image img {
    height: 240px;
  }
  
  .decoration-1,
  .decoration-2,
  .decoration-3 {
    display: none; /* Hide decorations on mobile for better performance */
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .our-work .section-header h2 {
    font-size: 1.8rem;
  }
  
  .work-description {
    font-size: 0.9rem;
  }
  
  .column-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 12px;
  }
  
  .column-header h3 {
    font-size: 1.1rem;
  }
  
  .work-item p {
    font-size: 0.85rem;
  }
  
  .work-item-image img {
    height: 180px;
  }
  
  .work-column {
    padding: 15px;
    border-radius: 15px;
  }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
  .work-item-image img {
    height: 120px;
  }
  
  .work-item p {
    font-size: 0.8rem;
  }
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
  overflow: auto;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  padding: 15px 25px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  max-width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 40px;
  font-weight: 300;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Responsive Modal Styles */
@media screen and (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    padding: 10px;
  }
  
  .modal-content img {
    max-height: 70vh;
    border-radius: 6px;
  }
  
  .modal-caption {
    font-size: 1rem;
    padding: 12px 20px;
    margin-top: 12px;
  }
  
  .modal-close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 35px;
  }
}

@media screen and (max-width: 480px) {
  .image-modal.active {
    padding: 10px;
  }
  
  .modal-content {
    max-width: 100%;
  }
  
  .modal-content img {
    max-height: 65vh;
    border-radius: 4px;
  }
  
  .modal-caption {
    font-size: 0.9rem;
    padding: 10px 15px;
    margin-top: 10px;
  }
  
  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Team Section */
.team-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.team-text {
  flex: 1 1;
  order: 1;
}

.team-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.team-text h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.team-text p {
  color: var(--gray-color);
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 480px;
}

.team-image {
  flex: 1 1;
  max-width: 500px;
  order: 2;
}

.team-image img {
  width: 100%;
  height: auto;
}

/* Responsive styles for team section */
@media screen and (max-width: 768px) {
  .team-content {
    flex-direction: column;
  }

  .team-text {
    text-align: center;
    order: 1;
  }

  .team-image {
    max-width: 400px;
    order: 2;
  }

  .team-text h2 {
    font-size: 2rem;
  }

  .team-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .team-text p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {

  .team-text h2 {
    font-size: 1.8rem;
  }

  .team-text p {
    font-size: 0.95rem;
  }
}

/* Clients Section */
.clients-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.clients-intro {
  flex: 1 1 260px;
  max-width: 360px;
}

.clients-intro::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 999px;
  margin-bottom: 20px;
}

.clients-intro h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.clients-intro p {
  color: var(--gray-color);
  line-height: 1.7;
}

.clients-showcase {
  flex: 2 1 520px;
}

.clients-slider {
  position: relative;
  overflow: hidden;
}

.clients-track {
  display: flex;
  transition: transform 0.6s ease;
}

.clients-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 12px 5px;
  align-items: center;
}

/* Ensure all slides have 8 items for proper 4x2 grid */
.clients-slide .client-logo:nth-child(n+9) {
  display: none;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
}

.client-logo img {
  max-width: 100%;
  height: 72px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
}

.client-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 31, 67, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Tablet layout - 3 columns, 2 rows */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .clients-layout {
    gap: 32px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  
  .clients-intro {
    flex: 0 0 240px;
    max-width: 260px;
  }
  
  .clients-intro h2 {
    font-size: 2.3rem;
  }
  
  .clients-showcase {
    flex: 1 1 0;
    min-width: 0;
  }
  
  .clients-slide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  /* Show only 6 items for 3x2 grid on tablets */
  .clients-slide .client-logo:nth-child(n+7) {
    display: none;
  }
  
  .client-logo {
    flex-direction: row;
    justify-content: flex-start;
    padding: 8px;
  }
  
  .client-logo img {
    height: 52px;
    margin-right: 12px;
  }
}

/* Mobile and smaller tablets */
@media screen and (max-width: 768px) {
  .clients-layout {
    gap: 35px;
  }

  .clients-intro {
    max-width: none;
  }

  .clients-intro h2 {
    font-size: 2.2rem;
  }

  .clients-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 20px;
  }
  
  /* Show all items on mobile */
  .clients-slide .client-logo:nth-child(n) {
    display: flex;
  }

  .client-logo {
    padding: 6px;
  }

  .client-logo img {
    height: 48px;
  }
}

/* Small mobile devices */
@media screen and (max-width: 576px) {
  .clients-layout {
    flex-direction: column;
    gap: 24px; /* Reduced from 16px to bring text and icons closer */
  }
  
  .clients-intro {
    text-align: center;
    margin-bottom: 0; /* Remove any extra margin */
    max-height: 200px;
  }
  
  .clients-intro::before {
    margin: 0 auto 16px; /* Reduced from 20px */
  }
  
  .clients-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px; /* Reduced from 18px */
  }
  
  .clients-intro p {
    font-size: 0.95rem;
    margin-bottom: 0; /* Remove bottom margin to reduce gap */
  }

  .clients-showcase {
    margin-top: -8px; /* Negative margin to bring showcase closer */
    max-height: 340px;
  }

  .clients-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    padding: 8px 2px;
    margin-bottom: 32px;
  }

  .client-logo {
    padding: 4px;
  }

  .client-logo img {
    height: 48px;
  }
  
  .client-dots {
    margin-top: 20px; /* Reduced from 24px */
  }
}

/* Extra small devices */
@media screen and (max-width: 400px) {
  .clients-intro h2 {
    font-size: 1.8rem;
  }
  
  .clients-slide {
    gap: 32px 16px;
  }
  
  .client-logo img {
    height: 40px;
  }
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
  color: inherit;
  text-decoration: none;
}

.contact-item i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 2;
}

.footer-logo a {
  font-family: 'Poppins', sans-serif, monospace;
  font-size: 1.8rem;
  font-weight: normal;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo a span {
  font-family: 'OdinRounded', sans-serif, monospace;
  color: white;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  color: #ccc;
  margin-top: 15px;
}

.footer-links,
.footer-social {
  flex: 1;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typing Animation */
.typing-text {
  display: inline-block;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  /* Reduce section padding for mobile to decrease space between sections */
  .section {
    padding: 50px 0; /* Reduced from 80px */
  }
  
  /* Special adjustment for clients section to reduce space with contact section */
  .clients.section {
    padding-bottom: 40px; /* Even less padding at bottom */
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Extra small devices (width less than 400px) */
@media screen and (max-width: 399px) {
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .typing-text {
    display: inline-block;
    white-space: normal;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

.fa-whatsapp {
  background-color: #1cc88a !important;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
