@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Gujarati:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #003366;
    /* Deep Navy Blue */
    --accent-color: #ff9933;
    /* Saffron (Gujarat Theme) */
    --text-color: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --nav-height: 80px;
}

body {
    background-image: url('Images/bg1.png');
    background-size: cover;
    background-repeat: repeat;
}

/* Hero Section */
.hero {
    margin-top: 10px;
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
    max-width: 1600px;
    margin: 5px auto 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: red; */
    /* Same as parallax overlay */
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    border-radius: 12px;
    margin: 0 20px;

}

.hero-logo-img {
    width: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(1em, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Gujarati', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
    padding: 10px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}



.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Section Styles */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

/* Deployment Grid */
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deploy-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.deploy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.deploy-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Training Gallery */
.training-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.training-img {
    flex: 1;
    min-width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.training-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Application Forms */
.forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.form-card {
    background: var(--light-bg);
    padding: 40px 20px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.form-card:hover {
    background: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Parallax CTA Section */
.parallax-cta {
    min-height: 300px;
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/Home/cta01.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 1600px;
}

.parallax-cta h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
    border: none;
}

.parallax-cta h2::after {
    display: none;
}

.parallax-cta p {
    font-size: 1.1rem;
    max-width: 900px;
    line-height: 1.8;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

/* About.js css */
.about-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Generic.js css */
.generic-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Recruitment.js css */
.recruitment-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tharav.js css */
.tharav-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Fees.js css */
.fees-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Photos.js css */
.photos-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
    height: 100%;
}

.photos-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Us Styles */
.contact-section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-container {
    background: var(--white);
    display: flex;
    max-width: 1100px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.contact-map {
    flex: 2;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #eee;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #555;
    font-family: 'Inter', sans-serif;
    margin-bottom: 25px;
    font-weight: 300;
    border: none;
    padding-bottom: 0;
}

.contact-info h2::after {
    display: none;
}

.contact-info .address {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info .divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 20px 0 30px;
}

.contact-info .time-label {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info .time-details {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.circular-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer css */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 20px 40px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-about p {
    line-height: 1.8;
    color: #bbb;
    text-align: justify;
}

.footer-links ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.footer-links ul li:last-child {
    border-bottom: none;
}

.footer-links ul li a {
    color: #bbb;
    transition: 0.3s;
    display: block;
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #bbb;
}

.footer-contact strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 15px;
    }
    .photos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
  
    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}