* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Colors */
.red-text { color: #D32F2F; }

.top-bar {
    background-color: #002244;
    color: white;
    padding: 8px 10%;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgb(102 0 0 / 11%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #003366; /* Navy Blue */
}

.logo img {
    height: 70px;   /* Adjust size */
    width: 150px;
    display: block;
}

.contact-line {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #D32F2F;
    transform: scale(1.2);
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin-left: 25px;
    font-weight: 600;
}

.btn-enquiry {
    background-color: #D32F2F; /* Red */
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Hero */
.hero-section {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=2070') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3); /* 0.6 = opacity level */

    padding: 40px;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-section h1 { font-size: 48px; margin-bottom: 10px; }

.btn-blue {
    background: #003366;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    cursor: pointer;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    cursor: pointer;
}

/* Stats Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 10%;
    background:
        linear-gradient(rgba(102, 0, 0, 0.15), rgba(102, 0, 0, 0.15)),
        url('../images/tt1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.9);
}
.feature-item p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
}


/* Grid */
.container {
    padding: 50px 10%;
    background:
        linear-gradient(rgba(102, 0, 0, 0.15), rgba(102, 0, 0, 0.15)),
        url('../images/tt1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.section-title {
    font-size: 2.8rem;           /* Same as main-heading */
    font-weight: 900;
    color: #ffffff;              /* White for dark background */
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;

    /* Premium shadow like main-heading */
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;

    text-shadow: 0px 2px 8px rgba(0,0,0,0.7);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover { border-color: #003366; transform: scale(1.02); }

.card img { width: 100%; height: 200px; object-fit: cover; }
.card-info { padding: 15px; }
.section-subtitle { margin-bottom: 50px; opacity: 0.8; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background: #eee3e3;
    padding: 30px;
    border-top: 3px solid #EE2B2E;
    transition: 0.3s;
}

.team-card:hover { background: #EE2B2E; transform: translateY(-5px); }

.team-card h4 { font-size: 1.2rem; margin-bottom: 5px; }
.team-card .role { font-size: 0.9rem; font-style: italic; }


/* About Us with Video BG */
.about-video-section {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blue Transparent Background */
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 26, 51, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15%;
}

.about-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

.section-title-white {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mentor-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Mini Stats inside About */
.stats-mini {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #EE2B2E; /* Red Accent */
}

.stat-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-video-section { height: auto; padding: 60px 20px; }
    .video-overlay { padding: 40px 20px; position: relative; }
    .stats-mini { flex-direction: column; gap: 20px; }
}

.marquee-container {
    width: 100%;
    background-color: #003366; /* Your brand Navy Blue */
    color: #ffffff;
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 2px solid #EE2B2E; /* Your brand Red */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-text {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Pause on hover so users can read specific info */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.brand-marquee {
    width: 100%;
    height: 300px; /* Matches your specific requirement #f4f4f4*/
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    /* (200px width + 10px left margin + 10px right margin) * 10 images = 2200px */
    width: 2200px;
    animation: scroll-brands 20s linear infinite;
}

.marquee-track img {
    width: 200px;
    height: 250px;
    margin: 20px;
    object-fit: cover;
    transition: 0.3s;
    
}

.marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}

/* Scroll exactly half the track width (2200 / 2 = 1100) */
@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1100px); }
}

/* Pause on Hover */
.brand-marquee:hover .marquee-track {
    animation-play-state: paused;
}
.heading-wrapper {
    text-align: center;
    padding: 60px 0 20px 0; /* Added top padding to separate from video */
}

.title-dice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0; /* No gap between the blue and red blocks */
    margin-bottom: 15px;
}

.dice-blue {
    width: 25px;
    height: 6px;
    background-color: #003366; /* Your Navy Blue */
}

.dice-red {
    width: 25px;
    height: 6px;
    background-color: #EE2B2E; /* Your Red accent */
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}



/* enquiry*/
.rts-form {
    max-width: 500px;
    margin: 0 auto;
    background: #eee3e3;;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    color: #003366; /* Navy Blue */
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background-color: #EE2B2E; /* Red */
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #003366;
}

.emergency-call {
    margin-top: 20px;
    text-align: center;
    color: #003366;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #ffffff;
    padding: 40px;
    text-align: center;
    border-bottom: 4px solid #EE2B2E;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #003366;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-card p, .contact-card a {
    color: #444;
    text-decoration: none;
    line-height: 1.8;
}

.map-container {
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.product-link {
    display: block;
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: translateY(-5px);
}

.product-link .card:hover {
    border-color: #003366;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.1);
}