:root {
    --main-color: #08415C;
    --secondary-color: #561D25;
    --body-bg: #fff;
    --text-light: #fff;
    --text-dark: #333;
    --hover-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background-color: #08415C;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #561D25;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #08415C;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #08415C;
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #08415C;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* linear-gradient(to right, rgba(121, 3, 29, 0.7) 36%, rgba(121, 3, 29, 0.31) 74%), url(../images/about_img.jpg) no-repeat; */
    background: linear-gradient(135deg, rgba(8, 65, 92, 0.8) 36%, rgba(86, 29, 37, 0.8) 74%),url(../img/two-Dfhsj15w.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background-color: #561D25;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(86, 29, 37, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #08415C;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #08415C;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #08415C;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Guide Section */
.guide {
    padding: 80px 0;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #08415C, #561D25);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #08415C;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 65, 92, 0.8), rgba(86, 29, 37, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.review-slide {
    display: none;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-slide.active {
    display: block;
}

.review-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #08415C;
}

.slider-nav {
    text-align: center;
    margin-top: 30px;
}

.slider-btn {
    background: #08415C;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #561D25;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #08415C;
    margin-right: 20px;
    width: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #08415C;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #08415C;
}

.submit-btn {
    background: linear-gradient(135deg, #08415C, #561D25);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #08415C;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #561D25;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-bottom a{
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .guide-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services,
    .guide,
    .gallery,
    .reviews,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}
.whatsapp{
    position: fixed;
    bottom: 0;right: 0;
}
.whatsapp img{
    width: 80px;
    height: 80px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #08415C 0%, #561D25 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section {
    padding: 80px 0;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.contact-method:nth-child(1) {
    border-top-color: #08415C;
}

.contact-method:nth-child(2) {
    border-top-color: #561D25;
}

.contact-method:nth-child(3) {
    border-top-color: #08415C;
}

.contact-method:nth-child(4) {
    border-top-color: #561D25;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #08415C, #561D25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.contact-method h3 {
    font-size: 1.3rem;
    color: #08415C;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin-bottom: 15px;
}

.contact-method a {
    color: #08415C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: #561D25;
}

/* Main Contact Content */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #08415C;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #08415C;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #08415C;
    box-shadow: 0 0 0 3px rgba(8, 65, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #08415C, #561D25);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 65, 92, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Panel */
.contact-info-panel {
    background: linear-gradient(135deg, #08415C, #561D25);
    color: white;
    padding: 50px;
    border-radius: 20px;
    height: fit-content;
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.info-content a {
    color: white;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    margin-bottom: 80px;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #08415C;
    margin-bottom: 50px;
    font-weight: 700;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(8, 65, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(86, 29, 37, 0.1) 0%, transparent 50%);
}

.map-placeholder i {
    font-size: 4rem;
    color: #08415C;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1;
    position: relative;
}

/* Business Hours */
.business-hours {
    background: #f8f9fa;
    padding: 80px 0;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-info h2 {
    font-size: 2.5rem;
    color: #08415C;
    margin-bottom: 30px;
    font-weight: 700;
}

.hours-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hours-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hours-table table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table th,
.hours-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f1f3f4;
}

.hours-table th {
    background: linear-gradient(135deg, #08415C, #561D25);
    color: white;
    font-weight: 600;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #08415C;
}

.hours-table td:last-child {
    color: #666;
}

.hours-table tr:hover {
    background-color: #f8f9fa;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #08415C;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #08415C;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #08415C;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section,
    .contact-info-panel {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hours-table th,
    .hours-table td {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-section,
    .business-hours,
    .faq-section {
        padding: 60px 0;
    }

    .contact-form-section,
    .contact-info-panel {
        padding: 25px;
    }

    .section-title,
    .hours-info h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}
.partners-slider {
    position: relative;
    margin-top: -60px;
    z-index: 3;
}

.slider-container {
    background: var(--background-color);
    border-radius: 25px;
    padding: 60px 20px;
    box-shadow: 0 20px 60px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.slider-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 15px;
    position: relative;
}

.slider-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.slider-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    animation: slideInfinite 25s linear infinite;
    gap: 30px;
}

.partner-card {
    min-width: 280px;
    height: 180px;
    background: var(--background-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.partner-card:hover::before {
    opacity: 0.05;
}

.partner-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 25px 50px var(--shadow-color);
    border-color: var(--primary-color);
}

.partner-icon {
    width: 80px;
    position: relative;
    z-index: 2;
}

.partner-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--secondary-color);
}

.partner-type {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .partner-card {
        min-width: 220px;
        height: 150px;
    }
    
    .partner-icon {
        font-size: 2.5rem;
    }
    
    .partner-name {
        font-size: 1.2rem;
    }
}

/* Additional 3D Effects */
.partner-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: 3;
}

.partner-card:hover .card-shine {
    left: 100%;
}
/* Main Header Styles */
.main-header {
    background: var(--body-bg);
    box-shadow: 0 5px 20px rgba(8, 65, 92, 0.15);
    position: sticky;
    top: 0;right: 0;left: 0;
    z-index: 1000;
    transition: var(--hover-transition);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--main-color);
    transition: var(--hover-transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(8, 65, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    /* padding: 10px 0; */
    position: relative;
    transition: var(--hover-transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--main-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    min-width: 310px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--hover-transition);
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--hover-transition);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--main-color);
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: var(--hover-transition);
}

.mobile-menu-btn:hover {
    background: rgba(8, 65, 92, 0.1);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 80px 0 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--main-color);
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--hover-transition);
}

.mobile-nav-link:hover {
    color: var(--main-color);
    padding-left: 10px;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    margin: 10px -20px 0;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 40px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    transition: var(--hover-transition);
}

.mobile-dropdown-item:hover {
    background: var(--main-color);
    color: white;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Demo Content */
.demo-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.demo-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    color: var(--main-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.demo-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-content {
        height: 70px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .demo-content h1 {
        font-size: 36px;
    }

    .demo-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left, .top-bar-right {
        gap: 15px;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}
.about-section{
    margin: 20px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 32px;
    color: var(--main-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-text h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .about-text h3 {
        font-size: 24px;
    }
}