   :root {
       --primary: #0A3D62;
       --accent: #0A3D62;
       --gold: #0A3D62;
       --light: #ECF0F1;
       --dark: #1A1A2E;
       --text: #2C3E50;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: 'DM Sans', sans-serif;
       color: var(--text);
       overflow-x: hidden;
       /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
   }

   /* Hero Section */
   .hero {
       position: relative;
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       background: linear-gradient(135deg, var(--primary) 0%, #16537e 100%);
       overflow: hidden;
   }

   /* Carousel Styles */
   .carousel-container {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       overflow: hidden;
   }

   .carousel-track {
       position: relative;
       width: 100%;
       height: 100%;
   }

   .carousel-slide {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       opacity: 0;
       transition: opacity 1.5s ease-in-out;
   }

   .carousel-slide.active {
       opacity: 1;
   }

   .carousel-slide img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center;
   }

   .carousel-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, rgb(78 143 233 / 85%) 0%, rgb(213 223 243 / 75%) 100%);
       /* background: linear-gradient(135deg, rgba(10, 61, 98, 0.85) 0%, rgba(22, 83, 126, 0.75) 100%); */
   }

   /* Carousel Navigation Dots */
   .carousel-dots {
       position: absolute;
       bottom: 8rem;
       left: 50%;
       transform: translateX(-50%);
       display: flex;
       gap: 12px;
       z-index: 10;
   }

   .carousel-dot {
       width: 12px;
       height: 12px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.4);
       cursor: pointer;
       transition: all 0.3s ease;
       border: 2px solid transparent;
   }

   .carousel-dot.active {
       background: var(--gold);
       border-color: white;
       transform: scale(1.3);
   }

   .carousel-dot:hover {
       background: rgba(255, 255, 255, 0.7);
   }

   /* Carousel Arrows */
   .carousel-arrow {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       background: rgba(255, 255, 255, 0.2);
       color: white;
       border: 2px solid rgba(255, 255, 255, 0.5);
       width: 50px;
       height: 50px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       font-size: 1.5rem;
       transition: all 0.3s ease;
       z-index: 10;
       backdrop-filter: blur(5px);
   }

   .carousel-arrow:hover {
       background: rgba(255, 255, 255, 0.3);
       border-color: white;
       transform: translateY(-50%) scale(1.1);
   }

   .carousel-arrow.prev {
       left: 2rem;
   }

   .carousel-arrow.next {
       right: 2rem;
   }

   .hero::before {
       content: '';
       position: absolute;
       width: 200%;
       height: 200%;
       background:
           radial-gradient(circle at 20% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
           radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
       animation: rotate 30s linear infinite;
       z-index: 1;
   }

   @keyframes rotate {
       from {
           transform: rotate(0deg);
       }

       to {
           transform: rotate(360deg);
       }
   }

   .hero-content {
       position: relative;
       z-index: 2;
       text-align: center;
       color: white;
       padding: 2rem;
       max-width: 900px;
   }

   .hero h1 {
       font-family: 'Playfair Display', serif;
       font-size: clamp(1rem, 3vw, 2rem);
       font-weight: 900;
       /* margin-bottom: 1rem; */
       letter-spacing: -2px;
       animation: fadeInUp 1s ease-out;
   }

   .hero-tagline {
       font-size: clamp(1.2rem, 3vw, 1.8rem);
       margin-bottom: 2rem;
       opacity: 0.95;
       animation: fadeInUp 1s ease-out 0.2s both;
   }

   .hero-subtitle {
       font-size: clamp(1rem, 2vw, 1.2rem);
       font-weight: 500;
       letter-spacing: 3px;
       text-transform: uppercase;
       /* color: var(--gold); */
       animation: fadeInUp 1s ease-out 0.4s both;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Scroll Indicator */
   .scroll-indicator {
       position: absolute;
       bottom: 3rem;
       left: 50%;
       transform: translateX(-50%);
       animation: bounce 2s infinite;
       opacity: 0.7;
       z-index: 10;
   }

   .scroll-indicator::before {
       content: '↓';
       font-size: 2rem;
       color: white;
   }

   @keyframes bounce {

       0%,
       20%,
       50%,
       80%,
       100% {
           transform: translateX(-50%) translateY(0);
       }

       40% {
           transform: translateX(-50%) translateY(-10px);
       }

       60% {
           transform: translateX(-50%) translateY(-5px);
       }
   }

   /* Stats Bar */
   .stats-bar {
       background: linear-gradient(135deg, var(--primary), #16537e);
       /* background: #linear-gradient(135deg, var(--primary), #16537e); */
       padding: 3rem 2rem;
       /* color: white; */
       position: relative;
       overflow: hidden;
   }

   .stats-bar::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
       animation: shimmer 3s infinite;
   }

   @keyframes shimmer {
       to {
           left: 100%;
       }
   }

   .stats-container {
       color: white;
       max-width: 1200px;
       margin: 0 auto;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       position: relative;
       z-index: 1;
   }

   .stat-item {
       text-align: center;
   }

   .stat-number {
       font-family: 'Playfair Display', serif;
       font-size: 3rem;
       font-weight: 900;
       display: block;
       margin-bottom: 0.5rem;
   }

   .stat-label {
       font-size: 1.1rem;
       opacity: 0.95;
   }

   /* Main Content */
   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 2rem 2rem;
   }

   .section {
       margin-bottom: 3rem;
       animation: fadeIn 1s ease-out;
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   h2 {
       font-family: 'Playfair Display', serif;
       /* font-size: clamp(2rem, 5vw, 3.5rem); */
       color: var(--primary);
       font-size: 30px;
       margin-bottom: 1rem;
       position: relative;
       padding-bottom: 1rem;
   }

   h2::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 80px;
       height: 4px;
       background-color: white;
       /* background: linear-gradient(90deg, var(--accent), var(--gold)); */
   }

   .intro-text {
       font-size: 1.2rem;
       line-height: 1.8;
       color: var(--text);
       background: white;
       padding: 2.5rem;
       border-radius: 12px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
       margin-bottom: 3rem;
       border-left: 5px solid var(--accent);
   }

   .intro-text strong {
       color: var(--primary);
       font-weight: 700;
   }

   /* Cards */
   .cards-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
       /* margin-top: 2rem; */
   }

   .card {
       background: white;
       padding: 2.5rem;
       border-radius: 16px;
       box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
       transition: all 0.3s ease;
       border-top: 4px solid var(--accent);
       position: relative;
       overflow: hidden;
   }

   .card::before {
       content: '';
       position: absolute;
       top: 0;
       right: 0;
       width: 100px;
       height: 100px;
       background: radial-gradient(circle, var(--gold), transparent);
       opacity: 0.05;
       border-radius: 50%;
   }

   .card:hover {
       transform: translateY(-8px);
       box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
   }

   .card h3 {
       font-family: 'Playfair Display', serif;
       font-size: 1.3rem;
       color: var(--primary);
       margin-bottom: 1rem;
   }

   .card p {
       line-height: 1.7;
       color: var(--text);
   }

   /* Services List */
   .services-list {
       /* display: flex; */
       border-left: 5px solid var(--accent);
       background: white;
       padding: 3rem;
       border-radius: 16px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   }

   .one-line {
       display: flex
   }

   .icon-info {
       display: flex;
       align-items: center;
   }

   .service-item {
       width: 50%;
       padding: 1.5rem 0;
       /* border-bottom: 1px solid #eee; */
       display: flex;
       align-items: flex-start;
       gap: 1.5rem;
   }

   .service-item:last-child {
       border-bottom: none;
   }

   .service-icon {
       width: 50px;
       height: 50px;
       background: linear-gradient(135deg, var(--accent), var(--gold));
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.5rem;
       flex-shrink: 0;
   }

   .service-content h4 {
       margin-left: 20px;
       font-size: 1.3rem;
       color: var(--primary);
       margin-bottom: 0.5rem;
   }

   .service-content p {
       line-height: 1.6;
       color: var(--text);
   }

   /* Partners Section */
   .partners-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 1.5rem;
       margin-top: 2rem;
   }

   .partner-tag {
       background: linear-gradient(135deg, var(--primary), #16537e);
       padding: 1rem 1.5rem;
       border-radius: 8px;
       text-align: center;
       font-weight: 500;
       color: white;
       /* color: var(--primary); */
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
       transition: all 0.3s ease;
   }

   .partner-tag:hover {
       background: var(--primary);
       color: white;
       transform: scale(1.05);
   }

   /* Achievements */
   .achievements {
       background: linear-gradient(135deg, var(--primary), #16537e);
       color: white;
       padding: 2rem 2rem;
       border-radius: 16px;
       text-align: center;
   }

   .achievements h2 {
       color: white;
   }

   .achievements h2::after {
       left: 50%;
       transform: translateX(-50%);
   }

   .achievement-number {
       font-family: 'Playfair Display', serif;
       font-size: 3rem;
       font-weight: 900;
       /* color: var(--gold); */
       /* margin: 2rem 0 1rem; */
   }

   .achievement-text {
       font-size: 1.2rem;
       opacity: 0.95;
   }

   /* Team Section */
   .team-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 3rem;
       /* margin-top: 2rem; */
   }

   .team-card {
       background: white;
       border-radius: 16px;
       overflow: hidden;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
       text-align: center;
       transition: all 0.3s ease;
   }

   .team-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
   }

   .team-header {
       background: linear-gradient(135deg, var(--primary), #16537e);
       /* background: linear-gradient(135deg, var(--accent), var(--gold)); */
       padding: 3rem 2rem 2rem;
       position: relative;
   }

   .team-icon {
       width: 100px;
       height: 100px;
       background: white;
       border-radius: 50%;
       margin: 0 auto 1rem;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 3rem;
       color: var(--accent);
   }

   .team-card h3 {
       color: white;
       font-family: 'Playfair Display', serif;
       font-size: 1.8rem;
       margin-bottom: 0.5rem;
   }

   .team-role {
       color: rgba(255, 255, 255, 0.9);
       font-size: 1.1rem;
   }

   .team-info {
       padding: 2rem;
   }

   .team-detail {
       margin-bottom: 1rem;
       color: var(--text);
   }

   .contact-link {
       color: black;
       /* color: var(--accent); */
       text-decoration: none;
       font-weight: 500;
       transition: all 0.3s ease;
   }

   .contact-link:hover {
       color: var(--gold);
   }

   /* Footer */
   footer {
       background: var(--dark);
       color: white;
       padding: 3rem 2rem;
       text-align: center;
   }

   .footer-content {
       max-width: 1200px;
       margin: 0 auto;
   }

   .footer-motto {
       font-family: 'Playfair Display', serif;
       font-size: 2rem;
       margin-bottom: 2rem;
       /* color: var(--gold); */
   }

   .footer-contact {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 2rem;
       margin-bottom: 2rem;
   }

   .footer-contact-item {
       display: flex;
       flex-direction: column;
       gap: 0.5rem;
   }

   .footer-label {
       font-size: 0.9rem;
       opacity: 0.7;
   }

   .footer-value {
       font-size: 1.1rem;
       font-weight: 500;
   }

   .footer-bottom {
       margin-top: 2rem;
       padding-top: 2rem;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       opacity: 0.7;
   }

   .h4 {
       color: #d5d2d2;
   }

   .link a {
       color: white;
   }

   .site-info {
       margin-top: 20px;
   }

   .carousel-slide:nth-child(4) img {
  object-position: center 30%;
} 
    .carousel-slide:nth-child(4) img {
  object-position: center top;
} 


   /* Responsive */
   @media (max-width: 768px) {

       .intro-text,
       .service-content h4 {
           font-size: 1rem;
       }

       h2 {
           font-size: 25px;
       }

       .services-list {
           padding: 1rem;
       }

       h1 img {
           width: 200px;
       }

       .service-item {
           width: 100%;
       }

       .one-line {
           flex-direction: column;
           display: flex;
       }

       .hero h1 {
           font-size: 3rem;
       }

       .stat-number {
           font-size: 2.5rem;
       }

       .achievement-number {
           font-size: 3.5rem;
       }

       .carousel-arrow {
           width: 40px;
           height: 40px;
           font-size: 1.2rem;
       }

       .carousel-arrow.prev {
           left: 1rem;
       }

       .carousel-arrow.next {
           right: 1rem;
       }

       .carousel-dots {
           bottom: 2rem;
       }

   }

   @media (max-width: 768px) {
      .cards-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2rem;
       /* margin-top: 2rem; */
   }
       .hero {
           min-height: 70vh;
       }

       .carousel-overlay {
           background: linear-gradient(135deg,
                   rgba(78, 143, 233, 0.9) 0%,
                   rgba(213, 223, 243, 0.85) 100%);
       }

       .hero-content h1 img {
           max-width: 180px;
       }

       .hero-subtitle {
           font-size: 14px;
           letter-spacing: 1px;
       }

       .hero-tagline {
           font-size: 16px;
       }
   }

   @media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content h1 img {
    max-width: 150px;
  }

  .hero-tagline {
    font-size: 14px;
  }
}
