.elementor-7 .elementor-element.elementor-element-9f4446d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9d06c75 *//* Import Premium Fonts */


/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Premium Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #C8A060, #E6C896);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 25px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.section-badge:hover::before {
  left: 100%;
}

.section-header h2 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.section-header p {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Premium Buttons */
.btn-primary, .btn-secondary {
  padding: 18px 40px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #C8A060, #E6C896);
  color: white;
  box-shadow: 0 8px 30px rgba(200, 160, 96, 0.3);
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 160, 96, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #C8A060;
  border: 2px solid #C8A060;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #C8A060;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 160, 96, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(200,160,96,0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.1;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title span {
  color: #E6C896;
  position: relative;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 50px;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
  padding: 150px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23C8A060" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 96, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 160, 96, 0.02), rgba(230, 200, 150, 0.02));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.service-icon {
  position: relative;
  margin-bottom: 35px;
  display: inline-block;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C8A060, #E6C896);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.5s ease;
}

.service-card:hover .icon-bg {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.2);
}

.service-icon span {
  font-size: 48px;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.service-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.service-features span {
  padding: 8px 16px;
  background: rgba(200, 160, 96, 0.1);
  color: #C8A060;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Exhibition Stands Section */
.exhibition-stands-section {
  padding: 150px 0;
  background: white;
  position: relative;
}

.featured-project {
  margin-bottom: 100px;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.featured-text h3 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.featured-text p {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.premium-features {
  margin-bottom: 40px;
}

.premium-features .feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(200, 160, 96, 0.1);
}

.premium-features .feature-item:last-child {
  border-bottom: none;
}

.premium-features .feature-icon {
  color: #C8A060;
  font-size: 18px;
  font-weight: bold;
}

.premium-features span {
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(200,160,96,0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-frame:hover .image-overlay {
  opacity: 1;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.project-item {
  transition: all 0.5s ease;
}

.project-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.project-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(200,160,96,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 30px;
}

.overlay-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 16px;
}

.overlay-line {
  width: 60px;
  height: 2px;
  background: #E6C896;
  margin: 0 auto;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-frame img {
  transform: scale(1.1);
}

.project-item:hover {
  transform: translateY(-10px);
}

/* Events Section */
.events-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.events-showcase {
  margin-top: 80px;
}

.event-main h3 {
  font-size: 38px;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.event-description {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.event-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.event-item {
  transition: all 0.5s ease;
}

.event-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.event-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(200,160,96,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.event-item:hover .event-overlay {
  opacity: 1;
}

.event-item:hover .event-frame img {
  transform: scale(1.05);
}

.event-item:hover {
  transform: translateY(-10px);
}

/* Custom Projects Section */
.custom-projects-section {
  padding: 150px 0;
  background: white;
}

.projects-showcase {
  margin-top: 80px;
}

.custom-project-large {
  margin-bottom: 100px;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.project-text h3 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.project-text p {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
}

.project-features {
  margin-bottom: 50px;
}

.project-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  border-left: 4px solid #C8A060;
}

.project-features .feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-content h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.custom-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.custom-item {
  transition: all 0.5s ease;
}

.custom-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.custom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(200,160,96,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.custom-item:hover .custom-overlay {
  opacity: 1;
}

.custom-item:hover .custom-frame img {
  transform: scale(1.1);
}

.custom-item:hover {
  transform: translateY(-10px);
}

/* Stats Section */
.stats-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23C8A060" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-text {
  text-align: center;
  margin-bottom: 80px;
}

.stats-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

.stats-text p {
  font-size: 20px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  position: relative;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  background: linear-gradient(135deg, #C8A060, #E6C896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 20px;
}

.stat-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #C8A060, #E6C896);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-header h2 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.about-header .lead {
  font-size: 22px;
  color: #555;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.7;
}

.about-header p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: left;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 4px solid #C8A060;
}

.feature-icon {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-text h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-text p {
  color: #666;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}

.about-features .btn-primary {
  margin-top: 20px;
  align-self: flex-start;
}

.about-images {
  position: relative;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 20px;
  height: 520px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.image-frame.main-image {
  grid-row: span 2;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(200,160,96,0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-frame:hover .image-overlay {
  opacity: 1;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Responsive Design for About Section */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 180px;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 100px 0;
  }
  
  .about-header {
    margin-bottom: 60px;
  }
  
  .about-header h2 {
    font-size: 36px;
  }
  
  .about-header .lead {
    font-size: 20px;
  }
  
  .about-header p {
    font-size: 16px;
  }
  
  .about-content {
    gap: 50px;
  }
  
  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 200px 200px;
    height: auto;
  }
  
  .image-frame.main-image {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .feature {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-icon {
    margin-top: 0;
  }
  
  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 180px 180px;
    gap: 15px;
  }
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 600;
  color: white;
}

.cta-content p {
  font-size: 22px;
  margin-bottom: 60px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
}

.cta-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.cta-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.cta-item p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .featured-content,
  .project-content,
  .about-content {
    gap: 60px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 968px) {
  .hero-title {
    font-size: 52px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section-header h2 {
    font-size: 40px;
  }
  
  .featured-content,
  .project-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .event-images-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .cta-info {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 85px;
    height: 90vh;
    min-height: 700px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .services-overview,
  .exhibition-stands-section,
  .events-section,
  .custom-projects-section,
  .about-section {
    padding: 100px 0;
  }
  
  .cta-section,
  .stats-section {
    padding: 100px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .featured-text h3,
  .project-text h3 {
    font-size: 32px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .project-frame,
  .event-frame,
  .custom-frame {
    height: 280px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .about-image-grid {
    height: 400px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 14px;
  }
  
  .service-card {
    padding: 40px 25px;
  }
  
  .service-card h3 {
    font-size: 24px;
  }
  
  .projects-grid,
  .custom-projects-grid {
    gap: 20px;
  }
  
  .project-frame,
  .event-frame,
  .custom-frame {
    height: 250px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .about-text h2 {
    font-size: 32px;
  }
  
  .lead {
    font-size: 20px;
  }
  
  .feature {
    padding: 20px;
  }
  
  .project-features .feature-item {
    padding: 20px;
  }
}

/* Premium Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card {
  animation: fadeInUp 0.8s ease-out;
}

.project-item,
.event-item,
.custom-item {
  animation: fadeInUp 0.6s ease-out;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.feature {
  animation: fadeInLeft 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #C8A060, #E6C896);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #B8956A, #D6B886);
}/* End custom CSS */