@charset "UTF-8";
/*!
Theme Name: Really Simple
Theme URI: https://github.com/flaubert-dev/really-simple-theme#really-simple-theme
Author: Flaubert Henriques
Author URI: https://profiles.wordpress.org/flauberthenriques/
Description: Really Simple is a theme for bloggers and writers who need a ultra light and fast theme. The theme focuses on simplicity and loading speed. Yes, Really Simple Theme is also fully AMP compatible. Check the >> readme.txt << file and leave the sidebar perfect after WordPress 5.8 update.
Version: 1.3.2
Requires at least: WordPress 5.3
Tested up to: WordPress 6.7
Requires PHP: 7.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: really-simple
Tags: custom-logo, custom-menu, featured-images, right-sidebar, sticky-post, translation-ready, blog 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Really Simple is based on Underscores http://underscores.me/, (C) 2012-2021 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v3 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset CSS
	- Normalize
  - Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
	- Container
# Components
	- Navigation
	- Main
	- Posts and pages
	- Forms
	- Widgets
	- Comments
	- Media
	- Captions
	- Galleries
# Utilities
	- Accessibility
	- Alignments
# Responsive (media-queries)
	- Tablet
	- Mobile

--------------------------------------------------------------*/

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

body {
  font-family: "Gordita", sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

.navbar {
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar .custom-logo-link img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 20px;
}

.navbar.scrolled {
  background: #000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #ff851b !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #ff851b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-carousel .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;

  background-size: cover;
  background-position: center;
  height: 100vh;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* Innovation Section */
.innovation-section {
  padding: 100px 0;
  text-align: center;
}

.innovation-title {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.innovation-title .highlight {
  color: #ff851b;
}

.innovation-content {
  padding: 40px;
  margin: auto;
  max-width: 965px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  border: 1px solid #4f4f4f;

}

.btn-custom {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 60px;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-top: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-custom-white {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px 60px;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-custom:hover,
.btn-custom-white:hover {
  background: #ff851b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  border-color: #ff851b !important;
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 0 0 100px 0;
}

.mission-vision-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mission-vision-item h2 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.mission-vision-content {
  background-color: #fff;
  color: #000;
  padding: 30px 20px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 80px;
  min-height: 300px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 1400px) {
  .mission-vision-content {
    margin: 0;
  }
}

@media (max-width: 992px) {
  .mission-vision-item h2 {
    font-size: 28px;
  }

  .mission-vision-section {
    padding: 50px 0;
  }

  .mission-vision-content {
    min-height: unset;
  }
}

/* Statistics Section */
.statistics-section {
  position: relative;
  margin: 0 0 100px 0;
}

.statistics-section-title {
  text-align: center;
}

.stats-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.statistics-grid {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-icon {
  width: 100px;
  height: 100px;
  border: 2px solid #4f4f4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: #ccc;
  font-weight: 400;
  text-transform: uppercase;
}

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

.stat-item:hover .stat-icon {
  border-color: #ff851b;
  color: #ff851b;
  transform: scale(1.1);
}

/* Logo Slider Section */
.logo-slider-section {
  background: #fff;
  padding: 40px 0;
}

.slider-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  padding: 0 20px;
}

.logo-slider {
  padding: 20px 0;
}

.logo-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-slide:hover .partner-logo-img {
  transform: scale(1.05);
}

/* Custom Slick Styles */
.logo-slider .slick-track {
  display: flex;
  align-items: center;
}

.logo-slider .slick-slide {
  height: auto;
}

/* Responsive Logo Slider */
@media (max-width: 768px) {
  .slider-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .logo-slider-section {
    padding: 50px 0;
  }

  .logo-slide {
    padding: 15px;
  }
}

/* Expertise Section */
.expertise-section {
  padding: 0 0 100px 0;
}

.expertise-title {
  font-size: 64px;
  font-weight: 600;
  color: #4f4f4f;
  transform: rotate(-90deg);
  white-space: nowrap;

}

.expertise-card {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  gap: 20px;
  text-transform: uppercase;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1;
}

.expertise-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: all 0.6s ease;
  z-index: 2;
}

.expertise-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.expertise-card:hover::after {
  left: 100%;
}

.expertise-card>* {
  position: relative;
  z-index: 3;
}

.expertise-card .expertise-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.expertise-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 100px 0 50px 0;
}

.contact-logo {
  text-align: center;
  margin-bottom: 50px;
}

.form-control {
  background: transparent;
  border: 1px solid #b6b6b6;
  color: #fff;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: transparent;
  border-color: #ff851b;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
  color: #fff;
}

/* Footer - Light Mode */
.footer {
  background: #ffffff;
  /* White background */
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  object-fit: contain;
}

/* Navigation Section */
.footer-navigation {
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  color: #333333;
  /* Dark text for light background */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  padding: 12px 0;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.footer-nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff851b, #ffa500);
  transition: width 0.4s ease;
  border-radius: 1px;
}

.footer-nav-link:hover {
  color: #ff851b;
  transform: translateY(-2px);
}

.footer-nav-link:hover::before {
  width: 100%;
}

/* Social Section */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-label span {
  font-size: 0.85rem;
  color: #555555;
  /* Darker text */
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  /* light background */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: #555555;
  /* Dark icon color */
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff851b, #ffa500);
  border-radius: 50%;
  transition: transform 0.4s ease;
  z-index: -1;
}

.social-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.social-link:hover {
  color: #ffffff;
  /* White on hover */
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 133, 27, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      #ff851b 50%,
      transparent 100%);
}

.footer-copyright p,
.footer-credits p {
  margin: 0;
  font-size: 0.85rem;
  color: #555555;
  /* Dark text */
  font-weight: 400;
}

.footer-credits a {
  color: #ff851b;
  /* Accent color */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-credits a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff851b;
  transition: width 0.3s ease;
}

.footer-credits a:hover {
  transform: translateY(-1px);
}

.footer-credits a:hover::after {
  width: 100%;
}

.footer-email {
  margin-top: 15px;
}

.footer-email a {
  color: #333;
  /* dark text for visibility on white background */
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: #ff851b;
  /* highlight color to match the footer accents */
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navbar Toggler Styling */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  background: transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background: #ff851b;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background: #ff851b;
}

.navbar-toggler[aria-expanded="true"]:hover .navbar-toggler-icon {
  background: transparent;
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.98);
    margin-top: 15px;
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
    margin: 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar .logo {
    width: 60px;
    height: 60px;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .expertise-title {
    transform: none;
    writing-mode: initial;
    text-orientation: initial;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
  }

  .expertise-card {
    font-size: 1rem;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 992px) {

  .hero-logo {
    max-width: 280px;
  }

  .stats-title {
    font-size: 24px;
  }

  .stat-item {
    align-items: left;
    justify-content: unset;
    margin: 10px;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .stat-content {
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .expertise-section {
    padding: 50px 0;
    min-height: auto;
  }

  .contact-section {
    padding: 50px 0;
  }

  .innovation-section {
    padding: 50px 0;
  }

  .innovation-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .innovation-content p {
    font-size: 14px;
  }

  .contact-logo h2 {
    font-size: 2rem;
  }

  .btn-custom,
  .btn-custom-white {
    font-size: 1rem;
  }

  /* Footer Responsive Styles */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 40px;
    text-align: center;
  }

  .footer-nav {
    gap: 25px;
    flex-direction: column;
  }

  .footer-nav-link {
    font-size: 1rem;
    padding: 15px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px 0;
  }

  .footer-copyright p,
  .footer-credits p {
    font-size: 0.8rem;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Tablet specific adjustments */
@media (max-width: 1200px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 70px 0 50px;
  }

  .footer-nav {
    gap: 30px;
  }

  .footer-nav-link {
    font-size: 0.9rem;
  }
}

/* Expertise Section */
.expertise-hero-title {
  background-color: #007bff;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  padding: 5px;
  width: 100%;
}

/* Content Philosophy Section */
.content-philosophy-section {
  padding: 100px 0;
}

.philosophy-content p {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: justify;
}

.philosophy-content h3 {
  padding: 20px 0;
}

.philosophy-content h2.highlight-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content-graphic img {
  max-width: 450px;
  height: 450px;
  width: 100%;
}

/* Featured Services Section */
.featured-services-section {
  margin-bottom: 100px;
}

.featured-content {
  background-color: #007bff;
  padding: 80px;
}

.featured-content p {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.highlander-section {
  padding: 0 0 100px 0;
}

.highlander-title {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.highlander-section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 30px;
}

/* Video Section */
.video-section {
  padding-bottom: 100px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Media Section */
.media-section {
  padding: 0 0 100px 0;
}

/* Responsive adjustments for content sections */
@media (max-width: 992px) {
  .content-philosophy-section {
    padding: 50px 0;
  }

  .media-section {
    padding: 0 0 50px 0;
  }

  .philosophy-content {
    margin-bottom: 2rem;
  }

  .philosophy-content p {
    font-size: 1rem;
  }

  .philosophy-content h2.highlight-title {
    font-size: 1.2rem;
  }

  .highlight-title {
    font-size: 1.2rem;
  }

  .content-graphic {
    margin-top: 2rem;
  }

  .featured-content {
    padding: 2rem !important;
  }

  .featured-content p {
    font-size: 1.2rem;
  }

  .featured-services-section {
    margin-bottom: 50px;
  }

  .highlander-section {
    padding: 0 0 50px 0;
  }

  .highlander-title {
    transform: none;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    white-space: normal;
  }

  .highlander-section p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .video-section {
    padding-bottom: 50px;
  }
}

/* Powered by Creativity Section */
.powered-by-section {
  padding: 50px 0 100px 0;
  text-align: left;
}

.powered-content {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.powered-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.powered-label {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.creativity-text {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  display: inline-block;
}

.driven-text {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.beyond-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.beyond-label {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.expected-text {
  font-size: 108px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 0.9;
}

@media (max-width: 992px) {
  .powered-by-section {
    padding: 0 0 50px 0;
    text-align: center;
  }

  .powered-label {
    font-size: 1.8rem;
  }

  .creativity-text {
    font-size: 1.8rem;
    padding: 6px 12px;
  }

  .driven-text {
    font-size: 1.8rem;
  }

  .beyond-label {
    font-size: 10px;
  }

  .expected-text {
    font-size: 3rem;
    line-height: 1.1;
  }

  .beyond-section {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .powered-label {
    font-size: 1.4rem;
  }

  .creativity-text {
    font-size: 1.4rem;
    padding: 4px 8px;
  }

  .driven-text {
    font-size: 1.4rem;
  }

  .beyond-label {
    font-size: 8px;
  }

  .expected-text {
    font-size: 2.2rem;
    line-height: 1;
  }
}

.expertise-card-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
}

.media-rotated-title {
  font-size: 42px;
  font-weight: 600;
  color: #4f4f4f;
  transform: rotate(-90deg);
  white-space: nowrap;
  text-transform: uppercase;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
}

.gallery-title .sub-title {
  font-size: 44px;
}

@media screen and (max-width: 991px) {
  .media-rotated-title {
    transform: none;
    writing-mode: initial;
    text-orientation: initial;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    white-space: normal;
  }

  .gallery-title {
    font-size: 1.4rem;
  }
}
















/* ==========================
   DROPDOWN MENU STYLING
   ========================== */

.navbar .dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0;
  margin-top: 0;
  margin-left: 20px;
  backdrop-filter: blur(10px);
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  display: none;
  overflow: hidden;
  /* hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown items */
.navbar .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff851b;
}

/* ==========================
   DROPDOWN TOGGLE ARROW
   ========================== */

/* Remove Bootstrap default arrow */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* Add custom arrow */
.navbar .dropdown-toggle {
  position: relative;
  padding-right: 22px;
}

.navbar .dropdown-toggle::before {
  content: "\f107";
  /* caret-down icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #fff;
  transition: color 0.3s ease;
}

/* Change arrow color when parent is hovered (with underline effect intact) */
.navbar .dropdown:hover>.nav-link,
.navbar .dropdown:hover>.dropdown-toggle,
.navbar .dropdown-toggle:hover {
  color: #ff851b !important;
}

.navbar .dropdown:hover>.dropdown-toggle::before {
  color: #ff851b;
}

/* ==========================
   RESPONSIVE (Mobile)
   ========================== */
@media (max-width: 991px) {

  /* Hide parent links */
  .navbar-nav .dropdown>.nav-link {
    display: none !important;
  }

  /* Make dropdown menus act like normal lists */
  .navbar .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block !important;
    opacity: 1;
    transform: none;
    position: static;
  }

  /* Style children as normal nav items */
  .navbar .dropdown-menu .dropdown-item {
    padding: 12px 20px !important;
    margin: 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px !important;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff851b;
  }
}

@media screen and (max-width: 768px) {

  .hero {
    height: 50vh;
  }

  .hero-carousel .carousel-item {
    height: 50vh;
  }

  .hero-logo {
    max-width: 110px;
  }

  .expertise-hero-title {
    font-size: 18px;
  }

  .gallery-title .sub-title {
    font-size: 32px;
  }
}


@media screen and (max-width: 576px) {

  .innovation-section,
  .mission-vision-section,
  .content-philosophy-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .innovation-content {
    padding: 20px;
  }

}


#bwg_container1_0 #bwg_container2_0 #spider_popup_overlay_0,
#bwg_container1_1 #bwg_container2_1 #spider_popup_overlay_1 {
  background-color: #000 !important;
}

.spider_popup_wrap {
  background: rgba(0, 0, 0, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}