   /* Logo Circle with light animation - FIXED SIZE */
    .title-logo-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        border-radius: 50%;
        padding: 3px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulseGlow 2s ease-in-out infinite;
        box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
    }
    
    /* Gold variant */
    .logo-circle.gold {
      background: linear-gradient(135deg, #F8D66B, #F1BC36, #D89A12);
    }
    
    .logo-circle.gold .logo-circle-inner {
        background: #ffffff;
    }
    
    .logo-circle.gold::before {
        background: conic-gradient(
            from 0deg,
            transparent,
            #c9a84c,
            #f5e6a3,
            #c9a84c,
            transparent 30%,
            transparent 70%,
            #c9a84c,
            #f5e6a3,
            transparent
        );
    }
    
    .logo-circle.gold::after {
        background: radial-gradient(circle at 20% 20%, rgba(201, 168, 76, 0.2), transparent 60%);
    }
    
    /* Blue variant */
    .logo-circle.blue {
    background: linear-gradient(135deg, #68d391, #276749, #68d391);
  box-shadow: 0 0 15px rgba(39, 103, 73, 0.25);
    }
    
    .logo-circle.blue .logo-circle-inner {
        background: #ffffff;
    }
    
    .logo-circle.blue::before {
     background: conic-gradient( from 0deg, transparent, #276749, #68d391, #276749, transparent 30%, transparent 70%, #276749, #68d391, transparent );
    }
    
    .logo-circle.blue::after {
       background: radial-gradient(circle at 20% 20%, rgba(39, 103, 73, 0.2), transparent 60%);
    }
    
    /* Green variant */
    .logo-circle.green {
        background: linear-gradient(135deg, #68d391, #276749, #68d391);
        box-shadow: 0 0 15px rgba(39, 103, 73, 0.25);
    }
    
    .logo-circle.green .logo-circle-inner {
        background: #ffffff;
    }
    
    .logo-circle.green::before {
        background: conic-gradient(
            from 0deg,
            transparent,
            #276749,
            #68d391,
            #276749,
            transparent 30%,
            transparent 70%,
            #276749,
            #68d391,
            transparent
        );
    }
    
    .logo-circle.green::after {
        background: radial-gradient(circle at 20% 20%, rgba(39, 103, 73, 0.2), transparent 60%);
    }
    
    .logo-circle-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    
    .logo-circle-inner img {
        width: 50%;
        height: 70%;
        object-fit: contain;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    }
    .jw_imgg img{ width: 70%;}
    /* Light ray animation - THINNER BORDER */
    .logo-circle::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 50%;
        animation: rotateGlow 3s linear infinite;
        z-index: 0;
        opacity: 0.6;
    }
    
    /* Second glow layer */
    .logo-circle::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        animation: pulseGlowBg 2.5s ease-in-out infinite;
        z-index: -1;
    }
    
    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 0 15px rgba(201, 168, 76, 0.25), 0 0 30px rgba(201, 168, 76, 0.08);
        }
        50% {
            box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 0 50px rgba(201, 168, 76, 0.15);
        }
    }
    
    @keyframes rotateGlow {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes pulseGlowBg {
        0%, 100% {
            opacity: 0.2;
            transform: scale(1);
        }
        50% {
            opacity: 0.5;
            transform: scale(1.05);
        }
    }
    
    /* Hover effect on logo circle */
    .logo-circle:hover {
        animation: pulseGlowHover 1s ease-in-out infinite;
        transform: scale(1.05);
    }
    
    .logo-circle:hover .logo-circle-inner img {
        transform: scale(1.1) rotate(-3deg);
    }
    
    @keyframes pulseGlowHover {
        0%, 100% {
            box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 0 50px rgba(201, 168, 76, 0.2);
        }
        50% {
            box-shadow: 0 0 40px rgba(201, 168, 76, 0.6), 0 0 70px rgba(201, 168, 76, 0.25);
        }
    }
    
    /* SCROLL ANIMATIONS - Works both directions */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* When scrolling back up - reverse animation */
    .animate-on-scroll:not(.visible) {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .animate-on-scroll-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll-left.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .animate-on-scroll-left:not(.visible) {
        opacity: 0;
        transform: translateX(-40px);
    }
    
    /* Stagger children animation */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
    .stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
    .stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
    .stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }
    .stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; }
    
    .stagger-children.visible > * {
        opacity: 1;
        transform: translateY(0);
    }
    
    .stagger-children:not(.visible) > * {
        opacity: 0;
        transform: translateY(20px);
    }
    
    /* Gold line animation */
    .gold-line {
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #c9a84c, #f5e6a3, #c9a84c);
        margin: 15px 0 25px 0;
        border-radius: 2px;
        transition: width 1s ease;
    }
    
    .gold-line.visible {
        width: 100px;
    }
    
    .gold-line:not(.visible) {
        width: 0;
    }
    
    /* ========== FONT AWESOME ICON STYLES ========== */
    .vision-icon, .mission-icon, .values-icon {
        display: inline-block;
        margin-right: 12px;
        color: #c9a84c;
        font-size: 1.4rem;
        animation: iconPulse 2s ease-in-out infinite;
    }
    
    .vision-icon i, .mission-icon i, .values-icon i {
        filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
    }
    
    .values-icon-list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }
    
 .value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(164, 162, 156, 0.08);
    padding: 8px 18px 8px 14px;
    border-radius: 50px;
    border-left: 3px solid #a5a5a5;
    transition: all 0.3s ease;
}
    
    .value-item:hover {
        background: rgba(201, 168, 76, 0.15);
        transform: translateX(5px);
    }
    
    .value-item i {
        color: #a5a5a5;
        font-size: 1.1rem;
    }
    
    @keyframes iconPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
    
    /* Vision, Mission, Core Values headings with icons */
    .content-heading-icon {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .content-heading-icon i {
        color: #a5a5a5;
        font-size: 1.6rem;
        width: 40px;
        text-align: center;
        animation: iconPulse 2.5s ease-in-out infinite;
    }
    
    .content-heading-icon .content-heading {
        margin: 0;font-size: 20px;
  font-weight: 600;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .logo-circle {
            width: 55px;
            height: 55px;
            padding: 2px;
        }
        

        .logo-circle-inner img {
            width: 65%;
            height: 65%;
        }
        
        .value-item {
            padding: 6px 14px 6px 10px;
            font-size: 0.9rem;
        }
        
        .values-icon-list {
            gap: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .logo-circle {
            width: 48px;
            height: 48px;
            padding: 2px;
        }
        
        .title-logo-wrapper {
            gap: 10px;
        }
        
        .logo-circle::before,
        .logo-circle::after {
            display: none;
        }
        
        .logo-circle {
            animation: pulseGlow 2s ease-in-out infinite;
        }
        
        .vision-icon, .mission-icon, .values-icon {
            font-size: 1.1rem;
            margin-right: 8px;
        }
        
        .content-heading-icon i {
            font-size: 1.2rem;
            width: 30px;
        }
        
        .value-item {
            padding: 5px 10px 5px 8px;
            font-size: 0.8rem;
        }
    }
    
    /* Title heading adjustment */
 
    
    .title-logo-wrapper .main-title,
    .title-logo-wrapper .content-heading {
        margin: 0;font-size: 30px;
  font-weight: 600;
    }
      .all-launches-description h1 {
   margin-bottom: 16px;
   font-family: "Michroma", sans-serif;
   text-transform: uppercase;
   font-size: 30px;
}

.section-heading::after{display: none;}
      .projects-section {
            width: 100%;
            background-color: #fff;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            min-height: 800px;
            display: flex;
        }
        
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/overview_bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        
        .left-side {
            width: 40%;
            padding: 60px 40px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .right-side {
            width: 60%;
            position: relative;
            z-index: 1;
            padding: 40px 30px 40px 0;
            overflow: hidden;
        }
        
        .section-heading {
            font-size: 3.2rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        
        .section-subheading {
            font-size: 1.5rem;
            color: #2c3035;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .section-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #1e1e1e;
            margin-bottom: 40px;
            max-width: 500px;
        }
        

        
        /* Vertical Ticker Styles */
        .ticker-container {
            height: 700px;
            overflow: hidden;
            position: relative;
            border-radius: 16px;
            padding: 10px;
        }
        
        .ticker-track {
            animation: scroll 40s linear infinite;
        }
        
   .project-box {
   border-radius: 12px;
   padding: 20px;
   margin-bottom: 15px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #000;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   flex-direction: column;
   background: hsla(0,0%,50%,0.7);
}
        
        .project-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
     .project-year {
   font-size: 0.9rem;
   color: #dfdfdf;
   margin-bottom: 5px;
   font-weight: 600;
}
        
.project-name {
   font-size: 25px;
   font-weight: 900;
   color: #fff;
   margin-bottom: 10px;
   line-height: 1.3;
   text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

        
        .project-details {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .project-category {
            background-color: #e6f7ff;
            color: #0066cc;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
       .project-department {
   color: #fff;
   font-size: 16px;
   font-weight: 600;
}
        
        .project-amount {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-top: 10px;
            text-align: right;
        }
        
        @keyframes scroll {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }
        
        .paused {
            animation-play-state: paused;
        }
        
        /* Simple hover instruction */
     
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .projects-section {
                flex-direction: column;
                max-width: 900px;
            }
            
            .left-side, .right-side {
                width: 100%;
                padding: 40px;
            }
            
            .right-side {
                padding-top: 0;
            }
            
            .ticker-container {
                height: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .section-heading {
                font-size: 2.5rem;
            }
            
      
            .ticker-container {
                height: 400px;
            }
        }
                .content-section {
            margin-bottom: 3rem;
        }
        
   .content-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #000;
}
        
        .content-text {
            font-size: 1.05rem;
            color: #444;
            margin-bottom: 1.5rem;
        }
        
        /* Government entities list */
        .entity-list {
            list-style: none;
            padding-left: 0;
            margin: 1.5rem 0 2.5rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.5rem;
        }
        
        .entity-list li {
            padding: 0.4rem 0;
            color: #555;
            font-size: 1rem;
        }
        
        .entity-list li:before {
            content: "•";
            color: #d4af37;
            margin-right: 8px;
            font-weight: bold;
        }
        
        /* Project scope note */
        .scope-note {
            font-style: italic;
            color: var(--gray);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        
      
        
        /* Responsive */
        @media (max-width: 768px) {
         
            
           
            
            .entity-list {
                grid-template-columns: 1fr;
            }
        }
                /* Simple gold line */
        .gold-line {
            height: 2px;
            width: 60px;
            background:#a5a5a5;
            margin: 1.5rem 0 2rem 0;
        }
        
   
        
        .subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 350;
            margin-bottom: 2rem;
        }
           .awards-section {
            margin: 0 auto;
            padding: 40px;
            border-radius: 8px;
        }
        
        .awards-header {
            text-align: center;
            margin-bottom: 40px;
        }
    
        
        .description {
            font-size: 16px;
            color: #333;
            max-width: 900px;
            margin: 0 auto 30px auto;
            line-height: 1.6;
        }
        
        .divider {
            height: 1px;
            background-color: #000;
            width: 100%;
            margin: 20px auto 40px auto;
        }
        
        .awards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .award-box {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
            min-height: 180px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;display: flex;
  justify-content: center;
  align-items: center;
        }
        
        .award-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .award-title {

width:85px;        }
        
        .award-subtitle {
            font-size: 14px;
            color: #666;
            font-weight: normal;
        }
        
 
     
   
        
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .awards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cxo-awards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .awards-section {
                padding: 25px 20px;
            }
            
        
            
            .awards-container {
                grid-template-columns: 1fr;
            }
            
          
           
        }
        
        @media (max-width: 480px) {
        
            
            .awards-section {
                padding: 20px 15px;
            }
            
         
            
            .description {
                font-size: 15px;
            }
        }
        b, strong {
    font-weight: bold;
}
.nav-link:hover {
    color: #000 !important;
}
/* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
   
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {

        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
 .title-logo-wrapper .main-title, .title-logo-wrapper .content-heading {
    font-size: 20px;
}
        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
 .title-logo-wrapper .main-title, .title-logo-wrapper .content-heading {
    font-size: 15px;
}
.content-text {
    font-size: 14px;
}
.content-heading{font-size: 18px !important;}
.content-section {
    margin-bottom: 0px;
}
.animate-on-scroll-left:not(.visible) {
    margin-top: 15px;
}

        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .title-logo-wrapper .main-title, .title-logo-wrapper .content-heading {
    font-size: 15px;
}
.content-text {
    font-size: 14px;
}
.content-heading{font-size: 18px !important;}
.content-section {
    margin-bottom: 0px;
}
.animate-on-scroll-left:not(.visible) {
    margin-top: 15px;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .title-logo-wrapper .main-title, .title-logo-wrapper .content-heading {
    font-size: 15px;
}
.content-text {
    font-size: 14px;
}
.content-heading{font-size: 18px !important;}
.content-section {
    margin-bottom: 0px;
}
.animate-on-scroll-left:not(.visible) {
    margin-top: 15px;
}
        }