body {
  font-family: 'Poppins', sans-serif !important;
}
.blue-btn{ background-color: #3A4E91; color: #fff; border-radius: 0;}
.blue-btn:hover{ background-color: #3A4E91; color: #fff; border-radius: 0;}
.green-btn{ background-color: #61ce70; color: #fff; border-radius: 0; border: 1px solid #61ce70;}
.green-btn:hover{ background-color: #61ce70; border-radius: 0; border: 1px solid #61ce70;}

#carouselExample {
  position: relative;
}

.carousel-control-prev, 
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fff;
  border-radius: 50%;
}

.carousel-item img {
  object-fit: cover;
}
.about h1{font-size: 36px; font-weight: 700;} 
.asp-btn {background-color: #3A4E91; border-radius: 0; color: #fff; padding: 12px; font-size: 17px; font-weight: 600;}
.asp-btn:hover {background-color: #24315C; border-radius: 0; color: #fff;}
.pq-section-title h3{color: #395090; font-size: 25px; font-weight: 700;}
.pq-section-title p{text-align: justify; font-size: 17px; font-weight: 500; color: #222222; line-height: 29px;}
#pq-footer h2{font-size: 25px; font-weight: 600; padding-top: 50px; padding-bottom: 50px;}

:root {
            --primary-green: #007c00;
            --dark-green: #008a44;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        /* Navbar Styles */
        .navbar {
            background-color: var(--primary-green);
            padding: 1rem 0;
        }

        .navbar-brand img {
            /*height: 60px;*/
            width: 100px;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 10px;
            font-size: 18px;
  font-weight: 600;
        }

        .navbar-nav .nav-link:hover {
            opacity: 0.8;
        }

        .btn-apply {
            background-color: #ffa500;
            color: white;
            border: none;
            padding: 8px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        .btn-login {
            background-color: #000;
            color: white;
            border: none;
            padding: 8px 25px;
            border-radius: 5px;
            margin-left: 10px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .btn:hover {
          background-color: #4267b2;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: white;
            transform: skewY(-2deg);
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            font-weight: 300;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .btn-learn {
            background-color: #c90910;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        /* Guidelines Section */
        .guidelines-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-badge {
            color: var(--primary-green);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .guidelines-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .guidelines-section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .tractor-image {
            max-width: 100%;
            height: auto;
        }

        /* Services Section */
        .services-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 80px 0;
        }

        .services-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 20px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card i {
            color: var(--primary-green);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .service-card h4 {
            color: #333;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features Grid */
        .features-grid {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .feature-box .fa-check {
            background-color: var(--primary-green);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-box h4 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-box p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 80px 0;
        }

        .contact-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
        }

        .contact-form input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .btn-subscribe {
            background-color: #4267B2;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 5px;
            width: 100%;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background-color: var(--light-gray);
            padding: 50px 0 20px;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li i {
            color: var(--primary-green);
            margin-right: 10px;
        }

        .footer-bottom {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 60px 0;
            }
        }