/* Color Palette from Logo */
:root {
  --primary-green: #7ac143;
  --primary-blue: #2b6ca3;
  --accent-blue: #3b8fc1;
  --primary-red: #e03a2b;
  --background: #f8f9fa;
  --text-dark: #222;
  --text-light: #fff;
  --shadow: 0 4px 24px rgba(43, 108, 163, 0.12);
  --shadow-hover: 0 8px 32px rgba(43, 108, 163, 0.18);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(43, 108, 163, 0.07);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.company-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.company-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.company-subtitle {
  font-size: 0.9rem;
  color: var(--primary-green);
  font-weight: 500;
}

#navbar {
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
  background: transparent;
  position: static;
  flex-direction: row;
  width: auto;
  box-shadow: none;
  border-radius: 0;
}

nav a.nav-btn {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

nav a.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

nav a.nav-btn:hover::before {
  left: 0;
}

nav a.nav-btn:hover {
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(122, 193, 67, 0.2);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  background: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(43, 108, 163, 0.3);
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.mobile-menu-backdrop.active {
  display: block;
  animation: fade-in 0.3s ease;
}

.hamburger:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.hamburger span {
  height: 3px;
  width: 24px;
  background: white;
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

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

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

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

/* Enhanced Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
}

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

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 108, 163, 0.4) 0%, rgba(122, 193, 67, 0.4) 100%);
  z-index: 1;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.carousel-btn i {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
  background: var(--text-light);
  border-color: var(--text-light);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  animation: float 20s infinite linear;
  pointer-events: none;
  z-index: 2;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.animated-bg::before, .animated-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 8s infinite alternate;
}

.animated-bg::before {
  width: 400px;
  height: 400px;
  background: var(--primary-green);
  left: -100px;
  top: 20px;
  animation-delay: 0s;
}

.animated-bg::after {
  width: 300px;
  height: 300px;
  background: var(--text-light);
  right: -80px;
  bottom: 20px;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(-30px) scale(1.05) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  opacity: 1;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
}

.hero h1 {
  font-size: 3.2rem;
  margin: 1rem 0;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  background: linear-gradient(45deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: var(--primary-red);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(224, 58, 43, 0.3);
}

.cta-btn.primary:hover {
  background: #c02d1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(224, 58, 43, 0.4);
}

.cta-btn.secondary {
  background: #fff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(43, 108, 163, 0.07);
  opacity: 1;
  transition: all 0.3s;
}
.cta-btn.secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 16px rgba(43, 108, 163, 0.15);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.feature-item i {
  font-size: 1.2rem;
  color: var(--primary-green);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid var(--text-light);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Enhanced animations that don't break visibility */
.animate-fade-in {
  animation: fade-in 1s ease-out;
}

.animate-pop-in {
  animation: pop-in 1s cubic-bezier(.68,-0.55,.27,1.55);
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out;
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pop-in {
  0% { transform: scale(0.5) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes slide-up {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Statistics Section */
.stats {
  background: var(--text-light);
  padding: 4rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  background: var(--background);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.about-feature i {
  color: var(--primary-green);
  font-size: 1.3rem;
}

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

.director-card {
  background: var(--text-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.director-img {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.director-info h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.director-info p {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.director-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.director-social i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.director-social i:hover {
  color: var(--primary-green);
}

/* Services Section */
.services {
  background: var(--background);
  background-image: url('home/3.png');
  background-size: cover;
 
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--text-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 45deg, var(--primary-green), var(--primary-blue), var(--primary-green));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  animation: rotate 10s linear infinite;
}

.service-item:hover::before {
  opacity: 0.05;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

.service-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-item p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.service-benefits i {
  color: var(--primary-green);
  font-size: 0.9rem;
}

.service-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 193, 67, 0.3);
}

/* Gallery Section */
.gallery {
  background: var(--text-light);
  padding: 5rem 0;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  padding: 0.5rem 0;
}

.gallery-item {
  flex: 0 0 350px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* Full Screen Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-modal .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  animation: none;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10001;
}

.modal-close:hover {
  color: var(--primary-green);
}

.modal-info {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.modal-info h3 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

/* Gallery Navigation */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-btn {
  background: var(--primary-blue);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.gallery-btn:hover {
  background: var(--primary-green);
  transform: scale(1.1);
}

.gallery-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gallery-btn:disabled:hover {
  background: var(--primary-blue);
  transform: none;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  animation: fade-in 0.3s;
}

.modal-content {
  position: relative;
  background: var(--text-light);
  margin: 3% auto;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modal-slide-in 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes modal-slide-in {
  0% { transform: scale(0.7) translateY(-50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-blue);
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-img {
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.modal-icon {
  font-size: 5rem;
  color: var(--text-light);
  opacity: 0.9;
}

.modal-info {
  text-align: center;
}

.modal-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.modal-description {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background: var(--background);
  padding: 5rem 0;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-item {
  display: none;
  background: var(--text-light);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-item.active {
  display: block;
  animation: fade-in 0.5s ease;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 3rem;
  color: var(--primary-blue);
}

.author-info h4 {
  color: var(--primary-green);
  margin-bottom: 0.3rem;
}

.author-info span {
  color: var(--text-dark);
  opacity: 0.8;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  background: var(--primary-blue);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: var(--primary-green);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-blue);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Newsletter Section */
.newsletter {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 4rem 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.newsletter-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.newsletter-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.newsletter-input {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input i {
  position: absolute;
  left: 1rem;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.newsletter-input input {
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  width: 300px;
  outline: none;
}

.newsletter-btn {
  background: var(--primary-red);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #c02d1f;
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-green);
}

.contact-form {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  background: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary-green);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  min-height: 1.5em;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  cursor: pointer;
}

.fab-btn.whatsapp {
  background: #25d366;
}

.fab-btn.phone {
  background: var(--primary-blue);
}

.fab-btn.scroll-top {
  background: var(--primary-green);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fab-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-logo h3 {
  color: var(--text-light);
  margin: 0;
}

.footer-section p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-green);
  opacity: 1;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--primary-green);
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
  opacity: 1;
}

/* Scroll Animation Classes - Fixed for visibility */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

.animate-on-scroll:not(.visible) {
  /* opacity: 0.3; */
  transform: translateY(30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .directors-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  nav a.nav-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Gallery slider responsive */
  .gallery-item {
    flex: 0 0 320px;
    height: 250px;
  }
  
  .gallery-track {
    gap: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  
  nav ul {
    flex-direction: column;
    background: var(--text-light);
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    display: none;
    padding: 1.5rem 0;
    z-index: 1000;
    border: 1px solid #e1e5e9;
  }
  
  nav ul.open {
    display: flex;
    animation: slideDownCenter 0.3s ease;
  }
  
  @keyframes slideDownCenter {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
    }
  }
  
  nav a.nav-btn {
    color: var(--primary-blue);
    background: none;
    padding: 1rem 2rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    display: block;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  
  nav a.nav-btn:last-child {
    border-bottom: none;
  }
  
  nav a.nav-btn:hover {
    background: var(--background);
    color: var(--primary-green);
    transform: none;
    box-shadow: none;
  }
  
  nav a.nav-btn::before {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .newsletter-input input {
    width: 250px;
  }
  
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Carousel controls responsive */
  .carousel-controls {
    bottom: 1.5rem;
    gap: 1.5rem;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
  }
  
  .carousel-btn i {
    font-size: 1rem;
  }
  
  .carousel-dots {
    gap: 0.6rem;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  .video-item {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
  }
  .video-container {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .video-container iframe {
    width: 100vw !important;
    height: 100% !important;
    min-width: 0;
    border-radius: 0;
    display: block;
  }
  .video-info {
    padding: 1.2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  header {
    padding: 0.6rem 0;
  }
  
  .logo {
    height: 45px;
    width: 45px;
  }
  
  .logo-container {
    gap: 0.5rem;
  }
  
  .company-title {
    font-size: 1rem;
  }
  
  .company-subtitle {
    font-size: 0.7rem;
  }
  
  nav ul {
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    top: 70px;
  }
  
  .hero {
    padding: 2rem 0;
    min-height: 70vh;
  }
  
  .hero-badge {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin: 0.8rem 0;
  }
  
  .tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .feature-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .service-item {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-item h3 {
    font-size: 1.3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-filters {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .filter-btn {
    width: 200px;
    text-align: center;
  }
  
  .testimonial-item {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-text p {
    font-size: 1rem;
  }
  
  .contact-form,
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 95%;
    padding: 1.5rem;
  }
  
  .modal-img {
    height: 200px;
  }
  
  .modal-icon {
    font-size: 3.5rem;
  }
  
  .modal-title {
    font-size: 1.4rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  
  .fab-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .fab-tooltip {
    display: none;
  }
  
  /* Carousel controls for small mobile */
  .carousel-controls {
    bottom: 0.8rem;
    gap: 0.8rem;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
  
  .carousel-btn i {
    font-size: 0.8rem;
  }
  
  .carousel-dots {
    gap: 0.4rem;
  }
  
  .carousel-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .tagline {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .service-item h3 {
    font-size: 1.2rem;
  }
  
  .modal-content {
    padding: 1rem;
  }
}

/* Video Section */
.videos {
  background: var(--background);
  padding: 5rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-item {
  background: var(--text-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 16:9 aspect ratio for YouTube Shorts (9:16) */
  background: var(--gradient-primary);
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--gradient-primary);
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ff0000;
}

.video-placeholder p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-info p {
  color: var(--text-dark);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.video-cta {
  text-align: center;
  margin-top: 3rem;
}

.video-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #ff0000;
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.video-cta .cta-btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.video-cta .cta-btn i {
  font-size: 1.3rem;
}

@media (max-width: 480px) {
  .video-item {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  .video-container {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  .video-container iframe {
    width: 100vw !important;
    border-radius: 0;
  }
}

/* Mission Vision Value Quality Section */
.mvq-section {
  background: var(--background);
  padding: 5rem 0 3rem 0;
}
.mvq-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
.mvq-row-reverse {
  flex-direction: row-reverse;
}
.mvq-img {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvq-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(43, 108, 163, 0.10);
  background: #fff;
}
.mvq-content {
  flex: 2 1 400px;
  padding: 2rem 1rem;
  background: var(--text-light);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43, 108, 163, 0.07);
}
.mvq-content h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 2rem;
}
.mvq-content p, .mvq-content ul {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.mvq-content ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem 0;
}
.mvq-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 1024px) {
  .mvq-row, .mvq-row-reverse {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: stretch;
  }
  .mvq-img, .mvq-content {
    max-width: 100%;
    padding: 1rem 0.5rem;
  }
  .mvq-img img {
    /* max-width: 220px; */
    margin: 0 auto;
    display: block;
  }
  .mvq-content h2 {
    font-size: 1.4rem;
  }
  .mvq-content p, .mvq-content ul {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .mvq-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .mvq-row, .mvq-row-reverse {
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .mvq-img img {
    /* max-width: 140px; */
  }
  .mvq-content {
    padding: 1rem 0.5rem;
    border-radius: 10px;
  }
  .mvq-content h2 {
    font-size: 1.1rem;
  }
  .mvq-content p, .mvq-content ul {
    font-size: 0.95rem;
  }
}

/* Dynamic hover effects for Mission/Vision/Value/Quality section */
@media (hover: hover) and (pointer: fine) {
  .mvq-row:hover .mvq-content,
  .mvq-row:focus-within .mvq-content {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(43, 108, 163, 0.18), 0 0 0 4px var(--primary-blue, #2b6ca3);
    border: 1.5px solid var(--primary-blue, #2b6ca3);
    transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    background: linear-gradient(135deg, #fff 80%, rgba(43,108,163,0.04) 100%);
  }
  .mvq-row:hover .mvq-img img,
  .mvq-row:focus-within .mvq-img img {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(122, 193, 67, 0.18), 0 0 0 4px var(--primary-green, #7ac143);
    transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  }
}

.mvq-content {
  transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
.mvq-img img {
  transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}

/* Company Profile Section */
.company-profile {
  background: var(--text-light);
  padding: 4rem 0 3rem 0;
}
.profile-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.profile-img {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}
.profile-img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(43, 108, 163, 0.10);
  background: #fff;
  border: 4px solid var(--primary-blue);
}
.profile-badges {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.badge {
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(122, 193, 67, 0.10);
  letter-spacing: 1px;
  border: 2px solid #fff;
}
.profile-content {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(43, 108, 163, 0.07);
  padding: 2.5rem 2rem;
  min-width: 300px;
  max-width: 700px;
}
.profile-content h2 {
  color: var(--primary-blue);
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  font-weight: 700;
}
.profile-lead {
  font-size: 1.2rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.profile-content p {
  color: var(--text-dark);
  font-size: 1.08rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .profile-flex {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .profile-img img {
    width: 120px;
    height: 120px;
  }
  .profile-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  .profile-content h2 {
    font-size: 1.4rem;
  }
  .profile-lead {
    font-size: 1.05rem;
  }
  .profile-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .company-profile {
    padding: 2rem 0 1.5rem 0;
  }
  .profile-img img {
    width: 80px;
    height: 80px;
  }
  .profile-content {
    padding: 1rem 0.5rem;
    border-radius: 10px;
  }
  .profile-content h2 {
    font-size: 1.1rem;
  }
  .profile-lead {
    font-size: 0.95rem;
  }
  .profile-content p {
    font-size: 0.95rem;
  }
}

/* Company Catalogue Section */
.catalogue-section {
  background: var(--background);
  padding: 4rem 0 3rem 0;
  text-align: center;
}
.catalogue-actions {
  margin: 2rem 0 1.5rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.catalogue-actions .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
}
.catalogue-preview {
  margin: 0 auto;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43, 108, 163, 0.10);
}
.catalogue-preview iframe {
  width: 100%;
  min-height: 300px;
  border: none;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 900px) {
  .catalogue-preview {
    max-width: 100%;
  }
  .catalogue-preview iframe {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .catalogue-section {
    padding: 2rem 0 1.5rem 0;
  }
  .catalogue-actions {
    gap: 0.7rem;
  }
  .catalogue-preview iframe {
    height: 400px;
    border-radius: 8px;
  }
}
