/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  :root {
    --primary-color: #c4a968;
    --secondary-color: #0F2A5C;
    --text-light: #aaa;
    --text-white: #fff;
    --card-bg:  #000C2A;
    --gradient-primary: linear-gradient(45deg, #C4A968, #D6BC7A);
  }
  body {
    background-color: var(--secondary-color);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Particles Background */
  .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
  }
  .particle {
    position: absolute;
    background-color: rgba(196, 169, 104, 0.1);
    border-radius: 50%;
  }
  @keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 20px); }
  }
  
  /* Enhanced Hero Section */
  .about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
      linear-gradient(rgba(22, 49, 97, 0.8), rgba(15, 42, 92, 0.8)),
      url('../images/a.png') no-repeat center center / cover;
    overflow: hidden;
    perspective: 1000px;
  }
  .about-hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background:  rgba(15, 42, 92, 0.65);
    z-index: 1;
  }
  
  /* Hero Content Container */
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 40px;
    margin-top: 1rem;
    background: rgb(0, 12, 42, 0.7);  
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.6s ease;
  }
  .hero-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  }
  
  /* Hero Title */
  .about-hero h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleAnimation 1.2s ease forwards;
    line-height: 1.2;
  }
  @keyframes heroTitleAnimation {
    0% {
      opacity: 0;
      transform: translateY(50px) scale(0.8);
      letter-spacing: -5px;
    }
    70% {
      letter-spacing: 2px;
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      letter-spacing: normal;
    }
  }
  
  /* Hero Paragraph (Subheading) */
  .about-hero p {
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hero Details (Optional Additional Info) */
  .hero-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroDetailsAnimation 1.2s ease forwards;
    animation-delay: 0.6s;
  }
  @keyframes heroDetailsAnimation {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-detail-card {
    background: rgb(15, 42, 92, 0.7);
    border: 1px solid rgba(196, 169, 104, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
  }
  .hero-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .hero-detail-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .hero-detail-card p {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* Company Information Section */
  section.content {
    padding: 80px 0;
    background: linear-gradient(135deg, #121212 0%, var(--secondary-color) 100%);
  }
  section.content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
  }
  section.content p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
    line-height: 1.8;
    font-size: 1rem;
  }
  
  /* Mission, Vision, Values Cards */
  .mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .mvv-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 1s ease, opacity 1s ease;
  }
  .mvv-card.visible {
    opacity: 1;
    transform: scale(1);
  }
  .mvv-card:hover {
    transform: scale(1.03);
  }
  .mvv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, transparent, transparent, var(--primary-color));
    transform: rotate(-45deg);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .mvv-card:hover::before {
    opacity: 0.2;
  }
  .mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .mvv-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* partners */

  .partners h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}
  .logo-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo-container img {
    height: 120px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
  }
  
  /* Leadership Section */
  .leadership {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #121212 100%);
  }
  .leadership h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
  }
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .leader-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s ease, opacity 1s ease;
  }
  .leader-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .leader-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transition: bottom 0.4s ease;
  }
  .leader-card:hover::after {
    bottom: 0;
  }
  .leader-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: rgba(196, 169, 104, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .leader-card:hover .leader-image {
    transform: scale(1.05);
  }
  .leader-card:hover .leader-image img {
    transform: scale(1.1);
  }
  
  /* Slider Section (Partners & Clients) */
  .slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #121212 0%, var(--secondary-color) 100%);
    position: relative;
  }
  .slider-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
  }
  .slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
  }
  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .slide {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 15px;
    text-align: center;
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .slide:hover {
    transform: scale(1.05);
    opacity: 1;
  }
  .slide img {
    width: 100%;
    max-height: 100px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
  }
  .slide:hover img {
    filter: grayscale(0%);
  }
  /* Arrow Buttons */
  .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .arrow-btn:hover {
    background-color: #D6BC7A;
    transform: translateY(-50%) scale(1.1);
  }
  .arrow-left {
    left: 10px;
  }
  .arrow-right {
    right: 10px;
  }

  /* partners */
  .partners h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.logoMarqueeSection {
    padding-top: 30px;
    padding-bottom: 30px;
}
  
  #logoMarqueeSection {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .default-content-container {
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      padding-left: 5rem;
      padding-right: 5rem;
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      width: 100%;
      min-height: 100vh;
  }
  
  div.marquee>a>img {
    height: 100px;
  }
  
  .logoMarqueeSection>div>div {
      padding-top: 0;
      padding-bottom: 0;
      min-height: 0;
  }
  
  .marquee-wrapper {
    display:  inline-block;
    white-space: nowrap;
  }
  
  .marquee {
      display:  inline-block;
      white-space: nowrap;
      position: relative;
      transform: translate3d(0%, 0, 0);
      animation-name: marquee;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
  }
  
  .marquee a {
      display:  inline-block;
      white-space: nowrap;
      padding-right: 5.4rem;
  }
  
  .marquee-wrapper:hover .marquee {
      animation-play-state: paused !important;
  }

  .marqueelogo {
    width: auto;
    max-width: none;
    object-fit: contain;
    border-radius: 8px;
}

.marqueelogo#big {
    width:15rem;
}

  @keyframes marquee {
      0% {
          transform: translate3d(0%, 0, 0);
      }
  
      100% {
          transform: translate3d(-100%, 0, 0);
      }
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .mvv-grid, .leadership-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .about-hero h1 {
      font-size: 6vw;
    }
    .about-hero p {
      font-size: 1.5vw;
    }
    .hero-details {
      grid-template-columns: 1fr;
    }
    .slide {
      width: 200px;
      margin: 0 10px;
    }
  }
  @media (max-width: 768px) {
    .mvv-grid, .leadership-grid {
      grid-template-columns: 1fr;
    }
    .about-hero{
      margin-top: 2rem;
    }
    .about-hero h1 {
      font-size: 8vw;
    }
    .about-hero p,
    .hero-details,
    .about-details {
      font-size: 2vw;
    }
    .slide {
      width: 180px;
      margin: 0 8px;
    }

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

    .about-hero{
      margin-top: 2rem;
    }
    .slider-container {
      max-width: 90%;
    }
    .arrow-btn {
      padding: 8px;
    }
    .slide {
      width: 150px;
      margin: 0 5px;
    }
    .about-hero h1 {
      font-size: 10vw;
    }
    .about-hero p,
    .hero-details,
    .about-details {
      font-size: 4vw;
    }

    .partners h2 {
      font-size: 24px;
    }

    .logo-container img {
      height: 80px;
    }

    .partners h2 {
      font-size: 24px;
    }

    div.marquee>a>img {
        height: 70px;
    }

    .marquee a {
        padding-right: 2.4rem;
    }

    .logoMarqueeSection {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .marqueelogo#big {
        width:10rem;
    }
  }