
    :root {
      --primary-color: #1a4f8b;
      --secondary-color: #4b8bbe;
      --accent-color: #ff6b35;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --success-color: #28a745;
    }
    
    * {
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-color);
      overflow-x: hidden;
      background-color: #ffffff;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.3;
    }

    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-color);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .loader {
      width: 50px;
      height: 50px;
      position: relative;
    }
    
    .loader:before {
      content: '';
      width: 50px;
      height: 5px;
      background: #f3f3f3;
      position: absolute;
      top: 60px;
      left: 0;
      border-radius: 50%;
      animation: shadow324 0.5s linear infinite;
    }
    
    .loader:after {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--accent-color);
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 4px;
      animation: jump7456 0.5s linear infinite;
    }
    
    @keyframes jump7456 {
      15% {
        border-bottom-right-radius: 3px;
      }
      
      25% {
        transform: translateY(9px) rotate(22.5deg);
      }
      
      50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
      }
      
      75% {
        transform: translateY(9px) rotate(67.5deg);
      }
      
      100% {
        transform: translateY(0) rotate(90deg);
      }
    }
    
    @keyframes shadow324 {
      0%,
      100% {
        transform: scale(1, 1);
      }
      
      50% {
        transform: scale(1.2, 1);
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--secondary-color);
    }
    
    /* Navbar */
    .navbar {
      transition: all 0.4s ease;
      padding: 12px 0;
      /* background: rgba(255, 255, 255, 0.95) !important; */
      background: rgb(255, 255, 255) !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled {
      padding: 8px 0;
      /* background: rgba(255, 255, 255, 0.98) !important; */
      background: rgb(255, 255, 255) !important;
      backdrop-filter: blur(10px);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.7rem;
      color: var(--primary-color) !important;
    }
    
    .navbar-brand span {
      color: var(--accent-color);
    }
    
    .nav-link {
      font-weight: 600;
      padding: 8px 12px !important;
      color: var(--dark-color) !important;
      position: relative;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: all 0.3s ease;
    }
    
    .nav-link:hover:after,
    .nav-link.active:after {
      width: 70%;
    }
    
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-color) !important;
    }
    
    .navbar-toggler {
      border: none;
      padding: 4px 6px;
      width: 38px;
      height: 38px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }
    
    .navbar-toggler span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--primary-color);
      margin: 2.5px 0;
      transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, rgba(26, 79, 139, 0.85) 0%, rgba(75, 139, 190, 0.85) 100%), url('/images/about_back1.jpeg');
      background-size: cover;
      background-position: center;
      color: white;
      overflow: hidden;
      padding: 100px 0 70px;
      margin-top: 62px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .breadcrumb {
      background: transparent;
      padding: 0;
      margin-bottom: 0;
      justify-content: center;
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .breadcrumb-item.active {
      color: white;
      font-size: 0.9rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.8);
    }

    .hero-shape {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ffffff"/></svg>');
      background-size: cover;
      background-repeat: no-repeat;
    }
    
    /* Section Titles */
    .section-title {
      position: relative;
      margin-bottom: 40px;
      text-align: center;
      color: var(--primary-color);
      font-size: 2.2rem;
    }
    
    .section-title:after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }
    
    /* About Intro */
    .about-intro {
      padding: 70px 0;
    }
    
    .about-image {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .about-image img {
      transition: transform 0.5s ease;
      width: 100%;
      height: auto;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    .about-image:after {
      content: '';
      position: absolute;
      top: 15px;
      left: 15px;
      right: -15px;
      bottom: -15px;
      border: 3px solid var(--accent-color);
      border-radius: 12px;
      z-index: -1;
    }
    
    .about-content {
      padding-left: 20px;
    }
    
    .year-badge {
      display: inline-block;
      background: var(--primary-color);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 18px;
      font-size: 0.9rem;
    }
    
    /* Mission Vision */
    .mission-vision {
      padding: 70px 0;
      background-color: var(--light-color);
    }
    
    .mv-card {
      background: white;
      border-radius: 12px;
      padding: 30px 25px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      margin-bottom: 25px;
    }
    
    .mv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .mv-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 20px;
    }
    
    /* Values */
    .values {
      padding: 70px 0;
    }
    
    .value-item {
      text-align: center;
      margin-bottom: 35px;
    }
    
    .value-icon {
      width: 65px;
      height: 65px;
      background: var(--light-color);
      color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 18px;
      transition: all 0.4s ease;
    }
    
    .value-item:hover .value-icon {
      background: var(--primary-color);
      color: white;
      transform: rotateY(180deg);
    }
    
    /* Team */
    .team {
      padding: 70px 0;
      background-color: var(--light-color);
    }
    
    .team-member {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      margin-bottom: 25px;
      height: 100%;
    }
    
    .team-member:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .team-img {
      position: relative;
      overflow: hidden;
      height: 580px;
    }
    
    .team-img img {
      transition: transform 0.5s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .team-member:hover .team-img img {
      transform: scale(1.1);
    }
    
    .team-social {
      position: absolute;
      bottom: -50px;
      left: 0;
      right: 0;
      background: rgba(26, 79, 139, 0.8);
      padding: 12px;
      display: flex;
      justify-content: center;
      transition: all 0.4s ease;
    }
    
    .team-member:hover .team-social {
      bottom: 0;
    }
    
    .team-social a {
      width: 32px;
      height: 32px;
      background: white;
      color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 4px;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .team-social a:hover {
      background: var(--accent-color);
      color: white;
      transform: translateY(-3px);
    }
    
    .team-info {
      padding: 20px;
      text-align: center;
    }
    
    .team-name {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    
    .team-position {
      color: var(--accent-color);
      font-weight: 500;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }
    
    /* Timeline */
    .timeline {
      padding: 70px 0;
      position: relative;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: var(--primary-color);
      transform: translateX(-50%);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 45px;
    }
    
    .timeline-content {
      position: relative;
      width: 45%;
      padding: 18px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
      left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
      left: 55%;
    }
    
    .timeline-year {
      position: absolute;
      top: 50%;
      right: -70px;
      transform: translateY(-50%);
      width: 55px;
      height: 55px;
      background: var(--accent-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      z-index: 2;
      font-size: 0.9rem;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
      left: -70px;
      right: auto;
    }
    
    /* CTA Section */
    .cta {
      padding: 70px 0;
      background: linear-gradient(rgba(26, 79, 139, 0.9), rgba(26, 79, 139, 0.9)), url('/images/about_back1.jpeg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      text-align: center;
    }
    
    .cta-title {
      font-size: 2.2rem;
      margin-bottom: 18px;
    }
    
    .cta-text {
      font-size: 1.1rem;
      margin-bottom: 35px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Footer */
    footer {
      background: var(--dark-color);
      color: white;
      padding: 50px 0 0;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 18px;
      color: white;
    }
    
    .footer-logo span {
      color: var(--accent-color);
    }
    
    .footer-text {
      margin-bottom: 18px;
      opacity: 0.8;
      font-size: 0.95rem;
    }
    
    .footer-title {
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
    }
    
    .footer-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 35px;
      height: 2px;
      background: var(--accent-color);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      font-size: 0.9rem;
    }
    
    .footer-links a i {
      margin-right: 6px;
      font-size: 0.7rem;
    }
    
    .footer-links a:hover {
      color: var(--accent-color);
      transform: translateX(5px);
    }
    
    .footer-newsletter {
      position: relative;
    }
    
    .footer-newsletter input {
      width: 100%;
      padding: 10px 16px;
      border-radius: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 0.9rem;
    }
    
    .footer-newsletter button {
      position: absolute;
      top: 4px;
      right: 4px;
      border: none;
      background: var(--accent-color);
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .footer-newsletter button:hover {
      background: #e55a2b;
    }
    
    .social-icons {
      display: flex;
      margin-top: 18px;
    }
    
    .social-icons a {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .social-icons a:hover {
      background: var(--accent-color);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding: 18px 0;
      margin-top: 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0.7;
      font-size: 0.9rem;
    }
    
    /* Back to Top */
    #scrollToTop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--accent-color);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 99;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      font-size: 1rem;
    }
    
    #scrollToTop.active {
      opacity: 1;
      visibility: visible;
    }
    
    #scrollToTop:hover {
      background: #e55a2b;
      transform: translateY(-3px);
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .pulse {
      animation: pulse 2s infinite;
    }
    
    /* Media Queries */
    @media (max-width: 1199.98px) {
      .about-content {
        padding-left: 0;
        margin-top: 35px;
      }
      
      .team-img {
        height: 250px;
        height: 550px;
      }
    }
    
    @media (max-width: 991.98px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .timeline:before {
        left: 30px;
      }
      
      .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        left: 0 !important;
      }
      
      .timeline-year {
        left: 0;
        right: auto;
      }
      
      .timeline-item:nth-child(even) .timeline-year {
        left: 0;
      }
      
      .footer-title:after {
        left: 0;
      }
      
      .footer {
        text-align: left;
      }
      
      .team-img {
        /* height: 280px; */
        height: 480px;
      }
    }
    
    @media (max-width: 767.98px) {
      .navbar {
        padding: 10px 0;
      }
      
      .navbar-brand {
        font-size: 1.5rem;
      }
      
      .hero {
        padding: 90px 0 60px;
        min-height: 50vh;
        margin-top: 56px;
      }
      
      .hero-title {
        font-size: 1.9rem;
      }
      
      .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
      }
      
      .section-title:after {
        width: 60px;
        height: 3px;
        bottom: -12px;
      }
      
      .about-image:after {
        display: none;
      }
      
      .about-intro, .mission-vision, .values, .timeline, .team, .cta {
        padding: 60px 0;
      }
      
      .mv-card, .value-item, .team-member {
        margin-bottom: 20px;
      }
      
      .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
      }
      
      .timeline-year {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
        right: -55px;
      }
      
      .cta-title {
        font-size: 1.9rem;
      }
      
      .cta-text {
        font-size: 1rem;
      }
      
      .cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
      }
      
      .footer {
        text-align: center;
      }
      
      .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-icons {
        justify-content: center;
      }
      
      .team-img {
        /* height: 250px; */
        height: 450px;
      }
    }
    
    @media (max-width: 575.98px) {
      .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
      }
      
      .navbar-toggler {
        width: 34px;
        height: 34px;
        padding: 3px 5px;
      }
      
      .navbar-toggler span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
      }
      
      .hero {
        padding: 80px 0 50px;
        min-height: 45vh;
        margin-top: 52px;
      }
      
      .hero-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
      }
      
      .hero p.lead {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
      }
      
      .about-intro, .mission-vision, .values, .timeline, .team, .cta {
        padding: 50px 0;
      }
      
      .mv-card {
        padding: 25px 20px;
      }
      
      .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
      }
      
      .timeline-content {
        width: calc(100% - 40px);
        margin-left: 40px;
        padding: 15px;
      }
      
      .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
        right: -45px;
      }
      
      .team-info {
        padding: 18px 15px;
      }
      
      .team-name {
        font-size: 1.1rem;
      }
      
      .cta-title {
        font-size: 1.7rem;
      }
      
      .cta-text {
        font-size: 0.95rem;
      }
      
      .footer-newsletter input {
        padding: 8px 14px;
        font-size: 0.85rem;
      }
      
      .footer-newsletter button {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
      }
      
      .footer-logo {
        font-size: 1.6rem;
      }
      
      .footer-title {
        font-size: 1.05rem;
      }
      
      .team-img {
        /* height: 220px; */
        height: 660px;
      }
    }
    
    @media (max-width: 400px) {
      .hero-title {
        font-size: 1.5rem;
      }
      
      .year-badge {
        padding: 5px 14px;
        font-size: 0.85rem;
      }
      
      .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px;
      }
      
      .timeline-year {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
        right: -40px;
      }
      
      .cta .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
      }
      
      .team-img {
        /* height: 200px; */
        height: 500px;
      }
    }

    /* Fix for navbar toggler alignment */
    .navbar-toggler {
      margin-left: auto;
    }

    /* Fix for team section HTML error */
    .team .row {
      display: flex;
      flex-wrap: wrap;
    }
    
    .team .col-lg-4 {
      margin-bottom: 25px;
    }