/* Optimized Font Loading - Moved to HTML head for better performance */

/* Professional Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.loader-logo {
    margin-bottom: 50px;
    animation: logoFloat 3s ease-in-out infinite;
}

.loader-logo-img {
    width: 150px;
    height: auto;
    filter: brightness(1.2);
}

.loader-text {
    margin: 30px 0 20px;
}

.loader-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.loader-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: #25465e;
    margin: 0;
    font-weight: 400;
}

.loader-progress {
    margin-top: 40px;
    width: 350px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(37, 70, 94, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #25465e, #3a6b8c);
    border-radius: 4px;
    width: 0%;
    animation: progressLoad 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(37, 70, 94, 0.5);
}

.progress-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    color: #25465e;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* General styling */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: white;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #23272a;
}

/* Ensure all sections take full width */
section {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

body.dark-theme {
    background-color: #23272a;
    color: white;
}

/* Premium Navigation Header */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 70, 94, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

body.dark-theme .premium-header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(37, 70, 94, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

body.dark-theme .logo-text {
    color: #ffffff;
}

.premium-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95em;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: relative;
}

body.dark-theme .nav-link {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #25465e, #3a6b8c);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.nav-link:hover {
    color: #25465e;
}

body.dark-theme .nav-link:hover {
    color: #3a6b8c;
}

.dropdown-icon {
    margin-left: 8px;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.premium-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 70, 94, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

body.dark-theme .premium-dropdown {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(37, 70, 94, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.has-dropdown:hover .premium-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    padding: 20px;
}

.dropdown-link {
    display: block;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 70, 94, 0.1);
    transition: all 0.3s ease;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    transform: translateX(5px);
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 0.95em;
}

body.dark-theme .link-title {
    color: #ffffff;
}

.link-desc {
    font-size: 0.8em;
    color: #666;
    font-weight: 400;
}

body.dark-theme .link-desc {
    color: #999;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    background: linear-gradient(135deg, #25465e, #3a6b8c);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 70, 94, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 70, 94, 0.4);
}

.theme-toggle {
    background: none;
    border: 2px solid rgba(37, 70, 94, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: #25465e;
    transform: scale(1.1);
}

.theme-icon {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sun-icon,
.moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    background-color: #1a1a1a; /* Black circle for light mode */
}

.moon-icon {
    opacity: 0;
    background-color: #ffffff; /* White circle for dark mode */
}

body.dark-theme .theme-icon {
    border-color: #ffffff; /* White border for dark mode */
}

body.dark-theme .sun-icon {
    opacity: 0;
}

body.dark-theme .moon-icon {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.dark-theme .hamburger-line {
    background: #ffffff;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.slider {
    position: relative;
}

.slider img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.slider .slick-slide {
    position: relative;
    color: white;
}

.slider .slider-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 255, 0.3);
    z-index: 2;
    pointer-events: none;
    transition: background-color 0.3s;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.banner-content h1 {
    font-size: 3em;
    margin: 0;
}
.banner-content p {
    font-size: 1.9em;
    margin-top: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.95); /* Adding text shadow */
}

.section {
    padding: 60px 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

/* Animation keyframes */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active state for animation */
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    font-size: 2.8em;
    font-weight: normal;
    margin-bottom: 20px;
    color: white;

}

.sub-header {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #030f27; /* Light theme color */
}

body.dark-theme .sub-header {
    color: #25465e; /* Dark theme color */
}


.section-content {
    font-size: 1.3em;
    max-width: 900px;
    color:white;


}

body.dark-theme .section-content{
  font-size: 1.3em;
  max-width: 900px;
  color:white;
}

.section-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content-container.reverse {
    flex-direction: column-reverse;
}

.section-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.text-content {
    max-width: 800px;
    padding: 0 20px;
}

/* Our Mission Section */
#our-mission {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 60px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.mission-image {
    width: 100%;
    max-width: 400px;
    margin: 0 20px 20px 0;
    float: right;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.mission-header {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 300;
    margin-bottom: 20px;
    color: White;
}

.mission-subheader {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 20px;
    color: white;
}


.mission-content {
    font-size: 1.0em;
    line-height: 1.8em;
    max-width: 900px;
    color: white;
}



body.dark-theme .mission-content {
    color: white;
}

body.dark-theme .mission-subheader{
  color: white;
}

body.dark-theme .mission-header{
  color: white;
}

.btn {
    padding: 10px 20px;
    border: none;

    font-weight:lighter;
    cursor: pointer;

    transition: background-color 0.3s, color 0.3s;
    background-color: #25465e; /* Light blue for light theme */
    color: white; /* Dark blue text */
    display: inline-block;
  text-align: center;
  vertical-align: middle;
}


.btn a {
    text-decoration: none!important;
    color: inherit;
    display: block; /* Ensures link takes full button area */
    width: 100%;
    height: 100%;
    line-height: 1.5; /* Adjust if needed for vertical centering */
}

/* Ensure underline is removed for all states */
.btn a:link,
.btn a:visited,
.btn a:hover,
.btn a:active {
   text-decoration: none!important;
    outline: none;
}

body.dark-theme .btn {
    background-color: #25465e;
    color: white;
}

/* Button hover effect for dark theme */
body.dark-theme .btn:hover {
    background-color: #0a3f82; /* Dark blue */
    color: white; /* White text */
}

.btn:hover {
    background-color: #0a3f82;
    color: white;
}

/* Event section styling */
.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.event-image,
.event-details,
.event-info {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

/* Contact section styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.contact-info {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.contact-info h3 {
    color: white;
}

.contact-info p {
  color: white;
  margin: 5px 0;
}

.contact-info a {
    color: #030f27;
    text-decoration: none;
}

body.dark-theme .contact-info h3 {
    color: #25465e;
}

body.dark-theme .contact-info p {
  color: white;
}

body.dark-theme .contact-info a {
    color: #25465e;
}

#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #030f27; /* Dark blue for light theme */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-section {
  margin: 20px;
  text-align: center;
}

#search-bar {
  padding: 10px;
  width: 80%;
  font-size: 1.2em;
}

#search-results {
  list-style-type: none;
  padding: 0;
}

#search-results .search-result-item {
  padding: 10px;
  cursor: pointer;
}

#search-results .search-result-item:hover {
  background-color: #eee;
}

#map {
    height: 500px;
    margin: 10px 0;
}

.country-info-header {
    background-color: #25465e;
    color: white;
    padding: 20px;
}

.country-info-header h2 {
    margin: 0;
    font-size: 24px;
}

.country-info-header address {
    font-style: normal;
    margin: 10px 0;
}

.contact-info p {
    margin: 5px 0;
}

.terminal-facts {

    color: white;
    padding: 20px;
}

.terminal-facts h3 {
    color: #25465e;
    font-size: 20px;
    margin-bottom: 10px;
}

.terminal-facts p {
    margin: 5px 0;
    color: #25465e;
}
.terminal-facts span{
  color: white
}

.additional-info {
    background-color: #212121;
    color: white;
    padding: 20px;
}

.additional-info p {
    margin: 5px 0;
}

.country-image {
    text-align: center;
    margin: 20px 0;
}

.country-image img {
    max-width: 100%;
    height: auto;
}

#map-section {
  border-radius: 45px; /* Adjust the value as needed */
   overflow: hidden; /* Ensures the rounded corners are visible */
}

body.dark-theme .terminal-facts h3{
  color: #25465e;
}

body.dark-theme .terminal-facts p{
  color: #25465e;
}
body.dark-theme .terminal-facts span{
  color: white;
}
body.dark-theme #scroll-to-top {
    background-color: #25465e;
}

#scroll-to-top img {
    width: 50%;
    height: 50%;
    object-fit: cover;
}


.footer {
    background-color: #25465e;
    font-size: 0.8em;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    flex: 1 1 auto;
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer-section {
    flex: 1 1 auto;
    text-align: center;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: none;
    color: #25465e;
}

@media (max-width: 768px) {

  .footer-logo, .footer-section {
     margin-bottom: 0;
     padding: 0 10px;
     text-align: left;
 }

 .footer-logo {
     text-align: left;
 }
    #hamburger-menu {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 0;
        width: 200px;
        background-color: #00274d;
        padding: 10px;
        border-radius: 5px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
        transform: translateX(0);
    }

    nav ul li {
        width: 100%;
        margin: 10px 0;
    }
    nav ul li .dropdown {
       position: relative;
       top: 0;
       left: 0;
       z-index: 200; /* Ensure dropdown is above other elements */
   }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .right-container {
        order: 3;
        display: flex;
        justify-content: flex-end;
        width: auto;
    }

    #theme-switch {
        order: 2;
        margin-left: 10px;
    }

    #hamburger-menu {
        order: 4;
        margin-left: 10px;
    }

    .section-content-container {
        flex-direction: column;
    }

    .section-content-container.reverse {
        flex-direction: column-reverse;
    }
}

@media (min-width: 769px) {

    .right-container {
        order: 3;
    }

    .logo {
        order: 1;
        margin-left: auto;
    }

    nav ul {
        order: 2;
    }

    #theme-switch {
        margin-left: 15px;
    }

    .section-content-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .section-content-container.reverse {
        flex-direction: row-reverse;
    }

    .section-image {
        max-width: 50%;
        margin-bottom: 0;
    }

    .text-content {
        max-width: 50%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .event-image,
    .event-details,
    .event-info {
    flex: 1 1 100%;
      }
}

    .event-info p {
    margin: 10px 0;
     }

@media (max-width: 768px) {
    .contact-info {
        flex: 1 1 100%;
    }


}


/* ++++++++++++++++++++++++++++++++++++++++++++ *updates*************************/
/* Custom Layout Styles */
.custom-layout {

  line-height: 1.6;
  padding: 20px;

}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-row {
  display: flex;
  flex-wrap: wrap; /* Ensures columns stack on smaller screens */
  gap: 20px; /* Space between columns */
  margin-bottom: 20px;
}

.custom-column {
  flex: 1 1 calc(50% - 20px); /* Two columns per row with spacing */
  background-color: #fff;
  border: none; /* Remove border */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.custom-column:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.custom-image-container {
  width: 100%;
  height: 200px; /* Fixed height for images */
  overflow: hidden;
  border-radius: 12px 12px 0 0; /* Rounded corners for the image container */
}

.custom-responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the container responsively */
}

.custom-header {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #333;
}

.custom-content {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 768px) {
  .custom-column {
    flex: 1 1 100%; /* Full width for each column */
  }

  .custom-image-container {
    height: 150px; /* Adjust height for smaller screens */
  }
}

/* Premium Section Styles */
.premium-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 70, 94, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.premium-title {
    font-size: 3.5em;
    font-weight: 300;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.premium-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #25465e;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-actions {
    display: flex;
    gap: 20px;
}

.premium-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.premium-btn.primary {
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 70, 94, 0.3);
}

.premium-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 70, 94, 0.4);
}

.premium-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #25465e;
}

.premium-btn.secondary:hover {
    background: #25465e;
    transform: translateY(-3px);
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.premium-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.overlay-content p {
    color: #ccc;
    margin: 0;
}

/* Services Showcase Styles */
.services-showcase {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .services-showcase {
    background: #1a1a1a;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .services-title {
    color: white;
}

.services-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .services-subtitle {
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .service-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

body.dark-theme .service-title {
    color: white;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

body.dark-theme .service-description {
    color: #ccc;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #25465e;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25465e;
    font-weight: bold;
}

body.dark-theme .service-features li {
    color: #3a6b8c;
}

.services-cta {
    text-align: center;
}

/* Certifications Section Styles */
.certifications-section {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .certifications-section {
    background: #1a1a1a;
}

.certifications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.certifications-header {
    text-align: center;
    margin-bottom: 80px;
}

.certifications-title {
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .certifications-title {
    color: white;
}

.certifications-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .certifications-subtitle {
    color: #ccc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-theme .certification-card {
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.cert-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cert-image i {
    color: white;
    font-size: 3rem;
    line-height: 1;
}

/* Icon styling for certifications - Fixed circle stretching */
.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon i {
    color: white !important;
    font-size: 2.5rem !important;
    line-height: 1;
    display: block;
}

/* Fix for icons inside cert-image containers */
.cert-image .cert-icon {
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    border-radius: 0;
    display: inline-block;
}

.cert-image i.cert-icon {
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    border-radius: 0;
    display: inline-block;
    font-size: 3rem !important;
}

.cert-content h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

body.dark-theme .cert-content h3 {
    color: white;
}

.cert-content p {
    color: #666;
    margin-bottom: 15px;
}

body.dark-theme .cert-content p {
    color: #ccc;
}

.cert-number {
    font-size: 0.9em;
    color: #25465e;
    font-weight: 500;
}

body.dark-theme .cert-number {
    color: #3a6b8c;
}

/* Clients Section Styles */
.clients-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients-header {
    text-align: center;
    margin-bottom: 80px;
}

.clients-title {
    font-size: 3em;
    font-weight: 300;
    color: #25465e;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.clients-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.clients-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content blockquote {
    font-size: 1.1em;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 0 30px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    padding: 5px;
}

.author-info h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.author-info p {
    color: #25465e;
    margin: 0;
    font-size: 0.9em;
}

.clients-logos {
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.logo-grid img {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
    margin: 0 auto;
}

.logo-grid img:hover {
    filter: grayscale(0%) brightness(1);
}

/* Industry-Standard Premium Partners Section */
.strategic-partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    border-top: 1px solid #e9ecef;
    position: relative;
}

.strategic-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #25465e 0%, #3a6b8c 50%, #25465e 100%);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.partners-header {
    text-align: center;
    margin-bottom: 80px;
}

.partners-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: #25465e;
    margin-bottom: 24px;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.partners-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.industry-partners-showcase {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 70, 94, 0.08);
    position: relative;
    overflow: hidden;
}

.industry-partners-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25465e 0%, #3a6b8c 100%);
}

.partners-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.industry-partner-item {
    flex: 1;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-partner-item:hover {
    transform: translateY(-8px);
}

.partner-logo-frame {
    width: 160px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.industry-partner-item:hover .partner-logo-frame {
    background: #ffffff;
    border-color: rgba(37, 70, 94, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.industry-partner-item:hover .partner-logo-frame::before {
    left: 100%;
}

.industry-partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.85) contrast(1.1);
    transition: all 0.4s ease;
}

.industry-partner-item:hover .industry-partner-logo {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.partner-details {
    margin-top: 24px;
}

.partner-company-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #25465e;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.partner-tagline {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    display: block;
    transition: color 0.3s ease;
}

.industry-partner-item:hover .partner-company-name {
    color: #1a365d;
}

.industry-partner-item:hover .partner-tagline {
    color: #555;
}

/* Dark theme support for partners section */
body.dark-theme .strategic-partners-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #404040;
}

body.dark-theme .partners-title {
    color: white;
}

body.dark-theme .partners-subtitle {
    color: #ccc;
}

body.dark-theme .industry-partners-showcase {
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.dark-theme .partner-logo-frame {
    background: #3a3a3a;
    border-color: transparent;
}

body.dark-theme .industry-partner-item:hover .partner-logo-frame {
    background: #4a4a4a;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

body.dark-theme .partner-company-name {
    color: #e0e0e0;
}

body.dark-theme .partner-tagline {
    color: #b0b0b0;
}

body.dark-theme .industry-partner-item:hover .partner-company-name {
    color: white;
}

body.dark-theme .industry-partner-item:hover .partner-tagline {
    color: #d0d0d0;
}

/* Responsive design for industry partners */
@media (max-width: 1200px) {
    .partners-container {
        padding: 0 30px;
    }

    .partners-logos-row {
        gap: 40px;
    }

    .partner-logo-frame {
        width: 140px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .partners-title {
        font-size: 2.8rem;
    }

    .partners-subtitle {
        font-size: 1.2rem;
    }

    .industry-partners-showcase {
        padding: 50px 30px;
    }

    .partners-logos-row {
        gap: 30px;
    }

    .partner-logo-frame {
        width: 120px;
        height: 80px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .strategic-partners-section {
        padding: 80px 0;
    }

    .partners-container {
        padding: 0 20px;
    }

    .partners-header {
        margin-bottom: 60px;
    }

    .partners-title {
        font-size: 2.4rem;
    }

    .partners-subtitle {
        font-size: 1.1rem;
    }

    .industry-partners-showcase {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .partners-logos-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .industry-partner-item {
        max-width: 300px;
    }

    .partner-logo-frame {
        width: 160px;
        height: 100px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .strategic-partners-section {
        padding: 60px 0;
    }

    .partners-container {
        padding: 0 15px;
    }

    .partners-title {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .industry-partners-showcase {
        padding: 30px 15px;
        border-radius: 16px;
    }

    .partner-logo-frame {
        width: 140px;
        height: 85px;
        padding: 15px;
    }

    .partner-company-name {
        font-size: 1.2rem;
    }

    .partner-tagline {
        font-size: 0.9rem;
    }
}

/* HSBC Support Section - Premium Design */
.hsbc-support-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.hsbc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hsbc-premium-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(219, 0, 17, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hsbc-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #db0011 0%, #ff4444 100%);
}

.hsbc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.hsbc-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hsbc-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsbc-logo-image {
    height: 60px;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hsbc-logo-image:hover {
    transform: scale(1.05);
}

.hsbc-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin-bottom: 28px;
    text-align: left;
    transition: color 0.3s ease;
}

.hsbc-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(219, 0, 17, 0.06);
    border: 1px solid rgba(219, 0, 17, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #25465e;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(219, 0, 17, 0.1);
    border-color: rgba(219, 0, 17, 0.25);
    transform: translateY(-1px);
}

.feature-badge i {
    color: #db0011;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hsbc-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .hsbc-premium-card {
        padding: 30px 24px;
    }

    .hsbc-logo-image {
        height: 50px;
        max-width: 240px;
    }

    .hsbc-features {
        justify-content: center;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hsbc-logo-image {
        height: 45px;
        max-width: 220px;
    }

    .hsbc-features {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-badge {
        justify-content: center;
    }
}

/* Dark Theme Support for HSBC Section */
body.dark-theme .hsbc-support-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #404040;
}

body.dark-theme .hsbc-premium-card {
    background: #2d2d2d;
    border: 1px solid rgba(219, 0, 17, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-theme .hsbc-premium-card::before {
    background: linear-gradient(90deg, #db0011 0%, #ff4444 100%);
}

body.dark-theme .hsbc-label {
    color: #b0b0b0;
}

body.dark-theme .hsbc-logo-image {
    filter: brightness(1.1);
}

body.dark-theme .hsbc-description {
    color: #d0d0d0;
}

body.dark-theme .feature-badge {
    background: rgba(219, 0, 17, 0.1);
    border: 1px solid rgba(219, 0, 17, 0.25);
    color: #e0e0e0;
}

body.dark-theme .feature-badge:hover {
    background: rgba(219, 0, 17, 0.15);
    border-color: rgba(219, 0, 17, 0.35);
}

body.dark-theme .feature-badge i {
    color: #ff4444;
}

/* Responsive Design for Premium Sections */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-title {
        font-size: 2.5em;
    }

    .premium-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .clients-testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certification-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .premium-actions {
        flex-direction: column;
        align-items: center;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .clients-testimonials {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-title,
    .certifications-title,
    .clients-title {
        font-size: 2.2em;
    }

    .premium-section,
    .services-showcase,
    .certifications-section,
    .clients-section {
        padding: 60px 0;
        width: 100%;
    }
}

/* Strategy Page Styles */
.strategy-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    position: relative;
    overflow: hidden;
}

.strategy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(37, 70, 94, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.strategy-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.strategy-badge {
    display: inline-block;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.strategy-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.strategy-description {
    font-size: 1.3em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.strategy-visual {
    margin-top: 60px;
}

.strategy-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.strategic-pillars {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .strategic-pillars {
    background: #1a1a1a;
}

.pillars-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillars-header {
    text-align: center;
    margin-bottom: 80px;
}

.pillars-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .pillars-title {
    color: white;
}

.pillars-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .pillars-subtitle {
    color: #ccc;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .pillar-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .pillar-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pillar-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(37, 70, 94, 0.3);
    flex-shrink: 0;
    position: relative;
}

.icon-circle i {
    line-height: 1;
    display: block;
}

.pillar-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.pillar-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

body.dark-theme .pillar-title {
    color: white;
}

.pillar-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

body.dark-theme .pillar-description {
    color: #ccc;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25465e;
    font-weight: bold;
}

body.dark-theme .pillar-features li {
    color: #bbb;
}

.strategy-cta {
    background: linear-gradient(135deg, #25465e 0%, #3a6b8c 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Expertise Page Styles */
.expertise-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

body.dark-theme .expertise-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.expertise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 70, 94, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.expertise-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.expertise-badge {
    display: inline-block;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.expertise-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

body.dark-theme .expertise-title {
    color: white;
}

.expertise-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

body.dark-theme .expertise-description {
    color: #ccc;
}

.expertise-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.expertise-visual {
    text-align: center;
}

.expertise-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .expertise-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.core-capabilities {
    background: white;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .core-capabilities {
    background: #0a0a0a;
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-header {
    text-align: center;
    margin-bottom: 80px;
}

.capabilities-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .capabilities-title {
    color: white;
}

.capabilities-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .capabilities-subtitle {
    color: #ccc;
}

.capabilities-timeline {
    position: relative;
}

.capabilities-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #25465e, #3a6b8c);
    transform: translateX(-50%);
}

.capability-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.capability-item:nth-child(even) {
    flex-direction: row-reverse;
}

.capability-item:nth-child(even) .capability-content {
    text-align: right;
}

.capability-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    margin: 0 40px;
    flex-shrink: 0;
}

.capability-content {
    flex: 1;
    max-width: 500px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .capability-content {
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.capability-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

body.dark-theme .capability-title {
    color: white;
}

.capability-subtitle {
    font-size: 1.1em;
    color: #25465e;
    margin-bottom: 20px;
    font-weight: 500;
}

body.dark-theme .capability-subtitle {
    color: #3a6b8c;
}

.capability-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

body.dark-theme .capability-description {
    color: #ccc;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25465e;
    font-weight: bold;
}

body.dark-theme .capability-features li {
    color: #bbb;
}

.expertise-cta {
    background: linear-gradient(135deg, #25465e 0%, #3a6b8c 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

/* Sustainability/Positive Impact Page Styles */
.sustainability-hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

body.dark-theme .sustainability-hero {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2d1a 100%);
}

.sustainability-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(34, 139, 34, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.sustainability-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sustainability-badge {
    display: inline-block;
    background: linear-gradient(45deg, #228b22, #32cd32);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.sustainability-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 300;
    color: #2d5a2d;
    margin-bottom: 30px;
    line-height: 1.2;
}

body.dark-theme .sustainability-title {
    color: #90ee90;
}

.sustainability-description {
    font-size: 1.2em;
    color: #4a6741;
    margin-bottom: 40px;
    line-height: 1.6;
}

body.dark-theme .sustainability-description {
    color: #b8d4b8;
}

.sustainability-commitment {
    display: flex;
    align-items: center;
    gap: 20px;
}

.commitment-highlight {
    background: linear-gradient(45deg, #228b22, #32cd32);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.commitment-year {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.commitment-label {
    display: block;
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 5px;
}

.sustainability-visual {
    text-align: center;
}

.sustainability-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .sustainability-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.impact-areas {
    background: white;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .impact-areas {
    background: #0a0a0a;
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
}

.impact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .impact-title {
    color: white;
}

.impact-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .impact-subtitle {
    color: #ccc;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.impact-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .impact-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .impact-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.impact-icon {
    margin-bottom: 30px;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #228b22, #32cd32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2em;
}

.impact-card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .impact-card-title {
    color: white;
}

.impact-card-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

body.dark-theme .impact-card-description {
    color: #ccc;
}

.impact-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.impact-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.impact-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #228b22;
    font-weight: bold;
}

body.dark-theme .impact-features li {
    color: #bbb;
}

.environmental-metrics {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .environmental-metrics {
    background: linear-gradient(135deg, #1a2d1a 0%, #0a1a0a 100%);
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.metrics-header {
    text-align: center;
    margin-bottom: 80px;
}

.metrics-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #2d5a2d;
    margin-bottom: 20px;
}

body.dark-theme .metrics-title {
    color: #90ee90;
}

.metrics-subtitle {
    font-size: 1.2em;
    color: #4a6741;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .metrics-subtitle {
    color: #b8d4b8;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.metric-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .metric-item {
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 3em;
    font-weight: bold;
    color: #228b22;
    margin-bottom: 15px;
    display: block;
}

body.dark-theme .metric-value {
    color: #32cd32;
}

.metric-label {
    font-size: 1.1em;
    color: #666;
    line-height: 1.4;
}

body.dark-theme .metric-label {
    color: #ccc;
}

.sustainability-cta {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

/* Ethics & Compliance Page Styles */
.ethics-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

body.dark-theme .ethics-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.ethics-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 70, 94, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ethics-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ethics-badge {
    display: inline-block;
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.ethics-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

body.dark-theme .ethics-title {
    color: white;
}

.ethics-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

body.dark-theme .ethics-description {
    color: #ccc;
}

.ethics-commitment {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .commitment-item {
    background: #2d2d2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 1.5em;
}

.commitment-text {
    font-weight: 600;
    color: #333;
}

body.dark-theme .commitment-text {
    color: white;
}

.ethics-visual {
    text-align: center;
}

.ethics-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .ethics-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.compliance-framework {
    background: white;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .compliance-framework {
    background: #0a0a0a;
}

.framework-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.framework-header {
    text-align: center;
    margin-bottom: 80px;
}

.framework-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .framework-title {
    color: white;
}

.framework-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .framework-subtitle {
    color: #ccc;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.framework-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .framework-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .framework-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.framework-icon {
    margin-bottom: 30px;
}

.icon-shield {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #6c757d, #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2em;
}

.framework-card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .framework-card-title {
    color: white;
}

.framework-card-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

body.dark-theme .framework-card-description {
    color: #ccc;
}

.framework-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.framework-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.framework-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c757d;
    font-weight: bold;
}

body.dark-theme .framework-features li {
    color: #bbb;
}

.speak-up {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .speak-up {
    background: #1a1a1a;
}

.speak-up-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.speak-up-content {
    text-align: center;
}

.speak-up-header {
    margin-bottom: 60px;
}

.speak-up-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .speak-up-title {
    color: white;
}

.speak-up-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .speak-up-subtitle {
    color: #ccc;
}

.speak-up-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.speak-up-text {
    text-align: left;
}

.speak-up-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

body.dark-theme .speak-up-description {
    color: #ccc;
}

.speak-up-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.dark-theme .feature-item {
    background: #2d2d2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 1.2em;
}

.feature-text {
    color: #333;
    font-weight: 500;
}

body.dark-theme .feature-text {
    color: white;
}

.speak-up-cta {
    text-align: center;
}

.cta-card {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.ethics-cta {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

/* Premium Social Responsibility Page Styles */

/* Premium Hero Section */
.csr-hero-premium {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

body.dark-theme .csr-hero-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.csr-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    padding: 40px 0;
}

.hero-badge-container {
    position: relative;
    margin-bottom: 40px;
}

.csr-badge-premium {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.badge-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    margin-top: 15px;
    border-radius: 2px;
}

.csr-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 300;
    color: #1e40af;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

body.dark-theme .csr-title-premium {
    color: #93c5fd;
}

.hero-description-block {
    margin-bottom: 50px;
}

.csr-description-premium {
    font-size: 1.3em;
    color: #1e3a8a;
    line-height: 1.7;
    font-weight: 400;
}

body.dark-theme .csr-description-premium {
    color: #93c5fd;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

body.dark-theme .hero-stat-item {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(147, 197, 253, 0.2);
}

.hero-stat-item:hover {
    transform: translateY(-5px);
}

.stat-number-hero {
    display: block;
    font-size: 2.2em;
    font-weight: bold;
    color: #1d4ed8;
    margin-bottom: 5px;
}

body.dark-theme .stat-number-hero {
    color: #93c5fd;
}

.stat-label-hero {
    font-size: 0.9em;
    color: #64748b;
    font-weight: 500;
}

body.dark-theme .stat-label-hero {
    color: #cbd5e1;
}

.hero-visual-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.csr-image-premium {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

body.dark-theme .csr-image-premium {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    border-radius: 25px;
    pointer-events: none;
}

.floating-commitment-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.commitment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .commitment-card {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.commitment-card:hover {
    transform: translateX(10px);
}

.commitment-icon-premium {
    font-size: 1.5em;
}

.commitment-text-premium {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1em;
}

body.dark-theme .commitment-text-premium {
    color: #93c5fd;
}

/* Premium Focus Areas Section */
.csr-focus-premium {
    background: white;
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .csr-focus-premium {
    background: #0a0a0a;
}

.focus-container-premium {
    max-width: 1400px;
    margin: 0 auto;
}

.focus-header-premium {
    text-align: center;
    margin-bottom: 100px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.focus-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    color: #1e40af;
    margin-bottom: 25px;
    line-height: 1.2;
}

body.dark-theme .focus-title-premium {
    color: #93c5fd;
}

.focus-subtitle-premium {
    font-size: 1.3em;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

body.dark-theme .focus-subtitle-premium {
    color: #cbd5e1;
}

.focus-area-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.focus-area-row.right-aligned {
    direction: rtl;
}

.focus-area-row.right-aligned .focus-content-block {
    direction: ltr;
    text-align: right;
}

.focus-content-block {
    padding: 40px;
}

.focus-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.focus-icon-large {
    font-size: 3em;
    margin-bottom: 25px;
    display: block;
}

.focus-title-large {
    font-size: 2.2em;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.3;
}

body.dark-theme .focus-title-large {
    color: #93c5fd;
}

.focus-description-large {
    font-size: 1.2em;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

body.dark-theme .focus-description-large {
    color: #cbd5e1;
}

.focus-features-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

body.dark-theme .feature-item-premium {
    background: rgba(147, 197, 253, 0.1);
    border-left-color: #93c5fd;
}

.feature-item-premium:hover {
    transform: translateX(10px);
}

.feature-check {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.1em;
}

body.dark-theme .feature-check {
    color: #93c5fd;
}

.focus-visual-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.focus-image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

body.dark-theme .focus-image-wrapper {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.focus-area-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.focus-image-wrapper:hover .focus-area-image {
    transform: scale(1.05);
}

.focus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(29, 78, 216, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.focus-image-wrapper:hover .focus-overlay {
    opacity: 1;
}

.focus-stats {
    width: 100%;
}

.focus-stat-item {
    text-align: center;
    color: white;
}

.focus-stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.focus-stat-label {
    font-size: 1em;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Fallback for missing images */
.focus-background-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-background-shape::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    opacity: 0.1;
}

/* Premium Employee Engagement Section */
.employee-engagement-premium {
    background: #f8fafc;
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .employee-engagement-premium {
    background: #1a1a1a;
}

.engagement-container-premium {
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.engagement-header-section {
    text-align: center;
}

.engagement-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    color: #1e40af;
    margin-bottom: 25px;
    line-height: 1.2;
}

body.dark-theme .engagement-title-premium {
    color: #93c5fd;
}

.engagement-subtitle-premium {
    font-size: 1.3em;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

body.dark-theme .engagement-subtitle-premium {
    color: #cbd5e1;
}

.engagement-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.engagement-features-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card-premium {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

body.dark-theme .feature-card-premium {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .feature-card-premium:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-icon-container {
    margin-bottom: 25px;
}

.feature-icon-premium {
    font-size: 2.5em;
    display: block;
}

.feature-content-premium {
    text-align: left;
}

.feature-title-premium {
    font-size: 1.5em;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

body.dark-theme .feature-title-premium {
    color: #93c5fd;
}

.feature-description-premium {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

body.dark-theme .feature-description-premium {
    color: #cbd5e1;
}

.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

body.dark-theme .feature-metric {
    background: rgba(147, 197, 253, 0.1);
    border-left-color: #93c5fd;
}

.metric-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #1d4ed8;
}

body.dark-theme .metric-number {
    color: #93c5fd;
}

.metric-label {
    font-size: 0.9em;
    color: #64748b;
    font-weight: 500;
}

body.dark-theme .metric-label {
    color: #cbd5e1;
}

.engagement-impact-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-visual-container {
    text-align: center;
}

.impact-circle-chart {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    position: relative;
}

.impact-circle-chart::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: white;
    border-radius: 50%;
}

body.dark-theme .impact-circle-chart::before {
    background: #1a1a1a;
}

.chart-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.chart-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #1d4ed8;
    margin-bottom: 5px;
}

body.dark-theme .chart-number {
    color: #93c5fd;
}

.chart-label {
    font-size: 1em;
    color: #64748b;
    font-weight: 500;
}

body.dark-theme .chart-label {
    color: #cbd5e1;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.impact-stat {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

body.dark-theme .impact-stat {
    background: #2d2d2d;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.impact-number {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    color: #1d4ed8;
    margin-bottom: 5px;
}

body.dark-theme .impact-number {
    color: #93c5fd;
}

.impact-label {
    font-size: 0.9em;
    color: #64748b;
    font-weight: 500;
}

body.dark-theme .impact-label {
    color: #cbd5e1;
}

/* Premium CTA Section */
.csr-cta-premium {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content-premium {
    text-align: center;
    color: white;
}

.cta-header-premium {
    margin-bottom: 50px;
}

.cta-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description-premium {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-actions-premium {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.premium-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-btn-cta.primary {
    background: white;
    color: #1d4ed8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.premium-btn-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.premium-btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-text {
    font-weight: 600;
}

.btn-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.premium-btn-cta:hover .btn-icon {
    transform: translateX(5px);
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon {
    font-size: 1.3em;
}

.trust-text {
    font-weight: 500;
    opacity: 0.9;
}

/* Premium Events Page Styles */

/* Events Hero Section */
.events-hero-premium {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

body.dark-theme .events-hero-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.events-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events-badge-premium {
    display: inline-block;
    background: linear-gradient(45deg, #1e3a8a, #3730a3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.events-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 300;
    color: #1e3a8a;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

body.dark-theme .events-title-premium {
    color: #93c5fd;
}

.events-description-premium {
    font-size: 1.3em;
    color: #1e40af;
    line-height: 1.7;
    font-weight: 400;
}

body.dark-theme .events-description-premium {
    color: #93c5fd;
}

.events-image-premium {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

body.dark-theme .events-image-premium {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.floating-event-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.event-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .event-highlight-card {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.event-highlight-card:hover {
    transform: translateX(10px);
}

.event-date {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 0.9em;
}

body.dark-theme .event-date {
    color: #93c5fd;
}

.event-name {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1em;
}

body.dark-theme .event-name {
    color: #93c5fd;
}

.event-location {
    color: #64748b;
    font-size: 0.9em;
}

body.dark-theme .event-location {
    color: #cbd5e1;
}

/* Featured Event Section */
.featured-event-premium {
    background: white;
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .featured-event-premium {
    background: #0a0a0a;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-header {
    text-align: center;
    margin-bottom: 80px;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    color: #1e3a8a;
    margin-bottom: 25px;
    line-height: 1.2;
}

body.dark-theme .featured-title {
    color: #93c5fd;
}

.featured-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

body.dark-theme .featured-subtitle {
    color: #cbd5e1;
}

.featured-event-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.featured-event-content {
    padding: 40px;
}

.event-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.event-date-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: linear-gradient(45deg, #1e3a8a, #3730a3);
    color: white;
    border-radius: 20px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.date-day {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-year {
    font-size: 0.9em;
    opacity: 0.9;
}

.event-location-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-icon {
    font-size: 1.5em;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-city {
    font-size: 1.3em;
    font-weight: 600;
    color: #1e3a8a;
}

body.dark-theme .location-city {
    color: #93c5fd;
}

.location-country {
    color: #64748b;
    font-size: 0.9em;
}

body.dark-theme .location-country {
    color: #cbd5e1;
}

.event-description-premium {
    margin-bottom: 40px;
}

.event-description-premium p {
    font-size: 1.2em;
    color: #64748b;
    line-height: 1.7;
}

body.dark-theme .event-description-premium p {
    color: #cbd5e1;
}

.event-highlights {
    margin-bottom: 40px;
}

.event-highlights h4 {
    font-size: 1.3em;
    color: #1e3a8a;
    margin-bottom: 25px;
    font-weight: 600;
}

body.dark-theme .event-highlights h4 {
    color: #93c5fd;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 15px;
    border-left: 4px solid #1e3a8a;
}

body.dark-theme .highlight-item {
    background: rgba(147, 197, 253, 0.1);
    border-left-color: #93c5fd;
}

.highlight-icon {
    font-size: 1.5em;
    margin-top: 5px;
}

.highlight-content strong {
    color: #1e3a8a;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

body.dark-theme .highlight-content strong {
    color: #93c5fd;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

body.dark-theme .highlight-content p {
    color: #cbd5e1;
}

.event-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.featured-event-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

body.dark-theme .event-image-container {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.featured-event-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.status-badge {
    background: linear-gradient(45deg, #1e3a8a, #3730a3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.event-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

body.dark-theme .event-info-card {
    background: #2d2d2d;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

body.dark-theme .info-item {
    border-bottom-color: rgba(147, 197, 253, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #64748b;
    font-weight: 500;
}

body.dark-theme .info-label {
    color: #cbd5e1;
}

.info-value {
    color: #1e3a8a;
    font-weight: 600;
}

body.dark-theme .info-value {
    color: #93c5fd;
}

/* Upcoming Events Timeline */
.upcoming-events-premium {
    background: #f8fafc;
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .upcoming-events-premium {
    background: #1a1a1a;
}

.upcoming-container {
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-header {
    text-align: center;
    margin-bottom: 80px;
}

.upcoming-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    color: #1e3a8a;
    margin-bottom: 25px;
    line-height: 1.2;
}

body.dark-theme .upcoming-title {
    color: #93c5fd;
}

.upcoming-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

body.dark-theme .upcoming-subtitle {
    color: #cbd5e1;
}

.events-timeline {
    position: relative;
    padding-left: 40px;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1e3a8a, #3730a3);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #1e3a8a;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.2);
}

body.dark-theme .timeline-item::before {
    border-color: #1a1a1a;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
    min-width: 120px;
}

body.dark-theme .timeline-date {
    background: #2d2d2d;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.timeline-month {
    font-size: 1.1em;
    font-weight: 600;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-theme .timeline-month {
    color: #93c5fd;
}

.timeline-day {
    font-size: 2em;
    font-weight: bold;
    color: #1e40af;
    line-height: 1;
    margin: 5px 0;
}

body.dark-theme .timeline-day {
    color: #93c5fd;
}

.timeline-year {
    font-size: 0.9em;
    color: #64748b;
}

body.dark-theme .timeline-year {
    color: #cbd5e1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-theme .timeline-content {
    background: #2d2d2d;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .timeline-content:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.timeline-event-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-theme .timeline-event-title {
    color: #93c5fd;
}

.timeline-location {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1em;
}

body.dark-theme .timeline-location {
    color: #93c5fd;
}

.timeline-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

body.dark-theme .timeline-description {
    color: #cbd5e1;
}

.timeline-participation {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.participation-type {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-theme .participation-type {
    background: rgba(147, 197, 253, 0.2);
    color: #93c5fd;
}

/* Events CTA Section */
.events-cta-premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 120px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.events-cta-premium .cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.events-cta-premium .cta-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events-cta-premium .cta-content-premium {
    text-align: center;
    color: white;
}

.events-cta-premium .cta-header-premium {
    margin-bottom: 50px;
}

.events-cta-premium .cta-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.events-cta-premium .cta-description-premium {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.events-cta-premium .cta-actions-premium {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Actions Center for Events */
.cta-actions-center {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.premium-btn.large {
    padding: 18px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.premium-btn.primary.large {
    background: linear-gradient(45deg, #1e40af, #3730a3);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.premium-btn.primary.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.premium-btn.secondary.large {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.premium-btn.secondary.large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.csr-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.csr-badge {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.csr-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 300;
    color: #1e40af;
    margin-bottom: 30px;
    line-height: 1.2;
}

body.dark-theme .csr-title {
    color: #93c5fd;
}

.csr-description {
    font-size: 1.2em;
    color: #1e3a8a;
    margin-bottom: 40px;
    line-height: 1.6;
}

body.dark-theme .csr-description {
    color: #93c5fd;
}

.csr-commitment {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.commitment-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .commitment-highlight {
    background: #2d2d2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.commitment-highlight:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 1.5em;
}

.commitment-text {
    font-weight: 600;
    color: #333;
}

body.dark-theme .commitment-text {
    color: white;
}

.csr-visual {
    text-align: center;
}

.csr-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .csr-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.csr-focus-areas {
    background: white;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .csr-focus-areas {
    background: #0a0a0a;
}

.focus-container {
    max-width: 1400px;
    margin: 0 auto;
}

.focus-header {
    text-align: center;
    margin-bottom: 80px;
}

.focus-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .focus-title {
    color: white;
}

.focus-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .focus-subtitle {
    color: #ccc;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.focus-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .focus-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-theme .focus-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.focus-icon {
    margin-bottom: 30px;
}

.focus-card .icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2em;
    flex-shrink: 0;
    position: relative;
}

.focus-card .icon-circle i {
    line-height: 1;
    display: block;
}

.focus-card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .focus-card-title {
    color: white;
}

.focus-card-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

body.dark-theme .focus-card-description {
    color: #ccc;
}

.focus-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.focus-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.focus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

body.dark-theme .focus-features li {
    color: #bbb;
}

.employee-engagement {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .employee-engagement {
    background: #1a1a1a;
}

.engagement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.engagement-text {
    text-align: left;
}

.engagement-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
}

body.dark-theme .engagement-title {
    color: white;
}

.engagement-description {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

body.dark-theme .engagement-description {
    color: #ccc;
}

.engagement-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.engagement-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-theme .engagement-features .feature-item {
    background: #2d2d2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.engagement-features .feature-item:hover {
    transform: translateY(-5px);
}

.engagement-features .feature-icon {
    font-size: 1.5em;
    margin-top: 5px;
}

.feature-content h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

body.dark-theme .feature-content h4 {
    color: white;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

body.dark-theme .feature-content p {
    color: #ccc;
}

.engagement-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1em;
    opacity: 0.9;
    line-height: 1.3;
}

.csr-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

/* Enhanced Contact Section Styles */
.contact-additional {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #25465e;
}

.contact-section {
    flex: 1 1 calc(33.333% - 20px);
    background: rgba(37, 70, 94, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

body.dark-theme .contact-section {
    background: rgba(37, 70, 94, 0.2);
}

.contact-section h3 {
    color: #25465e;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

body.dark-theme .contact-section h3 {
    color: #3a6b8c;
}

.contact-section p {
    margin: 10px 0;
    line-height: 1.6;
}

.contact-section a {
    color: #25465e;
    text-decoration: none;
    font-weight: 500;
}

.contact-section a:hover {
    color: #1a3a4f;
    text-decoration: underline;
}

body.dark-theme .contact-section a {
    color: #3a6b8c;
}

body.dark-theme .contact-section a:hover {
    color: #4a7ba0;
}

@media (max-width: 768px) {
    .contact-additional {
        flex-direction: column;
    }

    .contact-section {
        flex: 1 1 100%;
    }
}

/* Safety Metrics Styles */
.safety-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3em;
    font-weight: bold;
    color: #25465e;
    margin-bottom: 15px;
    display: block;
}

.metric-label {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .safety-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-number {
        font-size: 2.5em;
    }
}

/* Premium Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 70, 94, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-card h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 30px;
    text-align: center;
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    width: 100%;
    box-sizing: border-box;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25465e;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Fix select dropdown options visibility */
.form-group select option {
    background: #ffffff;
    color: #333333;
    padding: 10px;
}

.form-group select option:hover {
    background: #f0f0f0;
    color: #000000;
}

/* Ensure select text is visible when option is selected */
.form-group select:not([value=""]) {
    color: white;
}

/* Style the default option differently */
.form-group select option[value=""] {
    color: #999999;
    font-style: italic;
}

/* Additional browser compatibility for select styling */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Dark theme compatibility */
body.dark-theme .form-group select option {
    background: #2d2d2d;
    color: #ffffff;
}

body.dark-theme .form-group select option:hover {
    background: #404040;
    color: #ffffff;
}

.global-offices-section {
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .global-offices-section {
    background: #1a1a1a;
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.4em;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-theme .section-subtitle {
    color: #ccc;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.office-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .office-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
}

.office-card.headquarters::before {
    background: linear-gradient(45deg, #d4af37, #ffd700);
}

.office-card.emergency::before {
    background: linear-gradient(45deg, #dc3545, #ff6b7a);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.office-badge {
    display: inline-block;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.office-badge.emergency-badge {
    background: linear-gradient(45deg, #dc3545, #ff6b7a);
}

.office-card.headquarters .office-badge {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #1a1a1a;
}

.office-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.office-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

body.dark-theme .office-card h3 {
    color: white;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    font-size: 1.2em;
    margin-top: 2px;
}

.detail-content strong {
    display: block;
    color: #25465e;
    font-weight: 600;
    margin-bottom: 5px;
}

body.dark-theme .detail-content strong {
    color: #3a6b8c;
}

.detail-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

body.dark-theme .detail-content p {
    color: #ccc;
}

.detail-content a {
    color: #25465e;
    text-decoration: none;
    font-weight: 500;
}

.detail-content a:hover {
    text-decoration: underline;
}

body.dark-theme .detail-content a {
    color: #3a6b8c;
}

.departments-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: white;
}

.departments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.department-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

.dept-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.department-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.department-card p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.dept-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #25465e;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(37, 70, 94, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(37, 70, 94, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2em;
    color: #25465e;
    margin-right: 8px;
}

/* WhatsApp specific styling */
.whatsapp-link {
    background: rgba(37, 211, 102, 0.1) !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-link .contact-icon {
    color: #25d366;
}

/* Premium Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Firefox Scrollbar */
.mobile-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-logo span {
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

/* Smooth scrolling for mobile menu content */
.mobile-menu-content {
    scroll-behavior: smooth;
}

/* Add padding to ensure content doesn't get cut off */
.mobile-menu-content::after {
    content: '';
    display: block;
    height: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 35px;
}

.mobile-nav-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.mobile-nav-link.has-dropdown.active::after {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: block;
    padding: 15px 25px 15px 50px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #60a5fa;
    padding-left: 55px;
}

.mobile-menu-footer {
    flex-shrink: 0;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.mobile-contact-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: white;
    color: #1a365d;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.mobile-theme-toggle {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9em;
}

.mobile-theme-switch {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator for Mobile Menu */
.mobile-menu-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-scroll-indicator.show {
    opacity: 1;
}

.mobile-menu-scroll-indicator i {
    display: block;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsive Styles for Premium Features */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .premium-nav {
        display: none;
    }

    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.1em;
    }

    /* Fix container padding for mobile */
    .premium-container,
    .services-container,
    .certifications-container,
    .clients-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .premium-section {
        padding: 60px 0;
    }

    .services-showcase {
        padding: 60px 0;
    }

    .certifications-section {
        padding: 60px 0;
    }

    .clients-section {
        padding: 60px 0;
    }

    /* Our Mission page sections */
    .strategic-pillars {
        padding: 60px 0;
    }

    .board-section {
        padding: 60px 0;
    }

    .pillars-container {
        padding: 0 20px;
    }

    .text-content {
        padding: 0 20px;
        max-width: 100%;
    }

    #our-mission {
        padding: 40px 0;
        flex-direction: column;
    }

    .mission-image {
        max-width: 100%;
        margin: 0 0 20px 0;
        float: none;
    }

    /* Our Strategy page sections */
    .strategy-hero {
        padding: 60px 0;
    }

    .strategy-cta {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .strategy-title {
        font-size: 2.5rem;
    }

    /* Additional page sections */
    .expertise-hero,
    .core-capabilities,
    .expertise-cta,
    .sustainability-hero,
    .impact-areas,
    .environmental-metrics,
    .sustainability-cta,
    .ethics-hero,
    .compliance-framework,
    .speak-up,
    .ethics-cta,
    .csr-hero-premium,
    .csr-focus-premium,
    .employee-engagement-premium,
    .csr-cta-premium,
    .events-hero-premium,
    .featured-event-premium,
    .upcoming-events-premium,
    .events-cta-premium,
    .csr-focus-areas,
    .employee-engagement,
    .csr-cta,
    .global-offices-section,
    .departments-section {
        padding: 60px 0;
    }

    .impact-container,
    .metrics-container,
    .framework-container,
    .speak-up-container,
    .offices-container,
    .departments-container {
        padding: 0 20px;
    }

    .contact-btn {
        display: none;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        padding: 20px;
    }

    .mobile-menu-footer {
        padding: 20px;
    }
}

/* Very small screens (landscape phones) */
@media (max-width: 360px) {
    .mobile-nav-link {
        padding: 15px 20px;
        font-size: 0.9em;
    }

    .mobile-dropdown-link {
        padding: 12px 20px 12px 40px;
        font-size: 0.85em;
    }
}

    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .office-card {
        padding: 30px;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .department-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2.2em;
    }

    .premium-title {
        font-size: 2.5em;
    }

    .contact-form-card {
        padding: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        box-sizing: border-box;
    }
}

/* Mobile responsive styles continued */

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .premium-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .office-card,
    .department-card {
        padding: 25px;
    }

    .contact-form-card {
        padding: 25px;
    }
}

/* Premium Mission Page Styles */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.value-item h3 {
    color: white;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.commitment-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-theme .commitment-card {
    background: #2d2d2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.commitment-number {
    display: inline-block;
    background: linear-gradient(45deg, #25465e, #3a6b8c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 25px;
}

.commitment-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

body.dark-theme .commitment-card h3 {
    color: white;
}

.commitment-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

body.dark-theme .commitment-card p {
    color: #ccc;
}

@media (max-width: 768px) {
    .mission-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-item {
        padding: 25px 15px;
    }

    .commitment-card {
        padding: 30px;
    }
}

/* Board of Directors Section */
.board-section {
    background: #f8fafc;
    padding: 80px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

body.dark-theme .board-section {
    background: #1a1a1a;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.board-member {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #25465e;
    position: relative;
    overflow: hidden;
}

body.dark-theme .board-member {
    background: #2d2d2d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.board-member::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(37, 70, 94, 0.1), rgba(58, 107, 140, 0.1));
    border-radius: 0 0 0 60px;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #25465e;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
}

body.dark-theme .member-name {
    color: #60a5fa;
}

.member-title {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-theme .member-title {
    color: white;
}

.member-expertise {
    font-size: 0.95em;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

body.dark-theme .member-expertise {
    color: #ccc;
}

@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .board-member {
        padding: 25px;
    }

    .member-name {
        font-size: 1.2em;
    }
}

/* Premium Footer Styles */
.premium-footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a202c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 0.95em;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links li a i {
    font-size: 0.8em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover i {
    opacity: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e0;
    font-size: 0.9em;
}

.contact-item i {
    color: #60a5fa;
    margin-top: 2px;
    font-size: 1em;
}

.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #a0aec0;
    font-size: 0.9em;
}

.footer-legal {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-legal li a:hover {
    color: white;
}

/* Dark Theme Footer Adjustments */
body.dark-theme .premium-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Mobile Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-description {
        max-width: none;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small screen optimizations for main sections */
    .premium-container,
    .services-container,
    .certifications-container,
    .clients-container {
        padding: 0 15px;
    }

    .premium-section,
    .services-showcase,
    .certifications-section,
    .clients-section {
        padding: 40px 0;
    }

    .premium-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .services-title,
    .certifications-title,
    .clients-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .premium-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .certification-card,
    .testimonial-card {
        padding: 20px 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    /* Our Mission page mobile optimizations */
    .strategic-pillars {
        padding: 40px 0;
    }

    .board-section {
        padding: 40px 0;
    }

    .pillars-container {
        padding: 0 15px;
    }

    .text-content {
        padding: 0 15px;
    }

    #our-mission {
        padding: 30px 0;
    }

    .mission-header {
        font-size: 2.2rem;
    }

    /* Our Strategy page mobile optimizations */
    .strategy-hero {
        padding: 40px 0;
    }

    .strategy-cta {
        padding: 40px 0;
    }

    .cta-container {
        padding: 0 15px;
    }

    .strategy-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .strategy-description {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    /* Additional page sections mobile optimizations */
    .expertise-hero,
    .core-capabilities,
    .expertise-cta,
    .sustainability-hero,
    .impact-areas,
    .environmental-metrics,
    .sustainability-cta,
    .ethics-hero,
    .compliance-framework,
    .speak-up,
    .ethics-cta,
    .csr-hero-premium,
    .csr-focus-premium,
    .employee-engagement-premium,
    .csr-cta-premium,
    .events-hero-premium,
    .featured-event-premium,
    .upcoming-events-premium,
    .events-cta-premium,
    .csr-focus-areas,
    .employee-engagement,
    .csr-cta,
    .global-offices-section,
    .departments-section {
        padding: 40px 0;
    }

    .impact-container,
    .metrics-container,
    .framework-container,
    .speak-up-container,
    .offices-container,
    .departments-container {
        padding: 0 15px;
    }

    .pillar-card {
        padding: 25px 15px;
    }

    .board-member {
        padding: 20px 15px;
    }

    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a {
        justify-content: center;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}
