/* Prevent scrolling and zooming */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Disable pinch zoom on mobile */
@viewport {
  width: device-width;
  zoom: 1.0;
  min-zoom: 1.0;
  max-zoom: 1.0;
  user-zoom: fixed;
}
/* Header and Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background 0.3s ease-in-out;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
}

/* General Styles */
body {
  font-family: 'Bahnschrift';
  font-weight: bold;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  overflow-x: hidden;
  width: 100%;
}

/* Logo Styles */
.logo img {
  height: 40px;
  font-weight: bold;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  margin-top: 15px;
  margin-left: 15px;
}
/* Mobile Logo Styles */
@media (max-width: 768px) {
  .logo img {
    height: 30px; /* Smaller logo on mobile */
    margin-top: 10px;
    margin-left: 10px;
  }
}

/* Font Import */
@font-face {
  font-family: 'Bahnschrift';
  src: local('Bahnschrift'), url('fonts/Bahnschrift.ttf') format('truetype');
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 15px 20px;
  position: fixed;
  width: calc(100% - 40px);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  font-family: 'Bahnschrift';
  transition: all 0.4s ease;
}

/* Scrolled state with semi-transparent white */
nav.scrolled {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Text styling - dark when scrolled */
nav.scrolled .nav-links a,
nav.scrolled .dropbtn {
  color: black;
}

/* Hover effect when scrolled */
nav.scrolled .nav-links a:hover,
nav.scrolled .dropdown:hover .dropbtn {
  color: white;
  background-color: #e63946;
  border-color: #e63946;
}

/* Dropdown menu styling when scrolled */
nav.scrolled .dropdown-content,
nav.scrolled .sub-dropdown {
  background-color: rgba(40, 40, 40, 0.85);
}

nav.scrolled .dropdown-content a,
nav.scrolled .sub-dropdown a {
  color: #f8f9fa;
}

nav.scrolled .dropdown-content a:hover,
nav.scrolled .sub-dropdown a:hover {
  background-color: #e63946;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.nav-links li {
  margin: 0 6px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

/* Hover effect to add a box when hovering over each nav item */
.nav-links a:hover {
  color: white;
  background-color: red;
  border: 2px solid red;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown Button */
.dropdown {
  position: relative;
}

.dropbtn {
  padding: 8px 15px;
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Bahnschrift';
  font-weight: bold;
  color: black;
}

.dropdown:hover .dropbtn {
  background-color: red;
  color: white;
}

/* COMMON STYLES FOR DROPDOWN AND SUBDROPDOWN */
.dropdown-content,
.sub-dropdown {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dropdown-content a,
.sub-dropdown a {
  color: black;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.dropdown-content a:hover,
.sub-dropdown a:hover {
  background-color: red;
  color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Other Services dropdown */
.other-services {
  position: relative;
}

.other-services .sub-dropdown {
  left: 100%;
  top: 0;
}

/* Arrow indicator (changes direction when open) */
.other-services > a[aria-expanded="true"]:after {
  content: " ▲";
}
.other-services > a:not([aria-expanded="true"]):after {
  content: " ▼";
}

































/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 175vh;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  overflow: hidden;
}

/* Hero Section Video */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73%;
  object-fit: cover;
  z-index: -1;
}

.hero h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.hero p {
  font-size: 1.2rem;
}









/* Sections */
section {
  padding: 80px 50px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}


















/* Portfolio Section */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.project {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  max-width: 300px;
  width: 100%;
}

.project:hover {
  transform: scale(1.05);
}














/* Video Tour */
.video-container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 70%;
  max-width: 100%;
}

video {
  width: 100%;
  max-width: 100%;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  /* Hero section stays the same height */
  .hero {
    height: 95vh; /* Keep original height */
  }
  
  /* Only make video smaller on mobile */
  .hero video {
    height: 40%; /* Smaller video size on mobile */
    object-fit: cover;
    object-position: center;
  }
  
  .hero h1 {
    font-size: 2rem; /* Smaller text on mobile */
    margin: 5px 0;
  }
  
  .hero p {
    font-size: 1rem; /* Smaller paragraph text */
    padding: 0 20px; /* Add padding to prevent text from touching edges */
  }
  
  /* Adjust sections padding for mobile */
  section {
    padding: 40px 20px;
  }
  
  /* Portfolio grid adjustments for mobile */
  .portfolio-grid {
    gap: 10px;
  }
  
  .project {
    max-width: 100%;
    margin: 0 10px;
  }
  
  /* Video container adjustments for mobile */
  .video-container {
    width: 90%;
  }
}

/* Tablet view */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    height: 120vh; /* Medium height for tablets */
  }
  
  .hero video {
    height: 85%; /* Better coverage on tablets */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}
























/* Gallery Section */
#gallery {
  padding: 50px 0 20px; /* Added bottom padding for spacing */
  margin-top: -80px;
  text-align: center;
  background: linear-gradient(135deg, #f9f9f9, #eaeaea); /* Subtle gradient background */
  position: relative;
}
/* Gallery Section Header - Matching Your Style */
.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-size: 1.8rem;
    color: red;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-header h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #999; /* Changed from #aaa to black */
    bottom: 0;
    left: 25%;
}

/* Gallery Wrapper - Rest of your existing styles */
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 10px;
    border: 5px solid #e0e0e0;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Rest of your existing gallery styles remain unchanged */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.gallery-item {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    height: 450px;
}

/* ... rest of your existing gallery styles ... */

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: red;
}

/* Gallery Image Container */
.gallery-images {
  position: relative;
  height: 300px !important;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

/* Gallery Images */
.gallery-images img {
  width: 100%;
  height: 180%; /* Changed from 180% to ensure proper filling */
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.gallery-images img:not(.active) {
  display: none;
}

/* Gallery Details */
.gallery-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    padding: 10px;
    text-align: left;
}

.gallery-details h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-details p {
    margin: 0 0 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Hide the short text by default */
.gallery-details .short-text {
    display: none;
    margin: 0 0 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Learn More Button */
.learn-more {
   display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: black;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid red;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.learn-more:hover {
     color: #fff;
    background: red;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.learn-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.3);
}

/* Enhanced Modal Styling for Images */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: auto;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: auto;
  display: block;
  object-fit: contain;
  animation: zoomIn 0.3s;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 3px;
}

@keyframes zoomIn {
  from {transform: scale(0.9);}
  to {transform: scale(1);}
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.prev, .next {
  cursor: pointer;
  font-size: 25px;
  color: white;
  padding: 10px;
  background-color: #FF0000;
  border-radius: 50%;
  transition: 0.3s;
  margin: 0 20px;
}

.prev:hover, .next:hover {
  background-color: #FF0000;
}

/* Swiper Container Adjustments */
.mySwiper {
  position: relative;
  padding-bottom: 35px;
  overflow: visible;
  width: 100%;
}

/* Pagination Positioning - Raised Higher */
.swiper-pagination {
  position: absolute;
  bottom: 5px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 10;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 5px;
  background: #FF0000;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #FF0000;
  opacity: 1;
  transform: scale(1.3);
}

/* Remove extra space below slides */
.swiper-wrapper {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .gallery-details h3 {
    font-size: 16px;
  }
  
  .gallery-details p {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
  
  .gallery-images {
    height: 180px;
  }
  
  .gallery-item {
    min-height: 280px;
  }
}











































/* Service Section - Text Centering Only */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #222;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center; /* Added this line */
}

.section-subtitle {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
    text-align: center; /* Added this line */
    padding: 0 1rem; /* Optional: Add if text needs side margins on mobile */
}

/* Services Gallery - 3 columns by default for desktop */
.services-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Item */
.service-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Video/Image Container */
.service-image {
    position: relative;
    height: 0;
    padding-top: 65%;
    overflow: hidden;
    width: 100%;
}

/* Video Element */
.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
    z-index: 2;
}

.service-item:hover .image-overlay {
    background: rgba(0,0,0,0.1);
}

/* Fallback Image */
.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}

/* Service Info */
.service-info {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: #222;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    flex-grow: 1;
}

.view-details {
    color: black;
    font-weight: 600;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-item:hover .view-details {
    color: red;
}

.service-badges {
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: #f5f5f5;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    color: #555;
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .services-gallery {
        max-width: 90%;
    }
}

/* Tablets and Small Desktops */
@media (max-width: 992px) {
    .services-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-section {
        padding: 2.5rem 1.5rem 4rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .services-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-section {
        padding: 2rem 1.5rem 3rem;
    }
    
    .section-subtitle {
        max-width: 100%;
    }
    
    .service-info {
        padding: 1.25rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .service-section {
        padding: 2rem 1rem 2.5rem;
    }
    
    .service-image {
        padding-top: 56.25%;
    }
}

.hidden {
    display: none;
}

/* VA+EVENTS Modal */
#va-event {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 95%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 10px;
  overflow-y: auto;
  border-left: 4px solid #ff4757;
}

/* Scrollbar Styling */
#va-event::-webkit-scrollbar {
  width: 6px;
  background-color: #f1f1f1;
}

#va-event::-webkit-scrollbar-thumb {
  background-color: #ff4757;
  border-radius: 3px;
}

/* Container Styling */
#va-event .container {
  padding: 15px;
}

/* Title & Description */
#va-event h2 {
  font-size: 22px;
  font-weight: bold;
  color: black;
  margin-bottom: 8px;
}

#va-event .description {
  font-size: 15px;
  font-weight: bold;
  color: black;
  margin-bottom: 15px;
}

/* VA+EVENTS Gallery Section */
.va-event-gallery-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Enables horizontal scrolling */
  gap: 10px;
  padding: 10px 0;
  justify-content: flex-start;
  max-width: 100%;
  scroll-snap-type: x mandatory; /* Smooth scrolling */
}

.va-event-gallery-item {
  flex: 0 0 auto;
  width: 180px; /* Slightly smaller for better fit */
  max-width: 250px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}

.va-event-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Fullscreen Image Viewer */
#image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#image-viewer img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

#image-viewer.hidden {
  display: none;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon {
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: red; /* Facebook blue for hover effect */
}

.fa-globe:hover {
    color: red; /* Different hover color for website icon */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  #va-event {
    width: 95%;
    max-height: 85vh;
    padding: 15px;
  }

  .va-event-gallery-container {
    gap: 8px;
  }

  .va-event-gallery-item {
    width: 150px;
  }

  .fb-button,
  .website-button,
  .close-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #va-event {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    padding: 10px;
  }

  .va-event-gallery-item {
    width: 130px;
  }
}

/* VA+CREATIVES Container */
#va-creatives {
  display: none; /* Default Hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: whitesmoke;
  padding: 12px; /* Reduced padding */
  width: 90%; /* Adjusted for mobile */
  max-width: 400px; /* Smaller max-width for mobile */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: grab;
  z-index: 1000;
  border-left: 5px solid red;
  border-top: 2px solid red;
  overflow-y: auto; /* Ensures the content fits within the modal */
  max-height: 80vh; /* Limit height to 80% of viewport */
}

/* While dragging */
#va-creatives.dragging {
  cursor: grabbing;
}

/* Show Modal */
#va-creatives.active {
  display: block; /* This will make the modal visible when active */
}

/* Grid Layout */
.creatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller columns for mobile */
  gap: 8px; /* Reduced gap */
  margin-top: 10px; /* Reduced margin */
}

/* Category Styling */
.creatives-category {
  background: #fff;
  padding: 10px; /* Reduced padding */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.creatives-category h3 {
  font-size: 14px; /* Smaller font size */
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 6px; /* Reduced margin */
}

.creatives-category ul {
  list-style: none;
  padding-left: 0;
  margin: 0; /* Remove default margin */
}

.creatives-category li {
  font-size: 12px; /* Smaller font size */
  margin: 4px 0; /* Reduced margin */
}

/* Close Button */
.close-btn {
  padding: 8px 16px; /* Smaller padding */
  background-color: #ff4d4d;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px; /* Smaller font size */
  transition: background 0.3s ease;
  width: 20%; /* Full width for mobile */
  text-align: center;
  margin-top: 10px; /* Added margin for better spacing */
}

.close-btn:hover {
  background-color: #cc0000;
}

/* VA+CREATIVES Image Gallery */
.va-creatives-gallery-container {
  display: flex;
  overflow-x: auto;
  gap: 6px; /* Reduced gap */
  padding: 6px 0; /* Reduced padding */
  justify-content: flex-start; /* Adjusted for mobile */
  scroll-snap-type: x mandatory; /* Added for smooth scrolling */
}

.va-creatives-gallery-item {
  flex-shrink: 0;
  width: 120px; /* Smaller width for mobile */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start; /* Added for smooth scrolling */
}

.va-creatives-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.va-creatives-gallery-item img:hover {
  transform: scale(1.05);
}

/* VA+CREATIVES Image Gallery */
.va-creatives-gallery-container {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  padding: 6px 0;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
}

.va-creatives-gallery-item {
  flex-shrink: 0;
  width: 120px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}

.va-creatives-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.va-creatives-gallery-item img:hover {
  transform: scale(1.05);
}

/* Fullscreen Image Viewer for VA+CREATIVES */
#va-creatives-image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#va-creatives-image-viewer img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#va-creatives-image-viewer.hidden {
  display: none;
}

/* Responsive Adjustments for smaller screens */
@media (max-width: 768px) {
  #va-creatives {
      width: 95%;
      max-width: 100%;
      padding: 10px;
  }

  .creatives-grid {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 6px;
  }

  .va-creatives-gallery-item {
      width: 100px;
  }

  .close-btn {
    font-size: 12px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  #va-creatives {
      width: 100%;
      padding: 8px;
  }

  .creatives-grid {
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 4px;
  }

  .va-creatives-gallery-item {
      width: 80px;
  }

  .close-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* VA+DIGITAL Section */
#va-digital {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: whitesmoke;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
  z-index: 1000;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  cursor: grab;
  border-radius: 10px;
  display: none;
}

/* While dragging */
#va-digital.dragging {
  cursor: grabbing;
}
#va-digital.active {
  display: block;
}

.va-digital-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.va-digital-gallery-item {
  flex: 1 1 48%;
  max-width: 45%;
  border-radius: 8px;
  background-color: #f9f9f9;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.va-digital-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.va-digital-gallery-item-details {
  padding: 15px;
}

.va-digital-gallery-item .title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.va-digital-gallery-item .description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* Remove Bullet Points from any list items in the VA+DIGITAL section */
#va-digital ul,
#va-digital li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}

/* Close Button */
.close-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 15px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: red;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #va-digital {
    width: 95%;
    max-height: 85vh;
    padding: 15px;
  }

  .va-digital-gallery-item {
    width: 48%;
  }
}

@media (max-width: 480px) {
  #va-digital {
    width: 90%;
    max-height: 80vh;
    padding: 10px;
  }

  .va-digital-gallery-item {
    width: 100%;
  }
}

/* Learn More Button */
.btn-learn-more {
  padding: 12px 24px;
  background-color: red;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.btn-learn-more:hover {
  background-color: darkred;
}

/* Super Nano Partners Grid */
#partners {
  padding: 30px 10px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.partners-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: red;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin: 0;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #aaa;
  bottom: 0;
  left: 25%;
}

.section-header p {
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Nano Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr); /* Ultra dense */
  gap: 4px; /* Minimal gap */
  margin: 20px auto 0;
  max-width: 800px;
}

.partner-card {
  position: relative;
  height: 40px; /* Super compact */
  cursor: pointer;
}

.logo-minimal {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transition: all 0.15s ease;
}

.minimal-logo {
  max-width: 90%;
  max-height: 18px; /* Tiny logos */
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.15s ease;
}

/* Micro Tooltip */
.logo-full {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 100px;
  padding: 6px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  z-index: 10;
  font-size: 0.7rem;
}

.partner-logo {
  max-width: 100%;
  max-height: 30px;
  margin-bottom: 5px;
}

.partner-name {
  display: block;
  font-size: 0.65rem;
  color: #444;
  font-weight: 500;
  text-align: center;
}

/* Hover Effects */
.partner-card:hover .logo-minimal {
  background: #eee;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.partner-card:hover .minimal-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-card:hover .logo-full {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
  }
  
  .partner-card {
    height: 35px;
  }
  
  .minimal-logo {
    max-height: 16px;
  }
  
  .logo-full {
    top: -70px;
    width: 90px;
    padding: 4px;
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 500px;
  }
  
  .partner-card {
    height: 30px;
  }
  
  .logo-full {
    display: none;
  }
}

@media (max-width: 400px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .section-header h2 {
    font-size: 1.1rem;
  }
  
  .section-header p {
    font-size: 0.65rem;
  }
}
/* Ultra Compact Awards Grid - 5 Columns on Mobile */
.awards-section {
  padding: 25px 10px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 columns on desktop */
  gap: 5px; /* Ultra-tight spacing */
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5px;
}

.award-logo {
  background: #f8f8f8;
  border-radius: 3px;
  padding: 4px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.award-logo:hover {
  transform: scale(1.1);
  background: #f0f0f0;
}

.award-logo img {
  max-width: 85%;
  max-height: 85%;
  filter: grayscale(40%);
  transition: all 0.15s ease;
}

.award-logo:hover img {
  filter: grayscale(0%);
}

/* Responsive adjustments - 5 columns on mobile */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(6, 1fr); /* 6 on tablet */
  }
}

@media (max-width: 600px) {
  .awards-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 on mobile */
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .awards-grid {
    gap: 4px;
  }
  
  .award-logo {
    padding: 3px;
  }
}

@media (max-width: 400px) {
  .awards-grid {
    grid-template-columns: repeat(5, 1fr); /* Keeps 5 columns even on very small screens */
    max-width: 400px;
  }
  
  .award-logo img {
    max-width: 80%;
    max-height: 80%;
  }
}
#about {
  scroll-margin-top: 60px;
}

/* About Us Section - Updated Header Style */
#about-us {
  padding: 40px 0;
  background: #fafafa;
}

/* About Container */
.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text Content - Updated Header */
.about-content {
  flex: 1;
  min-width: 250px;
  line-height: 1.6;
  padding: 0 5px;
  text-align: center;
}

.highlight {
  color: #ff4d4d;
}

/* Image Design */
.about-image {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 5px 20px 5px 20px;
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.1),
    inset 0 0 0 5px #fff,
    inset 0 0 0 7px #f0f0f0;
}



/* Responsive styles remain the same */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  .about-content, .about-image {
    width: 100%;
    min-width: auto;
  }
  
  .about-content h2 {
    font-size: 1.4rem;
    text-align: left;
  }
  
  .about-image {
    margin-top: 20px;
    max-width: 100%;
  }
  
  .about-image::after {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 768px) {
  #about-us {
    padding: 70px 20px;
  }
  
  .about-container {
    gap: 50px;
  }
  
  .about-content {
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1.1rem;
  }
}

/* CTA Button Styles */
        .cta-button {
            display: inline-block;
            background: red;
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #b8860b;
        }

        .cta-button:hover {
            background: transparent;
            color: red;
        }

        /* Back Button Styles */
        .back-button-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            padding: 10px 14px;
            border-radius: 4px;
            background-color: rgba(255,255,255,0.8);
        }
        
        .back-button:hover {
            color: red;
            background-color: rgba(255,255,255,0.9);
        }
        
        .back-button i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
/* Our Values Section */
#about-values {
  padding: 2rem 1rem; /* 32px 16px in rem */
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  border-radius: 1rem; /* 16px in rem */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1); /* 8px 24px in rem */
  margin: 0 auto;
  max-width: 75rem; /* 1200px in rem */
  overflow: hidden;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 cards per row, flexible width */
  gap: 1rem; /* 16px in rem */
  padding: 0 1rem; /* 16px in rem */
}

/* Value Card Styling */
.value-card {
  background-color: white;
  padding: 1rem; /* 16px in rem */
  border-radius: 0.75rem; /* 12px in rem */
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); /* 4px 12px in rem */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 20rem; /* Minimum height para kasya ang reveal text */
}

.value-card:hover {
  transform: translateY(-0.5rem); /* 8px in rem */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15); /* 8px 24px in rem */
  border-color: #ff6f61;
}

/* Heading Styling */
.value-card h2 {
  font-size: clamp(1rem, 3vw, 1.65rem); /* Responsive font size */
  color: #222;
  margin-bottom: 0.75rem; /* 12px in rem */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem; /* 0.8px in rem */
}

.value-card h2::after {
  content: '';
  display: block;
  width: 3rem; /* 48px in rem */
  height: 0.25rem; /* 4px in rem */
  background: linear-gradient(to right, #ff6f61, #ff4500);
  margin: 0.5rem auto 0; /* 8px in rem */
  border-radius: 0.125rem; /* 2px in rem */
  transition: width 0.3s ease;
}

.value-card h2:hover::after {
  width: 4rem; /* 64px in rem */
}

/* Quote Styling */
.value-card blockquote {
  font-style: italic;
  color: #333;
  margin: 1rem 0; /* 16px in rem */
  font-size: clamp(0.8rem, 2.5vw, 1.1rem); /* Responsive font size */
  border-left: 0.25rem solid #ff6f61; /* 4px in rem */
  padding: 0.5rem 0.75rem; /* 8px 12px in rem */
  background-color: rgba(255, 111, 97, 0.05);
  border-radius: 0 0.75rem 0.75rem 0; /* 12px in rem */
  transition: all 0.3s ease;
}

.value-card blockquote p {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* Reveal Text on Hover */
.value-card .reveal-text {
  color: #555;
  font-size: clamp(0.7rem, 2vw, 1rem); /* Responsive font size */
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  transition: all 0.4s ease;
  padding: 0 0.5rem; /* 8px in rem */
  text-align: center;
}

.value-card:hover .reveal-text {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.value-card:hover h2,
.value-card:hover blockquote {
  opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .values-container {
    gap: 0.75rem; /* 12px in rem */
  }

  .value-card {
    min-height: 18rem; /* Adjust minimum height for tablets */
  }
}

@media (max-width: 480px) {
  #about-values {
    padding: 1rem 0.5rem; /* Mas maliit na padding para sa mas maliit na screen */
    max-width: 100%; /* Full width para sa mas maliit na screen */
  }

  .values-container {
    gap: 0.5rem; /* 8px in rem */
    padding: 0 0.5rem; /* 8px in rem */
  }

  .value-card {
    min-height: 14rem; /* Adjust minimum height for mobile */
    padding: 0.75rem; /* 12px in rem */
  }

  .value-card h2 {
    font-size: clamp(0.6rem, 3vw, 1.23rem); /* Smaller font size for mobile */
  }

  .value-card blockquote {
    font-size: clamp(0.7rem, 2.3vw, 0.8rem); /* Smaller font size for mobile */
    margin: 0.75rem 0; /* 12px in rem */
  }

  .value-card .reveal-text {
    font-size: clamp(0.6rem, 2vw, 0.8rem); /* Smaller font size for mobile */
    line-height: 1.4;
  }
}


/* Core Values - Compact but still 4 columns on mobile */
.core-values {
  padding: 1.5rem 1rem;
  margin: 1rem auto;
  max-width: 1300px;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.core-values h2 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

.core-values h2::after {
  content: '';
  display: block;
  width: 5rem;
  height: 0.2rem;
  background: linear-gradient(to right, #ff6f61, #ff4500);
  margin: 0.8rem auto 0;
  border-radius: 0.2rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(65px, 1fr)); /* 4 columns even on mobile */
  gap: 0.8rem; /* Very compact gap */
  padding: 0;
}

.value {
  background-color: white;
  border-radius: 0.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem; /* Super compact */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value h3 {
  font-size: 1.2rem; /* Very small text */
  color: #e74c3c;
  margin-bottom: 0;
  font-weight: 700;
  transition: all 0.2s ease;
  line-height: 1;
}

/* Description - Hidden by default */
.value p {
  font-size: clamp(0.7rem, 1.5vw, 1.1rem);
  color: #555;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  line-height: 1.4;
  padding: clamp(0.5rem, 1vw, 1rem);
  transition: all 0.3s ease;
  background: white; /* Added background for readability */
  border-radius: 0.5rem;
  z-index: 1;
}

/* Desktop Version */
@media (min-width: 768px) {
  .core-values {
    padding: 3rem 3rem;
    margin: 2rem auto;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  }
  
  .core-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
  }
  
  .core-values h2::after {
    width: 8rem;
    height: 0.3rem;
    margin: 1.5rem auto 0;
  }
  
  .values-list {
    grid-template-columns: repeat(4, minmax(215px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
  }
  
  .value {
    min-height: 12rem;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
  }
  
  .value h3 {
    font-size: 3rem;
  }
  
  .value p {
    font-size: 1.1rem;
  }
  
  .value:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
  
  .value:hover h3 {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
}

/* Small Mobile Adjustments */
@media (max-width: 360px) {
  .value h3 {
    font-size: 1rem; /* Even smaller for tiny screens */
  }
  .value p {
    font-size: 0.6rem;
  }
}

/* Hover/Active States */
.value:hover p,
.value.active p {
  opacity: 1;
  transform: translate(-50%, -50%);
}


/* Minimal History Section - Centered Underline */
.history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.history-title {
  font-size: 1.8rem;
  color: red;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 1rem;
}

.history-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #999;
  bottom: 0;
  left: 25%;
}


.history-content {
  max-width: 100%;
  margin-bottom: 1.5rem;
  font-size: 1.05rem; /* Matched to about-content p */
}
.history-container .history-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #999;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-title {
  font-size: 1.8rem; /* Matched to about-content h2 */
  margin-bottom: 0.5rem;
  color: red;
  line-height: 1.3;
  font-weight: 600;
  padding-left: 0;
}

.section-subtitle {
  font-size: 1.05rem; /* Matched to about-content p */
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 800px;
  padding-left: 0;
  margin-left: 0;
}

.history-image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 1rem auto 0;
}

.history-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(70vh, 600px);
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .history-container {
    padding: 15px;
  }
  
  .history-content {
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  
  .history-image-wrapper {
    margin-top: 0.8rem;
    border-radius: 6px;
  }
  
  .history-image {
    max-height: 40vh;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .history-container {
    padding: 12px;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }
  
  .history-image {
    max-height: 35vh;
  }
}
/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-icon {
  background-color: red;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.floating-icon:hover {
  background-color: red;
}
/* Highlight effect for icons */
.floating-icon.highlight {
  background: red; /* Darker blue background */
  transform: scale(1.1); /* Slightly scale up the icon */
  box-shadow: 0 0 10px red; /* Glow effect */
}
/* Floating Contact Form */
.floating-form {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
}

.floating-form h3 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
}

/* Show form when active */
.floating-form.active {
  display: block;
}
#architects {
  margin-top: -450px;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 1.8rem;
    color: red;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #aaa;
    bottom: 0;
    left: 25%;
}






























/* Footer Styles */
#footer-contact {
    background: #ffffff;
    padding: 40px 0 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    grid-column: 1 / -1;
    background: #ffffff;
}

/* Company Info Styles */
.company-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-logo img {
    height: 45px;
    width: auto;
    max-width: 220px;
    margin-bottom: 20px;
    display: block;
}

.company-address, .contact-info {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.company-address i, .contact-info i {
    color: #666;
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.contact-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

/* Map/Image Container */
.map-image-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.directions-btn {
    display: block;
    padding: 12px 20px;
    background: #ff0000;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.directions-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}

/* Footer Bottom Styles */
.copyright-logo {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 8px;
}

.copyright-logo a {
    color: #ff0000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.copyright-logo a:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 35px;
    width: auto;
    vertical-align: middle;
    transition: opacity 0.3s;
}

.powered-by-center {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.powered-by-center img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.powered-by-center img:hover {
    opacity: 1;
}

.powered-by-center a {
    display: flex;
    align-items: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #footer-contact {
        padding: 30px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-info, .map-image-container {
        padding: 15px;
    }

    .company-logo img {
        height: 40px;
        margin-bottom: 15px;
    }

    .company-address, .contact-info {
        font-size: 13px;
        line-height: 1.5;
    }

    .map-image-container img {
        height: 280px;
    }

    .directions-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }

    .copyright-logo {
        font-size: 13px;
        justify-content: center;
    }

    .powered-by-center {
        font-size: 13px;
        justify-content: center;
    }

    .footer-logo {
        height: 30px;
    }

    .powered-by-center img {
        height: 25px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .company-info, .map-image-container {
        padding: 12px;
    }

    .company-logo img {
        height: 35px;
    }

    .company-address, .contact-info {
        font-size: 12px;
    }

    .map-image-container img {
        height: 250px;
    }

    .directions-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .copyright-logo, .powered-by-center {
        font-size: 12px;
    }

    .footer-logo {
        height: 25px;
    }

    .powered-by-center img {
        height: 20px;
    }
}

/* Very Small Screens */
@media (max-width: 320px) {
    .footer-container {
        padding: 0 0.8rem;
    }

    .company-address span {
        font-size: 11px;
    }

    .contact-info p {
        font-size: 11px;
    }

    .map-image-container img {
        height: 220px;
    }

    .copyright-logo, .powered-by-center {
        font-size: 11px;
    }
}