/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #41d56f;
  --orange: #ffd700;
  --blue: #0d3485;
  --plgeen: #1fb095;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  /* font-family: 'Georgia', serif; */
  overflow-x: hidden;
}
.flex {
  display: flex;
  align-items: center;
}
/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-icon img {
  width: 7rem;
}
.logo-text {
  font-size: 0.75rem;
  font-weight: bold;
  color: #1a237e;
  text-transform: uppercase;
  line-height: 1.2;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #1a237e;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a237e;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #1a237e;
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

.search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cta-button {
  background: #ffd700;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 80px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(26, 35, 126, 0.85) 0%,
    rgba(26, 35, 126, 0.6) 50%,
    rgba(26, 35, 126, 0.3) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

.slide.active .slide-content {
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.slide-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--orange);
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slider-nav.prev {
  left: 2rem;
}

.slider-nav.next {
  right: 2rem;
}
.slide-font-reduce h1 {
  font-size: 2rem;
}
.slide-font-reduce p {
  font-size: 1rem;
}
/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #ffd700;
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
}

/* .about-image {
  width: 45%;
}

.about-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
} */

.about-content {
  padding: 2rem 0;
  width: 55%;
}

.about-title {
  font-size: 2.5rem;
}
.line-style {
  color: #1a237e;
  font-weight: 600;
  display: inline;
  background: linear-gradient(transparent 70%, rgba(244, 196, 48, 0.9) 58%);
}

.about-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: #ffd700;
  z-index: -1;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #333;
  margin: 1rem 0;
  font-weight: 600;
  line-height: 1.4;
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.read-more {
  display: inline-block;
  color: #1a237e;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.read-more:hover {
  transform: translateX(5px);
}

/* What We Do Wrapper */
.what-we-do-wrapper {
  position: relative;
  height: 400vh; /* Adjusted for 3 sections */
}

.what-we-do-section {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  background: #fdf6e3;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
}

.what-we-do-section.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.wwd-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.wwd-label {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.wwd-text h2 {
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.wwd-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.wwd-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.wwd-item {
  text-align: center;
}

.wwd-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border: 2px solid #1a237e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.wwd-item:hover .wwd-icon {
  background: #1a237e;
}

.wwd-item:hover .wwd-icon svg {
  color: #fff;
}

.wwd-icon svg {
  width: 28px;
  height: 28px;
  color: #1a237e;
  transition: color 0.3s;
}

.wwd-item p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

.wwd-image {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.wwd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Where We Work Section */
.where-we-work-section {
  padding: 5rem 10%;
  /* max-width: 1000px; */
  display: flex;
  align-items: center;

  background: #fff;
}

.section-title {
  font-size: 3rem;
  color: #1a237e;
  margin-bottom: 3rem;
  font-weight: 400;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 15px;
  background: #ffd700;
  z-index: -1;
}
.work-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work-card {
  background: #f5f8ff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.work-image {
  width: 100%;
  height: 250px;
  padding: 25px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-content {
  padding: 1.5rem;
}

.work-content h3 {
  font-size: 1.3rem;
  color: #1a237e;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.work-link {
  display: inline-block;
  color: #1a237e;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.work-link:hover {
  transform: translateX(5px);
}

@media (max-width: 968px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .where-we-work-section {
    padding: 3rem 3%;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .work-image {
    height: 200px;
  }
}
/* GS Moments Section */
.moments-section {
  padding: 5rem 0;
  background: #f8f9fa;
  overflow: hidden;
}

.moments-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moments-title {
  font-size: 3rem;
  color: #1a237e;
  font-weight: 400;
}

.moments-title .highlight {
  position: relative;
  display: inline-block;
}

.moments-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 15px;
  background: #ffd700;
  z-index: -1;
}

.moments-info {
  text-align: right;
  max-width: 450px;
}

.moments-info p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.moments-cta {
  display: inline-block;
  color: #1a237e;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.moments-cta:hover {
  transform: translateX(5px);
}

.moments-gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.moments-gallery {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-item {
  flex: 0 0 450px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #1a237e;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
  background: #1a237e;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 2rem;
}

.gallery-nav.next {
  right: 2rem;
}

/* Recent Articles Section */
.articles-section {
  padding: 5rem 5%;
  background: #e8f0f7;
}

.articles-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articles-title {
  font-size: 3rem;
  color: #1a237e;
  font-weight: 400;
}

.articles-title .highlight {
  position: relative;
  display: inline-block;
}

.articles-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 15px;
  background: #ffd700;
  z-index: -1;
}

.browse-all {
  color: #1a237e;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.browse-all:hover {
  transform: translateX(5px);
}

.articles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card:hover .article-image img {
  transform: scale(1.08);
}

.article-content {
  padding: 1.8rem;
}

.article-content h3 {
  font-size: 1.25rem;
  color: #1a237e;
  margin-bottom: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 3.5em;
}

.article-link {
  display: inline-block;
  color: #1a237e;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.article-link:hover {
  transform: translateX(5px);
}

@media (max-width: 968px) {
}

@media (max-width: 768px) {
  .articles-section {
    padding: 3rem 3%;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-title {
    font-size: 2rem;
  }

  .article-image {
    height: 200px;
  }

  .article-content h3 {
    min-height: auto;
  }
}

/* Footer */
.footer {
  background: #0a2463;
  color: #fff;
  padding-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-main {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.footer-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffd700;
}

.contact-column .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-email {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-addresses {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.address-block .address-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.address-block p:not(.address-label) {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Bottom */
.footer-bottom {
  background: #081942;
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: #ffd700;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}
