/* Global Styles */
:root {
    --primary-color: #FF6B00;  /* Main orange */
    --secondary-color: #FF8533; /* Lighter orange */
    --accent-color: #FFA366;   /* Soft orange */
    --light-color: #FFFFFF;    /* White */
    --gray-light: #F8F9FA;     /* Light gray for subtle backgrounds */
    --gray-medium: #E9ECEF;    /* Medium gray for borders */
    --dark-color: #333333;     /* Dark gray */
    --text-color: #495057;     /* Text color */
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    background-color: var(--white) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    color: var(--dark-color) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    margin-top: -76px; /* Adjust based on navbar height */
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 40vh;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Quick Join Section */
.quick-join {
    padding: 5rem 0;
}

.card {
    background-color: var(--light-color);
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.card-body {
    padding: 2rem;
}

.card i {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .hero-slide {
        height: 70vh;
    }
    
    .hero-content {
        padding-top: 30vh;
    }
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--gray-light) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.page-header {
    background-color: var(--light-color);
    padding: 8rem 0 4rem;
    margin-top: 76px;
}

.team-card {
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.15);
}

.team-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 1.5rem;
}

.team-card .card-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card .text-primary {
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-section img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
}

.mission-vision .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
}

.mission-vision .card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.values-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.15);
}

.values-section .card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Scrollable Team Sections */
.team-scroll-container {
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-primary) #f8f9fa;
}

.team-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.team-scroll-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.team-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border-radius: 3px;
}

.team-scroll-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 10px 5px;
    min-width: min-content;
}

.team-card {
    flex: 0 0 auto;
    width: 300px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

/* Scroll Navigation Buttons */
.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-nav:hover {
    opacity: 1;
}

.scroll-nav.prev {
    left: 10px;
}

.scroll-nav.next {
    right: 10px;
}

@media (max-width: 768px) {
    .scroll-nav {
        display: none;
    }
}

/* Update section backgrounds */
.about-section, 
.services-section,
.projects-section,
.gallery-section,
.media-section,
.contact-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.about-section:nth-child(even),
.services-section:nth-child(even),
.projects-section:nth-child(even),
.gallery-section:nth-child(even),
.media-section:nth-child(even) {
    background-color: var(--gray-light);
}

/* Gallery Images */
.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Service Icon Large */
.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 139, 94, 0.05) 100%);
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.service-icon-large:hover {
    transform: scale(1.05);
}

.service-icon-large::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 139, 94, 0.1) 100%);
    border-radius: 50%;
}

.service-icon-large i {
    font-size: 150px;
    color: var(--primary-color);
    z-index: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .service-icon-large {
        max-width: 300px;
        height: 300px;
        margin-top: 2rem;
    }
    
    .service-icon-large i {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    .service-icon-large {
        max-width: 250px;
        height: 250px;
    }
    
    .service-icon-large i {
        font-size: 100px;
    }
}

/* Featured Videos Section */
.featured-videos {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.video-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    text-decoration: none;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(255, 107, 0, 0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 107, 0, 1);
}

.video-info {
    padding: 1.5rem;
    background-color: var(--light-color);
}

.video-info h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.video-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Video Grid */
@media (max-width: 991px) {
    .video-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .featured-videos {
        padding: 3rem 0;
    }
    
    .video-info h5 {
        font-size: 1.1rem;
    }
    
    .play-button {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
}

/* Social Media Section */
.social-media-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.social-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card .card {
    border: 1px solid var(--gray-medium);
    transition: box-shadow 0.3s ease;
}

.social-card:hover .card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
}

.social-card h5 {
    font-weight: 600;
    color: var(--dark-color);
}

.social-card p {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Project Filter Buttons */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.btn-outline-primary.active {
    font-weight: 600;
    border-width: 2px;
}

/* Landing Page Styles */
.registration-cta {
    background: linear-gradient(135deg, var(--gray-light) 0%, #fff 100%);
    border-top: 3px solid var(--primary-color);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

/* Registration Modal Styles */
#registrationModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#registrationModal .modal-header {
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

#registrationModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

#registrationModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#registrationModal .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

#registrationModal .form-control,
#registrationModal .form-select {
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#registrationModal .form-control:focus,
#registrationModal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15);
}

#registrationModal .form-check {
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#registrationModal .form-check:hover {
    background-color: var(--gray-light);
    border-color: var(--primary-color);
}

#registrationModal .form-check-input {
    margin-top: 0.35rem;
    cursor: pointer;
}

#registrationModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#registrationModal .form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
}

#registrationModal h6 {
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;
}

#registrationModal .alert-info {
    background-color: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

#registrationModal .modal-footer {
    border-top: 1px solid var(--gray-medium);
    padding: 1.25rem 1.5rem;
}

/* Custom Scrollbar for Modal */
#registrationModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#registrationModal .modal-body::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

#registrationModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

#registrationModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Success Message Styles */
#registrationModal .fa-check-circle {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles for Landing Page */
@media (max-width: 768px) {
    #registrationModal .modal-dialog {
        margin: 0.5rem;
    }
    
    #registrationModal .modal-body {
        max-height: 60vh;
        padding: 1.5rem;
    }
    
    .registration-cta .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* News Feed Section Styles */
.news-feed-section {
    background: linear-gradient(135deg, #fff 0%, var(--gray-light) 100%);
    position: relative;
}

.news-feed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
}

.news-card {
    border: 1px solid var(--gray-medium);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.news-card:hover .news-card-image {
    transform: scale(1.05);
}

.news-card .card-title {
    color: var(--dark-color);
    font-size: 1.2rem;
    line-height: 1.4;
    min-height: 3.5em;
    display: flex;
    align-items: center;
}

.news-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.5em;
}

.news-source {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-medium);
}

.news-card .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-card .btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* Responsive News Feed */
@media (max-width: 991px) {
    .news-card .card-title {
        min-height: auto;
        font-size: 1.1rem;
    }
    
    .news-card .card-text {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .news-feed-section {
        padding: 3rem 0 !important;
    }
    
    .news-card-image {
        height: 180px;
    }
    
    .news-card .card-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .news-card .card-text {
        font-size: 0.9rem;
    }
}

 