
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #68bb59;
    --text-color: #333;
    --light-color: #ecf0f1;
    --dark-color: #1f2836;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header a:hover {
    color: var(--secondary-color);
}
/* Logo */
.logo-container {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Added for extra centering */
}

.logo-img {
    max-height: 150px;
    width: auto;
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Needed for margin auto to work */
}

.logo-text, .logo-text-hindi {
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Full width for proper centering */
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 120px; /* Slightly smaller on mobile */
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 1.3rem; /* Adjusted for mobile */
    }
    
    .logo-text-hindi {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
}
/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero */
.hero {
    background:  url('../image/dron.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}

.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

/* Image Gallery */
.gallery-img {
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
}

.social-icons li {
    margin-right: 10px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    color: white;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.contact-info i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .logo-text-hindi {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .top-header .col-md-6 {
        margin-bottom: 10px;
    }

    .logo-container {
        text-align: center;
    }

    .logo-img {
        margin-bottom: 15px;
    }

    .navbar-nav {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer .col-lg-3 {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .logo-img {
        max-height: 120px; /* Slightly smaller on mobile */
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 1.3rem; /* Adjusted for mobile */
    }
    
    .logo-text-hindi {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
}