/* Global Styles */
body, html {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* About Us Section */
.about-us .btn {
    margin: 0.5rem 0;
}

.about-us .btn-warning {
    display: inline-block; /* Ensure buttons are on the same row unless stacked */
    margin-left: 0; /* Reset left margin for smaller screens */
}

/* Stacking buttons on smaller screens */
@media (max-width: 576px) {
    .about-us .btn {
        display: block; /* Stack buttons vertically */
        width: 100%; /* Full-width for better usability */
    }

    .about-us .btn-warning {
        margin-top: 0.5rem; /* Add spacing between stacked buttons */
    }
}


/* Navigation Bar */
.navbar {
    background: rgba(0, 47, 108, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #FFA500;
}
.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 900

.playfair-display-uniquifier {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 47, 108, 0.7), rgba(0, 47, 108, 0.7)), url('closeup-shot-rice-plant-sunset-with-plantation-background.jpg') center center/cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    background-color: #FFA500;
    color: #002F6C;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background-color: #002F6C;
    color: #FFA500;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .btn {
        padding: 10px 20px;
    }
}


/* Additional custom styles for responsiveness */
.reliable-trusted-services h2 {
    font-size: 2.5rem;
}

.reliable-trusted-services p, .reliable-trusted-services ul {
    font-size: 1.2rem;
}

/* Ensure text and icons are well adjusted on mobile */
@media (max-width: 768px) {
    .reliable-trusted-services h2 {
        font-size: 2rem;
    }

    .reliable-trusted-services p {
        font-size: 1rem;
    }

    .service-icon i {
        font-size: 3rem;
    }

    .reliable-trusted-services .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Section Headings */
section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #002F6C;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #FFA500;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
    }
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: #ffffff;
    animation: fadeInUp 1s ease-in-out;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.about-us .btn {
    background-color: #002F6C;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-us .btn:hover {
    background-color: #FFA500;
    color: #002F6C;
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.services .col-md-4 {
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-in-out;
}

.services i {
    color: #FFA500;
    margin-bottom: 20px;
}

.services h4 {
    color: #002F6C;
    font-weight: 600;
    margin-bottom: 15px;
}

.services p {
    color: #666;
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: #ffffff;
}

.featured-products .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.4s ease-in-out;
}

.featured-products .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.featured-products .card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.featured-products .card-title {
    color: #002F6C;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-products .btn {
    background-color: #FFA500;
    color: #002F6C;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.featured-products .btn:hover {
    background-color: #002F6C;
    color: #FFA500;
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.testimonials .testimonial {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.testimonials h5 {
    color: #002F6C;
    font-weight: 600;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: #FFA500;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('pexels-iurii-laimin-78973777-18780597.jpg') center center/cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 47, 108, 0.6); /* Semi-transparent blue overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    background-color: #FFA500;
    color: #002F6C;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.hero .btn:hover {
    background-color: #002F6C;
    color: #FFA500;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .btn {
        padding: 10px 20px;
    }
}


/* Navbar */
.navbar {
    background-color: #002F6C; /* Dark blue background */
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #FFA500; /* Orange color for brand text */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-brand .logo {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
}

.navbar-brand:hover {
    color: #ffffff; /* Change brand text color on hover */
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23FFA500" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M4 6h16M4 12h16m-7 6h7"%3E%3C/path%3E%3C/svg%3E');
}

.navbar-toggler:hover {
    background-color: rgba(255, 165, 0, 0.2); /* Light orange background on hover */
}

.navbar-nav .nav-item {
    margin: 0 1rem;
}

.navbar-nav .nav-link {
    color: #ffffff; /* White color for nav links */
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease, padding 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FFA500; /* Orange color on hover */
    padding-bottom: 5px; /* Add a subtle underline effect */
    border-bottom: 2px solid #FFA500;
}

.navbar-collapse {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-brand .logo {
        height: 30px;
    }
}



/* Featured Products Section */
.featured-products {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #003366; /* Dark blue for the title */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.featured-products h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6600; /* Orange underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    margin-bottom: 30px; /* Space below each card */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    width: 100%;
    height: 200px; /* Fixed height for consistent image size */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-bottom: 5px solid #003366; /* Dark blue border at the bottom of the image */
    transition: opacity 0.5s ease;
}

.card:hover .card-img-top {
    opacity: 0.8;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    color: #003366; /* Dark blue for the title */
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: #555; /* Darker gray for the text */
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #ff6600; /* Orange button background */
    border-color: #ff6600; /* Orange button border */
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e65c00; /* Darker orange for hover effect */
    border-color: #e65c00; /* Darker orange border on hover */
}

@media (max-width: 767px) {
    .featured-products h2 {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}


/* Footer Styles */
.footer {
    background-color: #000000; /* Dark background for the footer */
    color: #fff; /* White text color */
    padding: 40px 0;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6600; /* Orange color for hover effect */
}

hr {
    border: 0;
    height: 1px;
    background-color: #fff; /* White horizontal rule */
    margin: 20px 0;
}

.text-center {
    text-align: center;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }

    .footer h5 {
        font-size: 1.1rem;
    }

    .footer p, .footer ul li a {
        font-size: 0.75rem;
    }

    .social-icons a {
        font-size: 1.25rem;
    }
}











/* Footer Styles */
.footer {
    background-color: #000000; /* Pure black background */
    color: #ffffff; /* White text */
    padding: 40px 0; /* Padding for better spacing */
    font-size: 14px; /* Adjust text size */
}

.footer img {
    max-width: 150px; /* Adjust the logo size */
    margin-bottom: 15px;
}

.footer h5 {
    font-weight: bold; /* Make headings bold */
    margin-bottom: 15px;
    font-size: 16px; /* Adjust heading size */
}

.footer p, .footer a {
    font-size: 14px;
    line-height: 1.7; /* Increase line spacing for readability */
    color: #ffffff; /* Ensure links are white */
}

.footer a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #f4d03f; /* Optional hover color */
}

.footer .social-icons a {
    font-size: 20px; /* Make social icons bigger */
    margin-right: 10px; /* Space between icons */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.footer .social-icons a:hover {
    color: #f4d03f; /* Change icon color on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer .row {
        text-align: center; /* Center-align text on mobile */
    }

    .footer .col-md-3 {
        margin-bottom: 30px; /* Space between sections */
    }
}

/* Style for the horizontal line */
.footer hr.bg-white {
    border-top: 1px solid #ffffff;
    opacity: 0.2; /* Slightly fade the line */
    margin: 20px 0;
}

.footer .text-center {
    margin-top: 20px; /* Space between sections */
    font-size: 13px; /* Smaller copyright text */
}
/* General Navbar Styling */
.navbar {
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar .logo {
    width: 40px;
    height: auto;
}

.navbar-nav .nav-link {
    position: relative;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    margin-right: 8px;
}

.navbar-nav .nav-item .fas {
    display: inline-block;
}

/* Ensure both text and icons show on mobile screens */
.navbar-nav .nav-text {
    display: inline-block;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        justify-content: flex-start;
    }
    .navbar-nav .nav-link i {
        display: inline-block;
    }
    .navbar-nav .nav-link span {
        display: inline-block;
    }
}

/* Sticky Navbar */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Navbar-toggler custom */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: #000;
}
