  /* Hero Section Styles */
  .hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-bottom: 60px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    background: var(--light-egg);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #003366;
  }
  
  /* Volume Control Styles */
  .volume-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .volume-control:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
  }
  
  .volume-control img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 50px;
    }
    
    .volume-control {
      bottom: 20px;
      right: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 55px;
    }
    
    .hero-btns {
      flex-direction: row;
      gap: 15px;
    }
    
    .hero-content p {
      font-size: 16px;
    }
    
    .btn {
      padding: 10px 25px;
      font-size: 12px;
    }
    
    .volume-control {
      width: 36px;
      height: 36px;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      min-height: 600px;
    }
    
    .hero-content h1 {
      font-size: 50px;
    }
    
    .hero-content p {
      font-size: 16px;
    }
    
    .volume-control {
      bottom: 15px;
      right: 15px;
      width: 32px;
      height: 32px;
    }
    
    .volume-control img {
      width: 20px;
      height: 20px;
    }
  }

         .featured-section {
      text-align: center;
      margin-bottom: 60px;
    }

    .featured-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      position: relative;
    }

    .logo-item {
      width: 120px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* filter: grayscale(100%); */
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .logo-item:nth-child(2n) {
      top: 10px;
      z-index: 0;
    }

    .logo-item:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
      z-index: 2;
    }

    .logo-item img {
      max-width: 80%;
      max-height: 70%;
      object-fit: contain;
    }


  
        /* Announcement Section Styles */
        .announcement {
            background-color: var(--charcoal);
            color: white;
            text-align: center;
            padding: 40px 0;
            margin-bottom: var(--margin-bottom);
        }
        .announcement h3 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        .announcement p {
            font-size: 16px;
            font-weight: 100;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 5px;
            min-width: 100px;
        }
        .countdown-number {
            font-size: 30px;
            font-weight: 700;
            color: #d4af37;
        }
        .countdown-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .countdown {
                flex-wrap: wrap;
            }
        }



        /* Articles Section Styles */
        .articles {
            background-color: #f8f9fa;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .article-img {
            height: 360px;
            overflow: hidden;
        }
        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* transition: all 0.3s ease; */
        }
        /* .article-card:hover .article-img img {
            transform: scale(1.1);
        } */
        .article-content {
            padding: 25px;
        }
        .article-date {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }
        .article-title {
          font-size: 18px;
    margin-bottom: 15px;
    color: #003366;
        }
        .article-excerpt {
          font-weight: 400;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
        }
        .read-more {
            font-weight: 600;
            color: #d4af37;
            display: inline-flex;
            align-items: center;
        }
        .read-more i {
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        .read-more:hover i {
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }
   
           .flex-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 20px;
            margin-top: 60px;
            list-style: none;
        }
        
        .flex-item {
            flex: 1 1 300px;
            max-width: 100%;
        }
        
        .feature-card {
            text-align: center;
            border-top: 5px solid var(--gray-web);
            border-radius: 18px;
            padding: 20px;
            background-color: var(--light-silver);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .card-icon {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
        }
        
        .card-title {
            margin-bottom: 15px;
            color: #333;
        }
        
        .card-text {
            color: #555;
            margin-bottom: 15px;
        }
        
        /* Gold card specific styles */
        .flex-item:nth-child(2) .feature-card {
            border-top-color: var(--gold);
            background-color: var(--light-gold);
        }
        
        /* Responsive adjustments */
        @media (min-width: 768px) {
            .flex-list {
                gap: 50px;
                padding-inline: 50px;
            }
            
            .flex-item {
                max-width: calc(33.33% - 33.33px);
            }
            
            .flex-item:nth-child(2) .feature-card {
                margin-top: -50px;
            }
        }
        
        @media (min-width: 1024px) {
            .flex-list {
                gap: 60px;
            }
            
            .flex-item {
                max-width: calc(33.33% - 40px);
            }
            
            .flex-item:nth-child(2) .feature-card {
                margin-top: -140px;
            }
        }
        /* Clients Section Styles */
        .clients {
            background-color: white;
        }
        .testimonials {
            max-width: 1000px;
            margin: 0 auto;
        }
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }
        .client-img {
          width: auto;
    height: 400px;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 5px solid #d4af37; */
    margin: 0 auto 20px;
        }
        .client-quote {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        .client-name {
            font-weight: 700;
            color: #003366;
            margin-bottom: 5px;
        }
        .client-title {
            color: #777;
            font-size: 0.9rem;
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dot.active {
            background: #d4af37;
        }
     

  
        
        .trophy-description {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        
        .trophy-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .main-trophy {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .image-caption {
            margin-top: 1rem;
            font-style: italic;
            color: #666;
        }
        
        .symbolism {
            flex: 2;
            min-width: 300px;
        }
        
  
        .symbolism p {
    font-weight: 100;
    font-size: 16px;
}

.symbolism p strong {
    font-weight: 500; 
    color: var(--charcoal);
}

       
        
        
        @media (max-width: 768px) {
            .trophy-description {
                flex-direction: column;
            }
            
            .trophy-image, .symbolism {
                flex: none;
                width: 100%;
            }
        }
    /* AWARD NIGHT GALLERY */

    .alt-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        /* margin: 20px; */
    }

    /* First row - 2 equal columns */
    .alt-grid .grid-item:nth-child(1),
    .alt-grid .grid-item:nth-child(2) {
        grid-column: span 3;
        aspect-ratio: 16/9; /* Wider format */
    }

    /* Second row - 3 equal columns */
    .alt-grid .grid-item:nth-child(n+3) {
        grid-column: span 2;
        aspect-ratio: 1; /* Square format */
    }

    .grid-item {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        position: relative;
        cursor: pointer;
    }

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

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .expand-icon {
        color: white;
        font-size: 2rem;
    }

    .grid-item:hover .image-overlay {
        opacity: 1;
    }

    .grid-item:hover img {
        transform: scale(1.03);
    }

    /* Gallery Modal Styles */
    .gallery-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .modal-image {
        max-height: 80vh;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .close-modal {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }

    .modal-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .nav-button {
        background: rgba(255,255,255,0.2);
        border: none;
        color: white;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .nav-button:hover {
        background: rgba(255,255,255,0.4);
    }

    .nav-button ion-icon {
        font-size: 1.5rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .alt-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .alt-grid .grid-item {
            grid-column: span 1 !important;
            aspect-ratio: 1;
        }

        .modal-nav {
            display: none; /* Hide navigation on mobile */
        }
    }

    .footer-title {
        letter-spacing: 2px;
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

    .footer-year {
        color: var(--silver);
        font-size: 12px;
        letter-spacing: 1px;
        text-align: center;
    }

      /* TESTIMONIAL SECTION */
      .testimonials-section {
            padding: 50px 0;
            background-color: white;
            position: relative;
        }

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

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

        .section-subtitle {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }

  

        .section-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* TESTIMONIAL CARDS */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            padding: 40px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2.5rem;
            color: #d4af375e;
                  }

        .testimonial-content {
            margin-bottom: 30px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--charcoal);
            position: relative;
            z-index: 1;
            font-weight: 100;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid rgba(197, 48, 48, 0.1);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        .author-role {
            display: block;
            font-weight: 500;
        }

        .media-logo {
            height: 25px;
            margin-top: 15px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover .media-logo {
            opacity: 1;
        }

        /* DECORATIVE ELEMENTS */
        .decorative-line {
            position: absolute;
            height: 100%;
            width: 1px;
            background: rgba(0, 0, 0, 0.03);
            left: 50%;
            top: 0;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

          
        }
   .social-bar {
            display: flex;
            flex-direction: column; /* Stack vertically on mobile */
            align-items: center;
            gap: 20px;
            padding: 20px;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
        }
        
        .social-cta {
            font-size: clamp(16px, 4vw, 18px); /* Responsive font size */
            font-weight: 600;
            color: #2d3748;
            text-align: center; /* Center text on mobile */
        }
        
        .social-icons {
            display: flex;
            flex-wrap: wrap; /* Allow icons to wrap on small screens */
            justify-content: center; /* Center icons */
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 60px; /* Minimum size for touch targets */
        }
        
        .social-icon {
            width: 50px; /* Slightly smaller on mobile */
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px; /* Smaller icon */
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-bottom: 5px;
        }
        
        .social-label {
            font-size: 10px; /* Smaller label */
            font-weight: 600;
            color: #4a5568;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.8;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .social-link:hover .social-icon {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .social-link:hover .social-label {
            color: #2d3748;
            opacity: 1;
        }
        
        /* Platform Colors */
        .facebook { background: #1877f2; }
        .twitter { background: #1da1f2; }
        .instagram { background: linear-gradient(45deg, #405de6, #833ab4, #c13584, #e1306c); }
        .youtube { background: #ff0000; }
        .linkedin { background: #0077b5; }
        .tiktok { background: #000000; }
        
        /* Tablet and Desktop Styles */
        @media (min-width: 768px) {
            .social-bar {
                flex-direction: row; /* Horizontal layout on larger screens */
                justify-content: center;
                gap: 30px;
                padding: 25px;
            }
            
            .social-cta {
                white-space: nowrap;
                margin-right: 15px;
                text-align: left;
            }
            
            .social-icons {
                flex-wrap: nowrap;
                gap: 20px;
            }
            
            .social-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
                margin-bottom: 8px;
            }
            
            .social-label {
                font-size: 12px;
            }
        }
/* Inline styles extracted from the HTML */
main {
  line-height: 1.6;
}

.featured-section h3 {
  text-align: center;
  color: gray;
  font-weight: 400;
  letter-spacing: 3px;
}

.testimonial-card h3 {
  color: gray;
  font-weight: 400;
  letter-spacing: 3px;
}

.testimonial-card h3:last-child {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 3px;
}

.articles .section-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: var(--margin-bottom);
}

.trophy .section-title {
  text-align: center;
  color: var(--gold);
}

.clients .section-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: var(--margin-bottom);
}

.symbolism {
  line-height: 1.8;
}

.trophy-description p {
  text-align: center;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
}

.gallery .title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-block-end: 50px;
}

.gallery .section-title {
  color: var(--gold);
}

.gallery .btn-link {
  color: var(--charcoal);
}
/* Slideshow styles */
.fade-slide {
  display: none;
  transition: opacity 1s ease;
}

.fade-slide.active {
  display: block;
  animation: fade 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Dot navigation styles */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}