/* ********* Template CSS ********* */

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium { font-weight: 600 !important; }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
   
    
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner img{
    width: auto;
    height: 60px;
}



/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary { color: #FFFFFF; }

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn { height: 75px; }

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-brand img,
.logo img {
    mix-blend-mode: multiply;
    background: transparent;
    width: 70px;
    height: 48px;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

/*** Page Header ***/
.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-header h1 {
    animation: titleBounce 1.2s ease-out;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary);
    animation: expandCenter 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes titleBounce {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.05);
    }
    80% {
        transform: translateY(-5px) scale(0.98);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes expandCenter {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}
/* ==========================================
   SERVICE SECTION
========================================== */
/* TEXT + VIDEO ALIGNMENT */

.laser-row {
    display: flex;
    align-items: center;
}

.laser-text {
    font-size: 18px;
    line-height: 30px;
    padding-right: 20px;
}

.laser-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.laser-video iframe {
    width: 100%;
    height: 330px;
    border-radius: 12px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .laser-row {
        text-align: center !important;
    }
    .laser-text {
        padding-right: 0;
    }
}


/* PRODUCT SLIDER */
.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.client-track img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .5s ease;
}

.client-track img:hover {
    transform: scale(1.15);
    z-index: 10;
}

/* INFINITE ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* EXPERTISE SECTION */
.expertise-section {
    background: #f9f9f9;
}

.expertise-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.expertise-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

.expertise-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.expertise-box ul {
    padding-left: 18px;
}

.expertise-box ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 26px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .expertise-box {
        text-align: left;
    }
}


/* ------------------------------
   Fade Up Animation for Fact Boxes
--------------------------------*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation class added when section becomes visible */
.fact .fade-animate {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}


/* ------------------------------
   Counter Number Glow Animation
--------------------------------*/
@keyframes numberGlow {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50% { text-shadow: 0 0 15px rgba(255,255,255,0.7); }
    100% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
}

.fact h2 {
    animation: numberGlow 2s infinite ease-in-out;
}


/* ------------------------------
   Icon Fade-In + Scale Animation
--------------------------------*/
@keyframes iconPop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fact i {
    opacity: 0;
    animation: iconPop 0.8s ease forwards;
}

.fact-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fact-box.visible {
    opacity: 1;
    transform: translateY(0px);
}


/* Delay icons slightly for sequence effect */
.fact .col-md-6:nth-child(1) i { animation-delay: 0.2s; }
.fact .col-md-6:nth-child(2) i { animation-delay: 0.4s; }
.fact .col-md-6:nth-child(3) i { animation-delay: 0.6s; }
.fact .col-md-6:nth-child(4) i { animation-delay: 0.8s; }


/*** Laser Cladding Section ***/
.laser-section,
.laser-section .container,
.laser-section .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.laser-section {
    overflow: hidden;
}

.laser-section h1 {
    color: #0d6efd;
}

.laser-section p {
    line-height: 1.7;
    color: #444;
    animation: fadeInText 1.2s ease-out;
    animation-fill-mode: both;
}

.laser-section p:nth-of-type(1) {
    animation-delay: 0.3s;
}

.laser-section p:nth-of-type(2) {
    animation-delay: 0.6s;
}

.laser-section p:nth-of-type(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Typewriter effect for first letter */
/* .laser-section p::first-letter {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary);
    animation: glowLetter 2s ease-in-out infinite;
}

@keyframes glowLetter {
    0%, 100% {
        text-shadow: 0 0 5px rgba(216, 19, 36, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(216, 19, 36, 0.8), 0 0 30px rgba(216, 19, 36, 0.6);
    }
} */

.laser-section img {
    max-height: 300px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.5s ease;
}

.laser-section img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(216, 19, 36, 0.3);
}

.col-lg-6.text-center {
    padding-right: 40px;
}

.process-video iframe {
    width: 560px;
    height: 315px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}

.process-video iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.laser-section h2 {
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.laser-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
    to { width: 80px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Application List with Icons */
.hello {
    list-style: none;
    padding-left: 0;
}

.hello li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hello li:nth-child(1) { animation-delay: 0.1s; }
.hello li:nth-child(2) { animation-delay: 0.2s; }
.hello li:nth-child(3) { animation-delay: 0.3s; }
.hello li:nth-child(4) { animation-delay: 0.4s; }
.hello li:nth-child(5) { animation-delay: 0.5s; }
.hello li:nth-child(6) { animation-delay: 0.6s; }

.hello li i {
    font-size: 28px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 19, 36, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.hello li div {
    flex: 1;
}

.hello li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(216, 19, 36, 0.3);
    background: linear-gradient(135deg, #fff, #fef5f5);
}

.hello li:hover i {
    transform: rotate(360deg) scale(1.2);
    background: var(--primary);
    color: white;
}

.hello li b {
    color: var(--primary);
    font-size: 18px;
}

.row.align-items-center.g-5 {
    margin: 0 !important;
    padding-top: 50px;
    gap: 0 !important;
}

.intro-image {
    max-width: 520px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.laser-section h1,
.laser-section h2,
.laser-section h3 {
    color: #d80000 !important;
}

.product-title {
    margin-top: 60px;
}

/* Animation Classes */
.left {
    animation: slideInLeft 1s ease-out;
}

.right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Modal - Fullscreen Image Popup */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#caption {
    margin: 15px auto 0;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-size: 18px;
    padding: 10px 0;
}

.close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #ff4444;
    text-decoration: none;
    transform: rotate(90deg);
}

/* Footer Section - NO ANIMATIONS */
footer, .footer-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-section {
    width: 100%;
    background: #000; 
    padding: 60px 0 20px 0;
    color: white !important;
    margin: 0px;
}

.footer-section .footer-inner {
    max-width: 1300px;
    margin: auto;
}

.footer-section h4 {
    font-weight: 700;
}

.footer-section a {
    color: #ddd;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section .btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}

/* Topbar Animations */
.container-fluid.bg-light {
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.d-inline-flex {
    transition: all 0.3s ease;
}

.d-inline-flex:hover {
    transform: translateX(5px);
}

.btn-sm-square {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-sm-square::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.btn-sm-square:hover::before {
    width: 200%;
    height: 200%;
}

.btn-sm-square i {
    position: relative;
    z-index: 1;
}

.btn-sm-square:hover {
    transform: translateY(-3px) rotate(360deg);
}

/* Navbar Brand Animation */
.navbar-brand img {
    transition: all 0.4s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Quote Button Animation */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 19, 36, 0.4);
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .modal-content {
        max-width: 98vw;
        max-height: 85vh;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    #caption {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .modal-content {
        max-width: 100vw;
        max-height: 80vh;
        border-radius: 0;
    }
    
    .close {
        top: 5px;
        right: 15px;
        font-size: 35px;
    }
}

@media (max-width: 992px) {
    .laser-section h1 {
        font-size: 32px;
    }
    .col-lg-6.text-center {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .laser-section {
        padding: 40px 20px;
    }
    .laser-section h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .laser-section img {
        margin-bottom: 20px;
        width: 100%;
    }
}


.application-section {
    margin-top: 30px;
}

.application-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.application-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: #D81324;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.application-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: 0.3s ease-in-out;
}


.application-card:nth-child(1) { animation-delay: 0.1s; }
.application-card:nth-child(2) { animation-delay: 0.2s; }
.application-card:nth-child(3) { animation-delay: 0.3s; }
.application-card:nth-child(4) { animation-delay: 0.4s; }
.application-card:nth-child(5) { animation-delay: 0.5s; }
.application-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-wrapper {
    font-size: 25px;
    color: #4b79ff;
    padding-right: 5px;
}

.icon-wrapper i {
    font-size: 28px;
    color: #D81324;
    transition: all 0.4s ease;
}

.application-card:hover .icon-wrapper {
    background: #D81324;
    transform: rotate(360deg) scale(1.1);
}

.application-card:hover .icon-wrapper i {
    color: white;
}

.content-wrapper h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}


.content-wrapper h3 {
    color: #D81324;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.content-wrapper p {
    font-size: 14px;
    margin: 0;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .application-title {
        font-size: 32px;
    }
    
    .application-card {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .content-wrapper h3 {
        font-size: 18px;
    }
    
    .content-wrapper p {
        font-size: 14px;
    }
}

/* ======================================
   ABOUT SECTION - PERFECT ALIGNMENT FIX
   ====================================== */

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch; /* THIS IS KEY - makes both sides same height */
}

/* Left Image - Takes 45% width */
.about-image-side {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
}

.about-image-wrapper {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Right Content - Takes remaining space */
.about-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to top */
}

.about-content-side h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content-side p {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

.about-content-side p strong {
    color: #0B2154;
    font-weight: 700;
}

/* Feature Cards */
.features-wrapper {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(216, 19, 36, 0.15);
    background: rgba(216, 19, 36, 0.02);
}

.feature-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #D81324;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    flex-shrink: 0; /* Prevents number from shrinking */
}

.feature-card:hover .feature-number {
    background: #D81324;
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 700;
    color: #0B2154;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.3;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    display: block;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-side {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-image-wrapper {
        min-height: 400px;
    }

    .about-content-side h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        gap: 30px;
    }

    .about-content-side h1 {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 15px;
        gap: 12px;
    }

    .feature-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
}

/* Image Wrapper Animations */
.about-image-wrapper {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.about-main-image {
    transition: transform 0.5s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* Experience Badge Animation */
.experience-badge {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: badgePopIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

@keyframes badgePopIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section Animations */






.about-content {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 1s ease-out 0.3s forwards;
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Heading Animations */
.animate-slide-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.6s ease-out 0.5s forwards;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.animate-slide-in::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    animation: expandLineWidth 0.8s ease-out 1.1s forwards;
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLineWidth {
    to {
        width: 100%;
    }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in span {
    display: inline-block;
    position: relative;
}

.animate-fade-in span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    animation: underlineExpand 0.6s ease-out 1.5s forwards;
}

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

/* Text Reveal Animations */
.animate-text-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.animate-text-reveal.delay-1 {
    animation-delay: 1.1s;
}

.animate-text-reveal.delay-2 {
    animation-delay: 1.3s;
}

.animate-text-reveal.delay-3 {
    animation-delay: 1.5s;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
.feature-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: featureSlideIn 0.6s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 1.7s;
}

.feature-item:nth-child(2) {
    animation-delay: 1.9s;
}

.feature-item:nth-child(3) {
    animation-delay: 2.1s;
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.feature-card:hover {
    background: rgba(216, 19, 36, 0.05);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-number {
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-number {
    background: var(--primary) !important;
    transform: rotate(360deg) scale(1.15);
}

.feature-card:hover .feature-number span {
    color: white !important;
}

.feature-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-desc {
    color: #666;
    line-height: 1.6;
    display: block;
}

/* CTA Button Animation */
.cta-button {
    opacity: 0;
    transform: translateY(20px);
    animation: buttonFadeIn 0.6s ease-out 2.3s forwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(216, 19, 36, 0.3);
}

@keyframes buttonFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-button:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 19, 36, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-image-wrapper {
        margin-bottom: 30px;
        min-height: 300px !important;
    }
    
    .about-content {
        animation-delay: 0.5s;
    }
    
    .experience-badge {
        margin-top: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 10px;
    }
    
    .feature-number {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 576px) {
    .about-main-image {
        border-radius: 4px;
    }
    
    .experience-badge {
        padding: 15px 20px !important;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}



/* ==========================================
   FACT SECTION ANIMATIONS
========================================== */
.fact-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fact-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.fact i {
    opacity: 0;
    animation: iconPop 0.8s ease forwards;
}

@keyframes iconPop {
    from { opacity: 0; transform: scale(0.6); }
    to { opacity: 1; transform: scale(1); }
}

.fact h2 {
    animation: numberGlow 2s infinite ease-in-out;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50% { text-shadow: 0 0 15px rgba(255,255,255,0.7); }
}
 

/* ======================================
   WHY MONOLINE SECTION - ANIMATIONS & STYLES
   ====================================== */

.why-monoline-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-monoline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(216, 19, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 33, 84, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header Animations */
.section-header {
    opacity: 0;
    transform: translateY(-30px);
    animation: headerFadeIn 1s ease-out forwards;
    position: relative;
    z-index: 1;
}

@keyframes headerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding: 8px 25px;
    background: rgba(216, 19, 36, 0.1);
    border-radius: 30px;
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(216, 19, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(216, 19, 36, 0);
    }
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0B2154;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #D81324, #ff4d5e);
    border-radius: 2px;
    animation: underlineGrow 1.5s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D81324, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    to {
        width: 150px;
    }
}

/* Why Cards */
.why-card p {
    text-align: left !important;
    padding-left: 125px;
}

.why-card-wrapper {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardFadeInUp 0.8s ease-out forwards;
}

.why-card-wrapper:nth-child(1) {
    animation-delay: 0.2s;
}

.why-card-wrapper:nth-child(2) {
    animation-delay: 0.4s;
}

.why-card-wrapper:nth-child(3) {
    animation-delay: 0.6s;
}

.why-card-wrapper:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 19, 36, 0.05), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(216, 19, 36, 0.25);
    border-color: #D81324;
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D81324 0%, #ff4d5e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(216, 19, 36, 0.3);
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #D81324;
    opacity: 0;
    transition: all 0.4s ease;
}

.why-card:hover .icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(216, 19, 36, 0.5);
}

.why-card:hover .icon-box::before {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2154;
    margin-bottom: 20px;
    text-align: center;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.why-card h4 i {
    font-size: 32px;
    color: #D81324;
    transition: all 0.4s ease;
    display: inline-block;
}

.why-card:hover h4 {
    color: #D81324;
}

.why-card:hover h4 i {
    transform: scale(1.2) rotate(15deg);
    color: #0B2154;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.why-card:hover p {
    color: #333;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.why-card:hover .card-glow {
    width: 400px;
    height: 400px;
}

/* Floating Animation for Icons */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-card h4 i {
    animation: floatIcon 3s ease-in-out infinite;
}

.why-card:nth-child(1) h4 i {
    animation-delay: 0s;
}

.why-card:nth-child(2) h4 i {
    animation-delay: 0.5s;
}

.why-card:nth-child(3) h4 i {
    animation-delay: 1s;
}

.why-card:nth-child(4) h4 i {
    animation-delay: 1.5s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .why-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .why-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .why-card h4 {
        font-size: 18px;
        flex-direction: column;
        gap: 10px;
    }
    
    .why-card h4 i {
        font-size: 28px;
    }
    
    .why-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .why-card {
        padding: 20px 15px;
    }
}/* ======================================
   WHY MONOLINE SECTION - ANIMATIONS & STYLES
   ====================================== */

.why-monoline-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-monoline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(216, 19, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 33, 84, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header Animations */
.section-header {
    opacity: 0;
    transform: translateY(-30px);
    animation: headerFadeIn 1s ease-out forwards;
    position: relative;
    z-index: 1;
}

@keyframes headerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding: 8px 25px;
    background: rgba(216, 19, 36, 0.1);
    border-radius: 30px;
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(216, 19, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(216, 19, 36, 0);
    }
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0B2154;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #D81324, #ff4d5e);
    border-radius: 2px;
    animation: underlineGrow 1.5s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D81324, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    to {
        width: 150px;
    }
}

/* Why Cards */
.why-card-wrapper {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardFadeInUp 0.8s ease-out forwards;
}

.why-card-wrapper:nth-child(1) {
    animation-delay: 0.2s;
}

.why-card-wrapper:nth-child(2) {
    animation-delay: 0.4s;
}

.why-card-wrapper:nth-child(3) {
    animation-delay: 0.6s;
}

.why-card-wrapper:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 19, 36, 0.05), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(216, 19, 36, 0.25);
    border-color: #D81324;
}

/* Icon Box */
.icon-box {
    display: none;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2154;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.why-card h4 i {
    font-size: 32px;
    color: #D81324;
    transition: all 0.4s ease;
    display: inline-block;
}

.why-card:hover h4 {
    color: #D81324;
}

.why-card:hover h4 i {
    transform: scale(1.2) rotate(15deg);
    color: #0B2154;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.why-card:hover p {
    color: #333;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.why-card:hover .card-glow {
    width: 400px;
    height: 400px;
}

/* Floating Animation for Icons */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-card h4 i {
    animation: floatIcon 3s ease-in-out infinite;
}

.why-card:nth-child(1) h4 i {
    animation-delay: 0s;
}

.why-card:nth-child(2) h4 i {
    animation-delay: 0.5s;
}

.why-card:nth-child(3) h4 i {
    animation-delay: 1s;
}

.why-card:nth-child(4) h4 i {
    animation-delay: 1.5s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .why-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .why-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .why-card h4 {
        font-size: 18px;
        flex-direction: column;
        gap: 10px;
    }
    
    .why-card h4 i {
        font-size: 28px;
    }
    
    .why-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .why-card {
        padding: 20px 15px;
    }
}

.vision-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.35);
}


.vision-subtitle i {
    animation: blinkEye 2s infinite;
    transform-origin: center;
}

/* Blinking animation */
@keyframes blinkEye {
    0%, 20%, 40%, 60%, 100% {
        transform: scaleY(1);
    }
    30%, 50% {
        transform: scaleY(0.1); /* eye becomes thin */
    }
}
/* ----------------------------- */
/*      SERVICES MAIN WRAPPER    */
/* ----------------------------- */
.service {
    background: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

.service h6 {
    letter-spacing: 2px;
    font-weight: 600;
}

.service h1 {
    font-weight: 700;
    color: #222;
}

/* ----------------------------- */
/*       LEFT SIDE NAV PILLS     */
/* ----------------------------- */
.nav-pills .nav-link {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
}

.nav-pills .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
}

.nav-pills .nav-link:hover {
    background: #d81324;
    color: #fff !important;
    transform: translateX(5px);
}

.nav-pills .nav-link.active {
    background: #d81324 !important;
    color: #fff !important;
    border-color: #d81324;
}

/* ----------------------------- */
/*        TAB CONTENT AREA       */
/* ----------------------------- */
.tab-pane {
    padding: 10px 0px;
}

.tab-pane h3 {
    color: #111;
    font-weight: 700;
}

.tab-pane p {
    color: #444;
    line-height: 1.6;
}

/* ----------------------------- */
/*      ICON + TEXT CHECKBOX     */
/* ----------------------------- */
.fa-check {
    font-size: 1rem;
}

/* ----------------------------- */
/*         IMAGES STYLE          */
/* ----------------------------- */
.position-relative img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.position-relative img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

/* ----------------------------- */
/*          READ MORE BTN        */
/* ----------------------------- */
.btn-primary {
    background: #d81324;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #b50f1f;
    transform: translateY(-3px);
}

/* ----------------------------- */
/*       RESPONSIVE ADJUST       */
/* ----------------------------- */
@media (max-width: 991px) {
    .nav-pills .nav-link {
        padding: 15px;
    }

    .service {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tab-pane p {
        font-size: 15px;
    }
}

/* -------------------------------- */
/*       HEADER CAROUSEL STYLING    */
/* -------------------------------- */

#header-carousel {
    position: relative;
}

#header-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
}

#header-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(65%);
    transition: transform 6s ease;
}

/* Subtle slow zoom animation */
#header-carousel .carousel-item.active img {
    transform: scale(1.08);
}

/* Dark gradient overlay */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    padding: 0 5%;
}

/* Main Heading */
.carousel-caption h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Button */
.carousel-caption .btn {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
}

/* -------------------------------- */
/*          IMAGE ON RIGHT          */
/* -------------------------------- */
.carousel-caption img {
    max-width: 420px;
    animation: fadeInRight 1.2s ease;
}

/* Custom smooth fade-right animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* -------------------------------- */
/*         CAROUSEL ARROWS          */
/* -------------------------------- */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60%;
    filter: invert(100%);
    width: 50px;
    height: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: scale(1.1);
}

/* -------------------------------- */
/*            RESPONSIVE            */
/* -------------------------------- */

@media (max-width: 991px) {
    .carousel-caption h1 {
        font-size: 2.6rem;
    }

    .carousel-caption img {
        max-width: 260px;
        margin-top: 20px;
    }

    #header-carousel .carousel-item {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        text-align: center;
        background: rgba(0,0,0,0.55);
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }
}
/* =========================================================
   GENERAL GLOBAL FIXES
========================================================= */

/* WOW.js hides elements initially — we fix default behavior */
.wow {
    visibility: hidden;
}

/* Animate.css v4 reset */
.animate__animated {
    visibility: visible !important;
}

/* =========================================================
   CAROUSEL FIXES (white arrows, smooth fade)
========================================================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%) brightness(200%); /* Pure white */
    width: 50px;
    height: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Dark gradient to improve text visibility */
.carousel-caption {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    padding: 40px 25px;
    border-radius: 10px;
}

/* =========================================================
   SERVICE SECTION TABS FIX
========================================================= */

.nav-pills .nav-link {
    background: #f5f5f5;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    transition: 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-pills .nav-link:hover {
    background: #fff;
    border-left: 4px solid var(--primary);
    transform: translateX(5px);
}

.nav-pills .nav-link.active {
    background: var(--primary);
    color: #fff;
    border-left: 4px solid #fff;
    transform: translateX(0);
}

/* Tab fade animation */
.tab-pane {
    animation: fadeInTab 0.6s ease both;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   IMAGE PROFESSIONAL HOVER (No bubbles)
========================================================= */

.vision-image {
    border-radius: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vision-image:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   BLINKING EYE ICON
========================================================= */
.vision-subtitle i {
    animation: blinkEye 2s infinite ease-in-out;
}

@keyframes blinkEye {
    0%, 90%, 100% { opacity: 1; transform: scale(1); }
    95%           { opacity: 0.2; transform: scale(0.7); }
}

/* =========================================================
   IMAGE HOVER LIKE LASER SECTION (NO BUBBLES)
========================================================= */

.right img {
    border-radius: 8px;
    transition: 0.4s ease-in-out;
}

.right img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
}

/* =========================================================
   FACT SECTION ANIMATION (Smooth + Professional)
========================================================= */

.fact-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fact-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon pop */
.fact i {
    animation: iconPop 1s ease forwards;
}

@keyframes iconPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

/* Number glow */
.fact h2 {
    animation: numberGlow 1.8s infinite ease-in-out;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50%      { text-shadow: 0 0 20px rgba(255,255,255,0.9); }
}

/* ================================
   CONTACT SECTION STYLING
================================ */

/* Fade & slide animation */
@keyframes slideIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.contact-card, 
.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease forwards;
}

/* Nice card hover effect */
.contact-card:hover,
.contact-form:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Headings */
.contact-card h5,
.contact-form h5 {
    font-weight: 700;
    margin-bottom: 18px;
    animation: slideIn 0.8s ease forwards;
}

/* Text */
.contact-card p,
.contact-card i {
    font-size: 16px;
}

/* Form Inputs */
.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    padding: 14px;
    transition: 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13,110,253,0.3);
}

/* Submit Button */
.contact-form .btn-primary {
    background: #0d6efd;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #0048c7;
    transform: translateY(-3px);
}

/* ================================
   MAP SECTION RESPONSIVE + ANIMATION
================================ */
.embed-map-fixed {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.15);
    margin: 25px 0;
    animation: slideIn 0.9s ease forwards;
}

.embed-map-container, 
.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
}

/* ================================
   RESPONSIVE FIXES
================================ */
@media (max-width: 768px) {
    .contact-card, 
    .contact-form {
        padding: 20px;
    }

    .embed-map-fixed {
        height: 300px;
    }
}

/* ------------------------------
   CONTACT FORM – Modern Design
--------------------------------*/

/* Fade-in Animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Form Card Style */
.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.10);
    animation: fadeUp 0.9s ease forwards;
    transition: all 0.3s ease;
}

/* Hover lift effect */
.contact-form:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
}

/* Heading */
.contact-form h5 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Floating Input Fields */
.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    padding: 15px;
    transition: 0.3s;
    background: #fdfdfd;
}

/* On focus – glowing effect */
.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 12px rgba(13,110,253,0.35);
    background: #ffffff;
}

/* Floating Labels */
.form-floating label {
    padding: 12px 14px;
    font-size: 15px;
    color: #666;
}

/* Textarea clean style */
.contact-form textarea {
    resize: none;
}

/* Submit Button */
.contact-form button {
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    background: #0d6efd;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #0454c2;
    transform: translateY(-3px);
}

/* index first letter */

p.para::first-letter {
    font-size: 2.2em !important;
    font-weight: 700 !important;
    color: #D81324 !important;
    padding-right: 6px !important;
    line-height: 1 !important;
}

/* Fiber Laser Intro Section */
.fiber-intro-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}

.fiber-intro-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.fiber-intro-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.fiber-intro-box ul li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.fiber-section-header h1 {
    font-size: 40px;
    font-weight: 700;
}

.fiber-section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: #555;
}

@media (max-width: 768px) {
    .fiber-section-header h1 {
        font-size: 32px;
    }
    .fiber-intro-box {
        padding: 20px;
    }
}

/* ==========================================
   SERVICE SECTION WITH HOVER EFFECTS
========================================== */

.service-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(216, 19, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-item {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    animation: serviceSlideUp 0.8s ease-out forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.2s;
}

.service-item:nth-child(2) {
    animation-delay: 0.4s;
}

.service-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes serviceSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
    cursor: pointer;
}

/* Shimmer effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 19, 36, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Main hover effect - "opens up" */
.service-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 25px 60px rgba(216, 19, 36, 0.3);
    border-color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f6 100%);
}

/* Service Icon Styling */
.service-icon {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.2);
    color: var(--secondary) !important;
    filter: drop-shadow(0 5px 15px rgba(216, 19, 36, 0.4));
}

/* Service Content */
.service-card h5 {
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-card:hover h5 {
    color: var(--primary);
    transform: translateX(8px);
    letter-spacing: 0.5px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.service-card:hover p {
    color: #333;
    opacity: 1;
    transform: translateY(5px);
}

/* Service Link */
.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

/* Floating Animation for Icons */
@keyframes floatService {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon {
    animation: floatService 3s ease-in-out infinite;
}

.service-item:nth-child(1) .service-icon {
    animation-delay: 0s;
}

.service-item:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-item:nth-child(3) .service-icon {
    animation-delay: 1s;
}

/* Card Glow Effect on Hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    width: 600px;
    height: 600px;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Pulse effect on hover */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 25px 60px rgba(216, 19, 36, 0.3);
    }
}

.service-card:hover {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* Add a "reveal" effect for content */
.service-card h5,
.service-card p {
    transition-delay: 0.1s;
}

.service-card:hover h5 {
    transition-delay: 0s;
}

.service-card:hover p {
    transition-delay: 0.05s;
}

.carousel-video {
    height: 100vh;
    object-fit: cover;
}
@keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(13, 110, 253, 0.6);
            }
        }

        .booking-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #D81324 0%, #b50f1f 100%);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s infinite linear;
        }

        .image-container {
            
            position: relative;
        }

        .image-container img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* animation: float 6s ease-in-out infinite; */
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 450px;
        }

        /* .image-container img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        } */

        .form-container {
            /* animation: fadeInRight 1s ease-out; */
            height: 100%;
            /* display: flex; */
            /* align-items: stretch; */
        }

        .form-box {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            /* animation: glow 3s ease-in-out infinite; */
            width: 100%;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-box h1 {
            color: #667eea;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .form-box h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 10px 15px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .form-control:focus, .form-select:focus {
            border-color: #D81324;
            box-shadow: 0 0 0 0.2rem rgba(216, 19, 36, 0.25);
            transform: translateY(-2px);
        }

        .btn-submit {
            background: linear-gradient(135deg, #D81324 0%, #b50f1f 100%);
            border: none;
            border-radius: 10px;
            padding: 12px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 16px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(216, 19, 36, 0.4);
        }

        .form-group {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
        .form-group:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 991px) {
            .image-container {
                margin-bottom: 40px;
            }
        }



        /* Make left-side items bigger & premium */
.top-left-big .item {
    display: inline-flex;
    align-items: center;
    margin-right: 35px;
    font-size: 14px;
    font-weight: 600;
    color: #0B2154;
}

.top-left-big .item i {
    font-size: 22px;
    color: #D81324;   /* Your laser red theme */
    margin-right: 8px;
}

/* Hover Effect */
.top-left-big .item:hover {
    color: #D81324;
    cursor: pointer;
    transition: 0.3s ease;
    transform: translateY(-2px);
}

.top-left-big .item:hover i {
    color: #0B2154;
}
.video-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 20px; /* distance from bottom */
    left: 20px;   /* distance from left */
    color: white;
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in-out;
}


/* Smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* **************************************************** */

/* ======================== */
/* VIDEO HERO IMPROVED CSS */
/* ======================== */

        .video-hero {
            position: relative;
            width: 100%;
            height: 80vh;
            overflow: hidden;
            }

        /* Background Video */
        .video-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55); 
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Dark overlay tint */
        .video-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(
                to bottom right,
                rgba(20, 20, 20, 0.55),
                rgba(241, 240, 240, 0.45)
            ); */
            z-index: 1;
        }

        /* HERO CONTENT POSITIONING */
        .hero-content {
            position: absolute;
            top: 20%;
            left: 8%;
            z-index: 10;
            max-width: 800px;
        }

        /* Rotating Heading */
        .hero-text {
            z-index: 20;
            margin-bottom: 50px;
            position: relative;
            font-size: 45px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 2px;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
        }

        /* Underline accent */
        .hero-text::after {
            content: "";
            display: block;
            height: 6px;
            width: 0;
            margin-top: 15px;
            margin-left: 5px;
            background: linear-gradient(90deg, #d81324, transparent);
            animation: underlineGrow 1.4s ease-out forwards;
        }

        @keyframes underlineGrow {
            to {
                width: 260px;
            }
        }

        /* Text fade animations */
        .hero-text.fade-out {
            animation: textFadeOut 0.6s forwards;
        }

        @keyframes textFadeOut {
            to {
                opacity: 0;
                transform: translateY(-40px);
            }
        }

        .hero-text.fade-in {
            animation: fadeSlideDown 1s forwards;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================== */
        /* BULLET LIST ENHANCED STYLE */
        /* ============================== */

        .application-bullets {
            list-style: none !important;
            padding-left: 0;
            margin-left: 0;
        }

        /* Bullet Item */
        .application-bullets li {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            padding: 8px;
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Icon Circle Container */
        .application-bullets li i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            min-width: 45px;
            background: linear-gradient(135deg, #d81324, #a00e1c);
            border-radius: 50%;
            font-size: 20px;
            color: #fff;
            box-shadow: 0 4px 12px rgba(216, 19, 36, 0.4);
            transition: all 0.4s ease;
        }

        /* Animate In */
        .application-bullets li.bullet-animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Hover Effects */
        .application-bullets li:hover {
            transform: translateX(15px);
        }

        .application-bullets li:hover i {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, #ff1a35, #d81324);
            box-shadow: 0 6px 20px rgba(216, 19, 36, 0.6);
        }

        /* SCROLL ICON */
        .scroll-indicator {
            position: absolute;
            left: 50%;
            bottom: 35px;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 32px;
            color: white;
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
        }

       @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-14px); } /* WHERE */
}


        /* Responsive */
        @media (max-width: 768px) {
            .hero-text {
                font-size: 42px;
            }

            .application-bullets li {
                font-size: 18px;
                padding: 12px 18px;
            }

            .application-bullets li i {
                width: 38px;
                height: 38px;
                min-width: 38px;
                font-size: 16px;
            }
        }