/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: #f8f9fa;
}

/* Header Styles */
.main-header {
  background: radial-gradient(circle at 50% 50%, white 0%, #c1dae9 100%) !important;
  background-image: -moz-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 0%, #c1dae9 100%);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(193, 218, 233, 0.3);
  transition: all 0.3s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.logo h1 {
  font-size: 38px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.logo span {
  color: #2c3e50;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.main-nav a:hover,
.main-nav a.active {
  color: #1e40af;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e50;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.mobile-menu-btn:hover {
  color: #1e40af;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  animation: zoomIn 1.5s ease-out;
  transform-origin: center center;
}

.hero-overlay {
  background: transparent;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 100px;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-title-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  padding: 25px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #2c3e50 !important;
  text-shadow: none;
  display: inline-block;
  max-width: 90%;
  line-height: 1.2;
}

.hero-tagline {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #1e40af;
  margin-top: 15px;
  line-height: 1.4;
  text-transform: none;
  border-top: 2px solid #e1e8ed;
  padding-top: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 25px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #1e40af;
  color: white;
  animation: fadeInUp 1s ease 0.4s both;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: fadeInUp 1s ease 0.4s both;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: #1e40af;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.underline {
  width: 60px;
  height: 4px;
  background: #1e40af;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  background-image: -moz-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 0%, #c1dae9 100%);
}

.about-content {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature:hover {
  transform: translateY(-10px);
  border-color: #1e40af;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.feature i {
  font-size: 48px;
  color: #1e40af;
  margin-bottom: 20px;
}

.feature h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

/* Services Section */
#services {
  background-image: -moz-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 30%, #c1dae9 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #1e40af;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.service-icon {
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 48px;
  color: #1e40af;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  background-image: -moz-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 0%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 0%, #c1dae9 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 300px;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.gallery-overlay p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Video Section */
#video {
  background-image: -moz-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 30%, #c1dae9 100%);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.12);
  background: #000;
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.18);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.video-container video:focus {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
}

/* Responsive video styling */
@media (max-width: 768px) {
  .video-container {
    margin: 0 20px;
    border-radius: 10px;
  }
  
  .video-container video {
    border-radius: 10px;
  }
}

/* Contact Section */
#contact {
  background-image: -moz-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -o-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -ms-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: -webkit-radial-gradient(50% 50%, white 30%, #c1dae9 100%);
  background-image: radial-gradient(circle at 50% 50%, white 30%, #c1dae9 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 30px;
}

.contact-map {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

.map-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(30, 64, 175, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-map:hover .map-overlay {
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item i {
  font-size: 24px;
  color: #1e40af;
  margin-top: 5px;
  min-width: 24px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-item a {
  color: #1e40af;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.form-group label {
  min-width: 120px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  text-align: right;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e40af;
}

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

/* File Upload Styling */
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 2px dashed #3498db;
  border-radius: 10px;
  background: #f8f9ff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 15px;
}

.file-upload-label:hover {
  border-color: #1e40af;
  background: #f0f4ff;
  transform: translateY(-2px);
}

.file-upload-label i {
  font-size: 24px;
  color: #3498db;
  margin-bottom: 10px;
}

.file-upload-label span {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.file-upload-label small {
  color: #666;
  font-size: 12px;
}

#file-upload {
  display: none;
}

.file-list {
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  margin-bottom: 8px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-info i {
  color: #3498db;
}

.file-name {
  font-weight: 500;
  color: #333;
}

.file-size {
  font-size: 12px;
  color: #666;
}

.file-remove {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s ease;
}

.file-remove:hover {
  background: #c0392b;
}

/* Footer */
.main-footer {
  background: #2c3e50;
  color: white;
  padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #3498db;
}

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

.footer-section ul li {
  margin-bottom: 8px;
  color: #bdc3c7;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }
  
  .main-nav ul li {
    border-bottom: 1px solid #eee;
  }
  
  .main-nav ul li:last-child {
    border-bottom: none;
  }
  
  .main-nav a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Mobile Header Layout */
  .main-header {
    padding: 20px 0;
  }
  
  .main-header .container {
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
  }
  
  /* Mobile Logo Adjustments */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  
  .logo h1 {
    display: none; /* Hide "CDM Decorative Glass" text on mobile */
  }
  
  .logo-img {
    height: 100px; /* Larger logo on mobile */
    width: auto;
  }
  
  /* Mobile Hero Image Scaling */
  .hero {
    width: 100%;
    margin-left: 0;
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-bg-img {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
  }
  
  .hero h2 {
    font-size: 32px;
  }

  /* Mobile Hero Title Highlight Adjustments */
  .hero-title-highlight {
    padding: 25px 20px;
    margin-top: 160px; /* Space for mobile logo and header */
    font-size: 32px;
    line-height: 1.3;
    max-width: 95%;
  }

  .hero-tagline {
    font-size: 16px;
    margin-top: 12px;
    padding-top: 12px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero h2 {
    font-size: 28px;
  }

  /* Small Mobile Hero Title Highlight Adjustments */
  .hero-title-highlight {
    padding: 20px 15px;
    margin-top: 170px; /* Extra space for smaller screens */
    font-size: 28px;
    line-height: 1.4;
    max-width: 98%;
  }

  .hero-tagline {
    font-size: 14px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Specifications Section */
.specifications-content {
  max-width: 1000px;
  margin: 0 auto;
}

.spec-overview {
  text-align: center;
  margin-bottom: 50px;
}

.spec-overview h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.spec-overview p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.spec-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.spec-icon i {
  font-size: 24px;
  color: white;
}

.spec-card h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.spec-card p {
  color: #666;
  line-height: 1.6;
}

.spec-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.spec-details h4 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.spec-details ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.spec-details li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  color: #666;
}

.spec-details li:last-child {
  border-bottom: none;
}

.spec-details li strong {
  color: #2c3e50;
}

/* Gallery Slideshow Styles */
.gallery-slideshow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.slide.active {
  opacity: 1;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  text-align: center;
}

.slide-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #2c3e50;
  transition: all 0.3s ease;
  z-index: 10;
}

.slide-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slide-nav.prev {
  left: 20px;
}

.slide-nav.next {
  right: 20px;
}

/* Slide Indicators */
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: #3498db;
  transform: scale(1.2);
}

/* Responsive Design for Slideshow */
@media (max-width: 768px) {
  .slideshow-container {
    height: 400px;
  }
  
  .slide-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slide-nav.prev {
    left: 15px;
  }
  
  .slide-nav.next {
    right: 15px;
  }
  
  .slide-content {
    padding: 30px 20px 20px;
  }
  
  .slide-content h4 {
    font-size: 20px;
  }
  
  .slide-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    height: 300px;
  }
  
  .slide-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .slide-nav.prev {
    left: 10px;
  }
  
  .slide-nav.next {
    right: 10px;
  }
  
  .slide-content {
    padding: 25px 15px 15px;
  }
  
  .slide-content h4 {
    font-size: 18px;
  }
  
  .slide-content p {
    font-size: 13px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Tagline Styling */
.tagline {
  background: #1e40af;
  color: white !important;
  padding: 15px 25px;
  border-radius: 8px;
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  border: 2px solid #3b82f6;
  max-width: 800px;
}

.tagline strong {
  color: white;
  font-weight: 700;
}

/* Tagline Subtitle in Headings */
.tagline-subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
  margin-top: 10px;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 16px;
    padding: 12px 20px;
    margin: 15px 10px 0;
  }
  
  .tagline-subtitle {
    font-size: 16px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 14px;
    padding: 10px 15px;
    margin: 10px 5px 0;
  }
  
  .tagline-subtitle {
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.3;
  }
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Simple Contact Section */
.simple-contact {
  text-align: center;
  padding: 40px 20px;
}

.simple-contact h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.simple-contact p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto 30px;
}

.contact-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-buttons .btn i {
  font-size: 18px;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #1e40af;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info-box h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
}

.contact-info-box li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.contact-info-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: bold;
}

.direct-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.direct-contact-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.direct-contact-buttons .btn i {
  font-size: 16px;
}

/* Mobile responsive for contact buttons */
@media (max-width: 768px) {
  .contact-buttons {
    max-width: 100%;
  }
  
  .contact-buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .contact-info-box {
    margin: 0 10px;
  }
  
  /* Stack form labels above inputs on mobile */
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .form-group label {
    min-width: auto;
    text-align: left;
    margin-bottom: 0;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
  }
}
