    :root {
        --primary: #1a3a6c;
        --primary-dark: #0d2547;
        --secondary: #0066cc;
        --secondary-light: #0077ee;
        --accent: #ff6b35;
        --accent-alt: #5a8ee0;
        --light: #f8f9fa;
        --white: #ffffff;
        --gray: #6c757d;
        --dark: #212529;
        --blue-gradient-start: #1a3a6c;
        --blue-gradient-end: #0066cc;
      }
      body {
        font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        background-attachment: fixed;
        color: #333;
        line-height: 1.7;
        margin: 0;
        padding: 0;
      }
      .hero-section {
        min-height: 60vh;
        background: linear-gradient(to right, #709ee3ff, #ffffff);
        padding: 120px 0 80px;
      }
      .hero-section h1 {
        color: #0a2540;
        line-height: 1.2;
      }
      .hero-section p {
        color: #333;
        font-size: 1.15rem;
      }
      .hero-section .btn {
        padding: 12px 28px;
        font-weight: 500;
      }
      /* Carousel Styling */
      .carousel-inner {
        background-color: var(--primary-dark);
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        position: relative;
        overflow: hidden;
      }
      .carousel-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
      }
      .carousel-item {
        height: 100%;
      }
      .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.9;
        position: relative;
        z-index: 0;
      }
      .carousel-control-prev,
      .carousel-control-next {
        width: 5%;
        border-radius: 0;
        transition: all 0.3s ease;
        z-index: 2;
      }
      .carousel-control-prev:hover,
      .carousel-control-next:hover {
        transform: scale(1.1);
      }
      .carousel-control-prev-icon::after {
        content: "‹";
      }
      .carousel-control-next-icon::after {
        content: "›";
      }
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        background-image: none;
        font-size: 24px;
        opacity: 0.9;
      }
      @media (max-width: 992px) {
        .carousel-inner {
          height: 50vh;
          min-height: 350px;
        }
      }
      @media (max-width: 768px) {
        .carousel-inner {
          height: 45vh;
          min-height: 300px;
        }
      }
      @media (max-width: 576px) {
        .carousel-inner {
          height: 40vh;
          min-height: 280px;
        }
      }
      /* About Section */
      .container.my-5 {
        padding-top: 80px;
        padding-bottom: 80px;
      }
      .rounded {
        border-radius: 16px !important;
      }
      .shadow-sm {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
      }
      .shadow {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
      }
      h6.text-primary {
        color: var(--secondary) !important;
        letter-spacing: 1px;
        font-weight: 600;
      }
      h2.fw-bold {
        color: var(--primary);
        font-size: 3rem;
        margin-bottom: 15px;
        position: relative;
      }
      h4.text-secondary {
        color: var(--gray) !important;
        font-weight: 500;
        margin-bottom: 25px;
      }
      .text-muted {
        color: #555 !important;
      }
      /* Custom Button */
      .custom-button {
        display: inline-block;
        padding: 16px 36px;
        font-size: 17px;
        font-weight: 600;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        border: none;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 2px solid rgba(255, 255, 255, 0.2);
      }
      .custom-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.5s;
        z-index: -1;
      }
      .custom-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 102, 204, 0.5);
        background: linear-gradient(135deg, var(--secondary-light), #0055aa);
      }
      .custom-button:hover::before {
        left: 100%;
      }
      /* Milestones Section */
      .milestones-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafb 0%, #eef2f7 100%);
        position: relative;
        overflow: hidden;
      }
      .milestones-section::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"><circle cx="50" cy="50" r="1" fill="rgba(71,85,105,0.05)"/></svg>') repeat;
        background-size: 60px 60px;
        animation: backgroundMove 25s linear infinite;
        opacity: 0.4;
      }
      @keyframes backgroundMove {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(50px) translateY(50px); }
      }
      .milestones-section h2 {
        font-size: 3.2rem;
        color: var(--primary);
        margin-bottom: 60px;
        position: relative;
        display: inline-block;
        z-index: 2;
      }
      .milestones-section h2::after {
        content: "";
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 6px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        border-radius: 3px;
      }
      .milestone-slider {
        overflow: hidden;
        padding: 25px 0;
        position: relative;
        z-index: 2;
      }
      .milestone-slider::before,
      .milestone-slider::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 3;
        pointer-events: none;
      }
      .milestone-slider::before {
        left: 0;
        background: linear-gradient(90deg, #f8fafb, transparent);
      }
      .milestone-slider::after {
        right: 0;
        background: linear-gradient(90deg, transparent, #f8fafb);
      }
      .milestone-slider > div {
        display: flex;
        gap: 40px;
        animation: scrollMilestones 12s linear infinite;
        padding: 20px 0;
      }
      .milestone {
        flex: 0 0 300px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(71, 85, 105, 0.12);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(71, 85, 105, 0.08);
      }
      .milestone::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(71, 85, 105, 0.06), transparent);
        transition: 0.5s;
      }
      .milestone:hover::before {
        left: 100%;
      }
      .milestone .icon {
        transition: transform 0.3s ease;
      }
      .milestone:hover .icon {
        transform: scale(1.2);
      }
      .milestone h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1e40af;
        margin: 18px 0 12px;
      }
      .milestone p {
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0;
      }
      .milestone p strong {
        color: #1e293b;
        font-size: 1.15rem;
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
      }
      .milestone p span {
        color: #64748b;
        font-size: 0.9rem;
      }
      .milestone:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(71, 85, 105, 0.12);
        border-color: rgba(30, 64, 175, 0.2);
        background: rgba(255, 255, 255, 1);
      }
      @keyframes scrollMilestones {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .milestone-slider:hover > div {
        animation-play-state: paused;
      }
      /* OHS Highlight Section */
      .ohs-highlight {
        padding: 100px 20px;
        background: linear-gradient(135deg, #f0f6ff 0%, #e1efff 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .ohs-highlight::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
        z-index: 0;
      }
      .highlight-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
      }
      .ohs-highlight h2 {
        font-size: 3.2rem;
        color: var(--primary);
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
      }
      .ohs-highlight h2::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        border-radius: 3px;
      }
      .ohs-highlight p {
        font-size: 1.3rem;
        color: #555;
        max-width: 850px;
        margin: 25px auto 60px;
        font-weight: 500;
        line-height: 1.7;
      }
      .highlight-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
        margin-bottom: 50px;
      }
      .highlight-card {
        background: white;
        border-radius: 20px;
        padding: 35px;
        width: 340px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(10px);
      }
      .highlight-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .highlight-card:hover::before {
        transform: scaleX(1);
      }
      .highlight-card i {
        font-size: 2.8rem;
        margin-bottom: 25px;
        background: linear-gradient(135deg, var(--secondary), var(--accent-alt));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.3s ease;
      }
      .highlight-card h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
        color: var(--primary);
        font-weight: 700;
      }
      .highlight-card p {
        font-size: 1.05rem;
        color: #666;
        line-height: 1.7;
      }
      .highlight-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
      }
      /* Blog Section - Responsive Knowledge Hub */
      .blog-section {
        padding: 100px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      }
      .section-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
        color: var(--primary);
        text-align: center;
        font-weight: 700;
        position: relative;
      }
      .section-title::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        border-radius: 3px;
      }
      .section-subtitle {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 60px;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
        line-height: 1.6;
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .blog-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
      }
      .blog-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
      }
      .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }
      .blog-card:hover .blog-image img {
        transform: scale(1.1);
      }
      .blog-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .blog-title {
        font-size: 1.6rem;
        margin-bottom: 14px;
        color: var(--primary);
        font-weight: 700;
        line-height: 1.4;
      }
      .blog-content p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 16px;
        flex: 1;
      }
      .read-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        font-weight: 600;
        color: var(--secondary);
        padding: 8px 14px;
        border-radius: 8px;
        background: rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
        width: fit-content;
        font-size: 1rem;
      }
      .read-more:hover {
        background: var(--secondary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
      }
      .read-more i {
        transition: transform 0.3s ease;
      }
      .read-more:hover i {
        transform: translateX(4px);
      }
      /* Services Section */
      #services {
        padding: 100px 0;
        background: white;
      }
      #services h2 {
        font-size: 3.2rem;
        color: var(--primary);
        margin-bottom: 60px;
        position: relative;
        display: inline-block;
      }
      #services h2::after {
        content: "";
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 6px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        border-radius: 3px;
      }
      .services-scroll-wrapper {
        overflow: hidden;
        padding: 25px 0;
      }
      .services-scroll {
        display: flex;
        gap: 25px;
        animation: scrollCards 14s linear infinite;
        padding: 15px 0;
      }
      .service-card {
        flex: 0 0 280px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 30px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.08);
      }
      .service-card i {
        color: var(--secondary);
        transition: transform 0.3s ease;
      }
      .service-card h6 {
        font-size: 1.3rem;
        margin: 20px 0 15px;
        color: var(--primary);
        font-weight: 700;
      }
      .service-card p {
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
      }
      .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
      }
      .service-card:hover i {
        transform: scale(1.15);
        color: var(--accent-alt);
      }
      @keyframes scrollCards {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .services-scroll-wrapper:hover .services-scroll {
        animation-play-state: paused;
      }
      /* Achievements Section */
      .achievements {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f6ff 0%, #e1efff 100%);
        text-align: center;
      }
      .achievements h2 {
        font-size: 3.2rem;
        color: var(--primary);
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
      }
      .achievements h2::after {
        content: "";
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 6px;
        background: linear-gradient(90deg, var(--secondary), var(--accent-alt));
        border-radius: 3px;
      }
      .achievements-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 25px 0;
      }
      .slider-track {
        display: flex;
        gap: 30px;
        animation: scrollClients 16s linear infinite;
        padding: 15px 0;
      }
      .slider-track img {
        height: 160px;
        width: auto;
        object-fit: cover;
        border-radius: 16px;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 4px solid white;
      }
      .slider-track img:hover {
        transform: translateY(-7px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
      }
      @keyframes scrollClients {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .achievements-slider:hover .slider-track {
        animation-play-state: paused;
      }
      .see-all-btn {
        display: inline-block;
        padding: 16px 35px;
        background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        color: #fff;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
        margin-top: 35px;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
      }
      .see-all-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 102, 204, 0.5);
        background: linear-gradient(135deg, var(--secondary-light), #0055aa);
      }
      /* Animations */
      [data-aos="fade-up"] {
        opacity: 0;
        transform: translateY(40px);
        transition-property: transform, opacity;
      }
      [data-aos="fade-right"] {
        opacity: 0;
        transform: translateX(40px);
        transition-property: transform, opacity;
      }
      [data-aos="fade-left"] {
        opacity: 0;
        transform: translateX(-40px);
        transition-property: transform, opacity;
      }
      [data-aos="zoom-in"] {
        opacity: 0;
        transform: scale(0.85);
        transition-property: transform, opacity;
      }
      /* Responsive Adjustments */
      @media (max-width: 992px) {
        .section-title {
          font-size: 2.6rem;
        }
        .section-subtitle {
          font-size: 1.1rem;
          margin-bottom: 50px;
        }
        .blog-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 20px;
        }
        .blog-image {
          height: 200px;
        }
        .blog-title {
          font-size: 1.5rem;
        }
        .blog-content p {
          font-size: 0.95rem;
        }
      }
      @media (max-width: 768px) {
        .blog-section {
          padding: 80px 15px;
        }
        .section-title {
          font-size: 2.2rem;
        }
        .blog-grid {
          grid-template-columns: 1fr;
        }
        .blog-image {
          height: 180px;
        }
        .blog-title {
          font-size: 1.4rem;
        }
        .blog-content p {
          font-size: 0.9rem;
        }
        .read-more {
          font-size: 0.95rem;
          padding: 6px 12px;
        }
      }
      @media (max-width: 576px) {
        .section-title {
          font-size: 2rem;
        }
        .section-subtitle {
          font-size: 1rem;
        }
        .blog-image {
          height: 160px;
        }
        .blog-title {
          font-size: 1.3rem;
        }
        .blog-content {
          padding: 20px;
        }
      }
      /* --- Training Preview Section --- */
      .training-preview {
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        padding: 5rem 0;
      }
      .training-preview .section-header span {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 600;
        color: #5a8ee0;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: #eef2ff;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 12px rgba(90, 142, 224, 0.1);
      }
      .training-preview h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
      }
      .training-preview h2 span {
        background: linear-gradient(135deg, #5a8ee0, #0066cc);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .training-preview p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 1rem auto 0;
        line-height: 1.6;
      }
      .training-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.8rem;
        margin-top: 2rem;
      }
      .training-card {
        background: white;
        border-radius: 16px;
        padding: 1.8rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative;
        overflow: hidden;
        transform: translateY(0);
      }
      .training-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #5a8ee0, #0066cc);
        opacity: 0;
        z-index: -1;
        border-radius: 16px;
        transition: opacity 0.4s ease;
      }
      .training-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(90, 142, 224, 0.25);
      }
      .training-card:hover::before {
        opacity: 0.05;
      }
      .training-icon {
        background: linear-gradient(135deg, #5a8ee0, #0066cc);
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin: 0 auto 1rem;
        color: white;
        transition: transform 0.3s ease;
        box-shadow: 0 6px 15px rgba(90, 142, 224, 0.3);
      }
      .training-card:hover .training-icon {
        transform: scale(1.1);
      }
      .training-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.8rem;
        transition: color 0.3s ease;
      }
      .training-card p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
      }
      .training-btn {
        display: inline-block;
        margin-top: 1rem;
        padding: 0.6rem 1.2rem;
        background: linear-gradient(135deg, #5a8ee0, #0066cc);
        background-size: 200% 200%;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: 0.4s ease;
        box-shadow: 0 4px 12px rgba(90, 142, 224, 0.3);
      }
      .training-btn:hover {
        background-position: right center;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(90, 142, 224, 0.4);
      }
      .view-all-btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        background: linear-gradient(135deg, #5a8ee0, #0066cc);
        background-size: 200% 200%;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(90, 142, 224, 0.3);
        transition: 0.4s ease;
        margin-top: 2rem;
      }
      .view-all-btn:hover {
        background-position: right center;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(90, 142, 224, 0.4);
      }