/* General Styles */
:root {
    --primary-color: #ff5733;
    --secondary-color: #33b5e5;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
}
html{
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.logo {
    height: 4rem;
    margin-right: 10px;
    width: 6rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ff5733 0%, #ff8c1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark-color);
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 100px 0;
}

.ar{
    justify-content: flex-end;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list li i {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-content h4 {
    color: var(--dark-color);
    margin: 15px 0 5px;
}

.testimonial-content span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: 100px 0;
    background-color: var(--light-color);
}

.download h2 {
    margin-bottom: 20px;
}

.download-buttons {
    margin-top: 30px;
}

.download-info {
    display: flex;
    gap: 30px;
}

.download-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-stat i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.download-image {
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.download-image:hover {
    transform: translateY(-10px);
}


.iim{
    justify-content: space-around;
}
/* Statistics Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff5733 0%, #ff8c1a 100%);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-form .form-control {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.contact-info {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 15px;
}

.hh{
    height: 25rem;
}
.ff{
    display: flex;
    justify-content: center;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 15px;
}

.contact-list li a{
    color: #3a4a5c;
    text-decoration: none;
}

.contact-list li i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h4 {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Testimonials Carousel */
.owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.owl-nav button {
    color: var(--primary-color) !important;
    font-size: 2rem !important;
    margin-left: 15px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    color: var(--dark-color) !important;
    transform: scale(1.2);
}

.owl-item {
    padding: 15px 0;
}

.testimonial-card {
    margin: 0 10px;
}


/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 60px;
    }

    .navbar-collapse {
        padding: 15px 0;
      }

    .language-selector {
        margin-top: 15px;
        padding-left: 15px;
      }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 30px;
        
    }

    .about-image {
        margin-bottom: 40px;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .download-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 100px 0 60px !important;
      }
      .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
      }
      .cta-buttons .btn {
        width: 100%;
        margin: 5px 0;
      }
      .download-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }

      .contact-form {
        margin-bottom: 40px;
      }
      .contact-info {
        text-align: center;
      }

      .stat-item {
        margin-bottom: 40px;
      }

      .footer .col-md-4 {
        margin-bottom: 40px;
        text-align: center;
      }
      .social-links {
        justify-content: center;
      }

        section {
    padding: 60px 0 !important;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .ar-1{
    margin-bottom: 1rem;
  }
}

@media (max-width: 575px) {
    .download-buttons .btn {
      flex: 1 0 100%;
    }
  }