/*
:root {
            --primary-color: #2c3e50;
            --primary-rgb: 44, 62, 80;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --digital-font: 'Orbitron', sans-serif;
            --body-font: 'Exo 2', sans-serif;
        }
        */

:root {
            --primary-color: #653614;
            --secondary-color: #e88524;
            --accent-color: #1a1a1a;
            --light-color: #ecf0f1;
            --white-color: #ffffff;
            --dark-color: #653614;
            --digital-font: 'Orbitron', sans-serif;
            --body-font: 'Exo 2', sans-serif;
        }
        
        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--body-font);
            color: var(--dark-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, .navbar-brand, .section-title, .car-price, .stat-number {
            font-family: var(--body-font);
            font-weight: 700;
        }
        
        /* Header Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 0.5rem 0;
            backdrop-filter: blur(10px);
            margin-left: 10px;
            margin-right: 10px;
            margin-top: 5px;
            border-radius: 50px;
            border: 2px solid var(--secondary-color);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            color: var(--primary-color);
            letter-spacing: 1px;
        }

        .navbar-brand img{
            height: 60px;
            width: auto;
        }

        .navbar.scrolled .navbar-brand img{
            height: 50px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: width 0.3s;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }

        .navbar.scrolled .nav-link {
            color: var(--white-color); 
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--dark-color); 
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border: none;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-custom-2 {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border: none;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 50px;
        }
        
        .btn-primary-custom:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transition: all 0.4s;
            z-index: -1;
        }
        
        .btn-primary-custom:hover:before {
            left: 0;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Custom Mobile Menu */
        .navbar-toggler {
            border: none;
            background: transparent;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1000;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: none;
            position: relative;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
            transition: all 0.3s;
        }
        
        .navbar-toggler-icon:before,
        .navbar-toggler-icon:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
            left: 0;
            transition: all 0.3s;
        }
        
        .navbar-toggler-icon:before {
            top: -8px;
        }
        
        .navbar-toggler-icon:after {
            top: 8px;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background-color: transparent;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
            transform: rotate(45deg);
            top: 0;
            background-color: white;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
            transform: rotate(-45deg);
            top: 0;
            background-color: white;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 82%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            z-index: 999;
            padding: 80px 30px 30px;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            overflow-y: auto;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu {
            padding-top: 2rem;
            list-style: none;
            margin: 0;
        }

        .navbar.scrolled .mobile-menu {
            padding-top: 1rem;
            list-style: none;
            margin: 0;
        }
        
        .mobile-menu li {
            margin-bottom: 15px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
        }
        
        .mobile-menu-container.active .mobile-menu li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu li:nth-child(5) { transition-delay: 0.3s; }
        .mobile-menu li:nth-child(6) { transition-delay: 0.35s; }
        
        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            z-index: -1;
        }
        
        .mobile-menu a:hover:before {
            left: 0;
        }
        
        .mobile-menu a:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .mobile-menu a.active {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }
        
        .mobile-menu .btn-primary-custom {
            margin-top: 20px;
            width: 100%;
            text-align: center;
        }
        
        /* Custom Slider Animation */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slider-2 {
            height: 70vh;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .carousel-item {  
            height: 100%;
            background-size: cover;
            background-position: center; 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1.1);
        }
        
        .carousel-item.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }
        
        .carousel-item.next {
            transform: translateX(100%) scale(0.9);
        }
        
        .carousel-item.prev {
            transform: translateX(-100%) scale(0.9);
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: center;
            max-width: 600px;
            left: 10%;
            right: 10%;
            background-color: rgba(101, 54, 20, 0.9);
            transform: translateY(50px) scale(0.9);
            transition: all 1s ease 0.5s;
            padding: 10px 20px;
            border-radius: 20px;
        }
        
        .carousel-item.active .carousel-caption {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .carousel-caption h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease 0.7s;
        }
        
        .carousel-item.active .carousel-caption h2 {
            transform: translateX(0);
            opacity: 1;
        }
        
        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease 0.9s;
        }
        
        .carousel-item.active .carousel-caption p {
            transform: translateX(0);
            opacity: 1;
        }
        
        .carousel-caption .btn {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 1.1s;
        }
        
        .carousel-item.active .carousel-caption .btn {
            transform: translateY(0);
            opacity: 1;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.4s;
            z-index: 10;
        }
        
        .hero-slider:hover .carousel-control-prev,
        .hero-slider:hover .carousel-control-next {
            opacity: 1;
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 25px;
            height: 25px;
            background-size: 100%;
            filter: invert(1);
        }
        
        .carousel-indicators {
            bottom: 30px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            transition: all 0.3s;
        }
        
        .carousel-indicators button.active {
            background-color: white;
            transform: scale(1.3);
        }
        
        /* Search Section */
        .search-section {
            background-color: white;
            padding: -10rem 0;
            box-shadow: 15px 5px 5px rgba(0, 0, 0, 0.05);
        }
    
        .search-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: -100px;
            position: relative;
            z-index: 10;
            transform: translateY(-80px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .search-card.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }
        
        /* Featured Cars */
        .featured-cars {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .car-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .car-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .car-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .car-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        .car-img-2 {
            height: 400px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: transform 0.6s ease;
            position: relative;
            overflow: hidden;
        }
        
        .car-card:hover .car-img {
            transform: scale(1.1);
        }
        
        .car-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }
        
        .car-card:hover .car-overlay {
            opacity: 1;
        }
        
        .car-details {
            padding: 1.5rem;
        }
        
        .car-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .car-price {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .car-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            color: #7f8c8d;
        }
        
        .car-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background-color: #ffffff;
            margin-right: 10px;
            margin-left: 10px;
        }

        /* Services Section */
        .services-section-2 {
            padding: 5rem 0;
            background-color: var(--secondary-color);
        }
        
        .service-card {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 10px;
            transition: all 0.4s;
            opacity: 0;
            transform: translateY(30px);
            border-radius: 10px;
            border: 1px double black;
            text-align: justify;
            margin-bottom: 20px;
        }
        
        .service-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card-2 {
            background-color: #ffffff;
            text-align: center;
            padding: 2rem 1rem;
            margin-bottom: 20px;
            border-radius: 10px;
            transition: all 0.4s;
            opacity: 0.8;
            transform: translateY(30px);
        }
        
        .service-card-2.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card-2:hover {
            background-color: #ffffff;
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: all 0.4s;
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(180deg) scale(1.1);
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 1rem;
            transition: all 0.4s;
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .testimonial-card.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .testimonial-card:nth-child(even) {
            transform: translateX(30px);
        }
        
        .testimonial-card:nth-child(even).animated {
            transform: translateX(0);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--secondary-color);
        }
        
        .author-info h5 {
            margin-bottom: 0.2rem;
            font-weight: 600;
        }
        
        .author-info p {
            color: #7f8c8d;
            margin: 0;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .stat-item.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-number {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* New Features Section */
        .features-section {
            padding: 5rem 0;
            background-color: white;
            margin: 10px 10px;
        }
        
        .feature-tabs {
            margin-top: 2rem;
        }
        
        .nav-tabs .nav-link {
            border: none;
            color: var(--dark-color);
            font-weight: 500;
            padding: 1rem 1.5rem;
            transition: all 0.3s;
        }
        
        .nav-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            border-radius: 5px;
        }
        
        .tab-content {
            padding: 2rem 0;
        }
        
        .feature-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .feature-img {
            flex: 1;
            height: 300px;
            border-radius: 10px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s;
        }
        
        .feature-img:hover {
            transform: scale(1.05);
        }
        
        .feature-text {
            flex: 1;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer h5 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .light-text{
            color: #bdc3c7;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px) rotate(10deg);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #bdc3c7;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-caption {
                bottom: 20%;
                left: 5%;
            }
            
            .carousel-caption h2 {
                font-size: 2.5rem;
            }
            
            .search-card {
                margin-top: -50px;
            }
            
            .feature-content {
                flex-direction: column;
            }
            
            .navbar-collapse {
                display: none !important;
            }
        }
        
        @media (min-width: 993px) {
            .mobile-menu-container,
            .mobile-menu-overlay {
                display: none !important;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-caption h2 {
                font-size: 2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .mobile-menu-container {
                width: 80%;
                max-width: none;
            }
        }




        /* =============================================================
        About Style
        ================================================================*/
        /* Page Header */
        .page-header {
            height: 45vh;
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('../../assets/images/breadcrumb.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
        }
        
        .page-title {
            font-size: 4rem;
            margin-top: 1rem;
            letter-spacing: 2px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .page-title.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .breadcrumb {
            background: transparent;
            padding-top: 1rem;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--light-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* About Intro Section */
        .about-intro {
            padding: 4rem 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }
        
        .about-content {
            align-items: center;
            margin: 10px 10px;
        }
        
        .about-img {
            border-radius: 300px;
            overflow: hidden;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .about-img.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            /*border-radius: 20px;*/
            overflow: hidden;
            /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.8s ease;
            padding: 20px 30px;
        }
        
        .about-text.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .about-text h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: #555;
            text-align: justify;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--light-color), #f8f9fa);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        
        /* Mission & Vision */
        .mission-vision {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .mission-card, .vision-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
            transition: all 0.4s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .mission-card.animated, .vision-card.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-icon, .vision-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        
        .mission-card h3, .vision-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        /* Values Section */
        .values-section {
            padding: 5rem 0;
            background-color: var(--primary-color);
        }
        
        .value-item {
            text-align: center;
            padding: 2rem 1rem;
            transition: all 0.4s;
            transform: translateY(30px);
            opacity: 0;
            border: 1px double var(--secondary-color);
            border-radius: 10px;
            background-color: #ffffff;
        }
        
        .value-item.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .value-item:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: all 0.4s;
        }
        
        .value-item:hover .value-icon {
            transform: rotateY(180deg);
        }
        
        .value-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            transition: all 0.4s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .team-card.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-img {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-social {
            display: flex;
            gap: 0.5rem;
        }
        
        .team-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .team-social a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .team-info {
            padding: 1.5rem;
        }
        
        .team-info h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .team-info p {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .team-info .text-muted {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        
        /* Timeline Section */
        .timeline-section {
            padding: 5rem 0;
            background-color: white;
            position: relative;
        }
        
        .timeline-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 50%;
            padding: 0 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .timeline-item.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-color);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--accent-color);
        }
        
        .timeline-item:nth-child(odd):before {
            right: -10px;
        }
        
        .timeline-item:nth-child(even):before {
            left: -10px;
        }
        
        .timeline-year {
            font-family: var(--digital-font);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }
        
        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .stat-item.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-number {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }



        /*===============================================================
        Contacts Style
        ================================================================*/
        /* Contact Methods Section */
        .contact-methods {
            padding: 5rem 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }
        
        .contact-method {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 10px;
            transition: all 0.4s;
            margin-bottom: 2rem;
            transform: translateY(30px);
            opacity: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-method.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .contact-method:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: all 0.4s;
        }
        
        .contact-method:hover .contact-icon {
            transform: rotateY(180deg) scale(1.1);
        }
        
        .contact-method h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .contact-method p {
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        .contact-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .contact-link:hover {
            color: var(--accent-color);
        }
        
        /* Contact Form & Info Section */
        .contact-form-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .contact-form-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transform: translateX(-30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .contact-form-card.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .form-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .contact-info-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .contact-info-card.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .info-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .info-item:hover {
            background: #f8f9fa;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .info-content h5 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .info-content p {
            margin-bottom: 0;
            color: #555;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            background-color: white;
        }
        
        .map-container {
            height: 500px;
            position: relative;
            overflow: hidden;
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(44, 62, 80, 0.1), rgba(44, 62, 80, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .map-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 400px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .map-content.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .map-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .map-content p {
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .faq-item.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .faq-question {
            padding: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }




        /* Photo Gallery Section */
        .photo-gallery {
            padding: 5rem 0;
            background-color: white;
        }
        
        .gallery-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .gallery-description {
            color: #7f8c8d;
            margin-bottom: 2rem;
        }
        
        .gallery-filter {
            margin-bottom: 2rem;
        }
        
        .filter-btn {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            margin: 0 0.5rem 0.5rem 0;
            transition: all 0.3s;
            font-weight: 500;
            text-decoration: none;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
            cursor: pointer;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.6s ease;
        }
        
        .gallery-item.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-info {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s;
        }
        
        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }
        
        .gallery-info h5 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }



        /* Custom Lightbox Styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .lightbox-container {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: var(--accent-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .lightbox-close:hover {
            background: #c0392b;
            transform: rotate(90deg);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lightbox-prev {
            left: -70px;
        }
        
        .lightbox-next {
            right: -70px;
        }
        
        .lightbox-caption {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            padding: 1rem;
        }
        
        /* Video Gallery Section */
        .video-gallery {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .video-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .video-item.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .video-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .video-play-btn:hover {
            background: #c0392b;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-platform {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .video-info {
            padding: 1.5rem;
        }
        
        .video-info h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .video-info p {
            color: #7f8c8d;
            margin-bottom: 0;
        }
        
        .video-duration {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        
        /* Video Modal */
        .video-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .video-modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .video-modal-container {
            width: 90%;
            max-width: 1000px;
            position: relative;
        }
        
        .video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: var(--accent-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .video-modal-close:hover {
            background: #c0392b;
            transform: rotate(90deg);
        }
        
        .video-modal-content {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            background-color: var(--primary-color);
        }
        
        .video-modal-content iframe,
        .video-modal-content video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 5px;
            border: none;
        }
        }




        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .contact-form-card,
            .contact-info-card {
                transform: translateY(30px);
            }
            
            .contact-form-card.animated,
            .contact-info-card.animated {
                transform: translateY(0);
            }
            
            .contact-info-card {
                margin-top: 3rem;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .lightbox-prev {
                left: -50px;
            }
            
            .lightbox-next {
                right: -50px;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .lightbox-nav {
                position: fixed;
                top: auto;
                bottom: 20px;
                transform: none;
            }
            
            .lightbox-prev {
                left: 20px;
                right: auto;
            }
            
            .lightbox-next {
                right: 20px;
                left: auto;
            }
        }
        


