
/* Remove default spacing */
body {
    margin: 0;
    padding: 0;
}

/* Remove extra space from marquee */
marquee {
    margin: 0;
    padding: 5px 0; /* optional spacing inside */
    display: block;
}

/* Remove heading top margin */
header, .header {
    margin-top: 0;
    padding-top: 0;
}

/* If h1 inside header is creating gap */
header h1 {
    margin-top: 0;
}



/* Headings */
.tu-main-heading {
    text-align: center;
    margin-bottom: 30px;
}

.tu-section-heading {
    margin: 30px 0 15px;
    text-align: center;
}

/* Grid */
.tu-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card Style */
.tu-card-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;

    /* NEW BORDER STYLE */
    border: 1px solid #e0e0e0;

    /* Soft shadow */
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);

    /* Smooth animation */
    transition: all 0.3s ease;
}

/* Hover Effect */
.tu-card-box:hover {
    transform: translateY(-6px);
    border-color: #002147;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Titles */
.tu-card-box h2,
.tu-card-box h3 {
    color: #002147;
    margin-bottom: 10px;
}

/* Text */
.tu-card-box p {
    color: #555;
    line-height: 1.6;
}

/* Special Security Card */
.tu-security-box {
    margin-top: 30px;

    /* Highlight border */
    border-left: 5px solid #ff4d4d;

    background: #fff5f5;
}
/* Optional: add subtle divider inside cards */
.tu-card-box p + p {
    margin-top: 8px;
}


/* Remove default spacing */
body {
    margin: 0;
    padding: 0;
}

/* Remove extra space from marquee */
marquee {
    margin: 0;
    padding: 5px 0; /* optional spacing inside */
    display: block;
}

/* Remove heading top margin */
header, .header {
    margin-top: 0;
    padding-top: 0;
}
/* If h1 inside header is creating gap */
header h1 {
    margin-top: 0;
}

/* for about us page */

/* HERO SECTION */
.tu-about-hero {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tu-hero-overlay {
    background: rgba(0, 33, 71, 0.7);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    animation: fadeIn 1.5s ease;
}

.tu-hero-overlay h1 {
    margin: 0;
    font-size: 32px;
}

.tu-hero-overlay p {
    margin-top: 10px;
    font-size: 16px;
}

/* IMAGE GRID */
.tu-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* IMAGE CARD */
.tu-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.tu-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.tu-image-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY TEXT */
.tu-img-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: 0.3s;
}

.tu-image-card:hover .tu-img-overlay {
    transform: translateY(0);
}

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .tu-about-hero {
        height: 220px;
    }

    .tu-hero-overlay h1 {
        font-size: 24px;
    }
}



/* Stats Box */
.tu-stat-box {
    text-align: center;
}

.tu-stat-box h2 {
    color: #002147;
    font-size: 28px;
    margin-bottom: 5px;
}

/* Company Cards */
.tu-company {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 25px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover Effect */
.tu-company:hover {
    background: #002147;
    color: #fff;
    transform: scale(1.05);
}

/* Remove link default styles */
.tu-company-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Keep hover effect */
.tu-company-link:hover .tu-company {
    background: #002147;
    color: #fff;
    transform: scale(1.05);
}


/* Founder Section */


/* Founder Section */
/* Center heading */
.tu-center-heading {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Founder Section */
.tu-founder-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding: 30px;
    border-radius: 12px;

    /* New Background Color */
    background: #eef5ff;  /* light blue clean look */

    /* Removed border */
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* Image */
.tu-founder-img img {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
}

/* Content */
.tu-founder-content h2 {
    margin: 0;
    color: #002147;
}

.tu-founder-role {
    color: #555;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .tu-founder-section {
        flex-direction: column;
        text-align: center;
    }
}


/* Story Section */
.tu-story-section {
    /* max-width: 900px;
    margin: 20px auto; */
    /* padding: 25px;
    border-radius: 12px; */

    /* Soft background */
    background: #f9fbff;

    /* Subtle shadow */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    line-height: 1.7;
    color: #444;
}

/* Paragraph spacing */
.tu-story-section p {
    margin-bottom: 15px;
}

/* our story ends */



/* slide animation at bottom of about page */


/* Container */
.tu-marquee-container {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Track */
.tu-marquee-track {
    display: flex;
    gap: 20px;
    animation: tu-scroll 20s linear infinite;
}

/* Pause on hover */
.tu-marquee-container:hover .tu-marquee-track {
    animation-play-state: paused;
}

/* Image Card */
.tu-marquee-item {
    min-width: 250px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.tu-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation */
@keyframes tu-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .tu-marquee-item {
        min-width: 200px;
        height: 130px;
    }
}


/* slides for Archivements */


/* Slider Container */
.tu-achievement-slider {
    /* overflow: hidden; */
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
}

/* Track */
.tu-slide-track {
    display: flex;
    width: 300%;
    animation: tu-slide 150s infinite; /* slower (was 12s) */
}

/* Slide */
.tu-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.tu-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Caption */
.tu-slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: center;
}

/* Animation */
@keyframes tu-slide {
    0%   { transform: translateX(0%); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}

/* Pause on hover */
.tu-achievement-slider:hover .tu-slide-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 600px) {
    .tu-slide img {
        height: 220px;
    }

@keyframes tu-slide {
    0%   { transform: translateX(0%); }

    25%  { transform: translateX(0%); }       /* pause on first */
    35%  { transform: translateX(-100%); }

    60%  { transform: translateX(-100%); }    /* pause on second */
    70%  { transform: translateX(-200%); }

    95%  { transform: translateX(-200%); }    /* pause on third */
    100% { transform: translateX(0%); }
}
}




/* companices section */

/* Horizontal Row */
.tu-placement-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

/* Boxes */
.tu-placement-box {
    flex: 1;
    min-width: 180px;
    text-align: center;

    background: #fff;
    padding: 20px;
    border-radius: 10px;

    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);

    transition: 0.3s;
}

/* Hover */
.tu-placement-box:hover {
    transform: translateY(-5px);
    border-color: #002147;
}

/* Numbers */
.tu-placement-box h3 {
    color: #002147;
    font-size: 26px;
    margin-bottom: 5px;
}

/* Text */
.tu-placement-box p {
    color: #555;
}



/* Our Brands Section */


/* Grid */
.tu-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Remove link styling */
.tu-brand-link {
    text-decoration: none;
    color: inherit;
}

/* Small Box */
.tu-brand-box {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;

    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;

    transition: 0.3s;
}

/* Hover Effect */
.tu-brand-box:hover {
    background: #002147;
    color: #fff;
    transform: scale(1.05);
    border-color: #002147;
}