* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #d9ff0b;
    padding: 0.2rem 0;
    border-bottom: 1px solid #786314;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100%;
    width: auto;
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a.active,
.nav-links a:hover {
    color: #e63946;
}

.contact-number {
    font-weight: bold;
    color: #333;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero p {
    font-size: 1.5rem;
    position: relative;
}

.buttons {
    margin-top: 2rem;
    display: flex
;
    position: relative;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #fff;
    display: block;
    margin-top: 15px;
    font-weight: 700;
    width: fit-content;
    border-radius: 5px;
    margin: 1em 0.5rem;
}

.btn-red {
    background: #e68939;
}
.btn-red:hover {
    background: #b66925;
}

.btn-blue {
    background: #1d3557;
}
.btn-blue:hover{
    background: #0c2241;
}

/* Solutions Section */
.solutions {
    padding: 4rem 0;
}

.solutions-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.solutions-grid .image img {
    max-width: 500px;
    height: auto;
    width: 100%;
}

.solutions-grid .content {
    flex: 1;
}

.features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    flex: 1;
    text-align: center;
}

.feature .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Shipments Section */
.shipments {
    background: #f8f9fa;
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.shipments h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-box .icon {
    font-size: 2rem;
    color: #e63946;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat {
    padding: 1rem;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

.stat.red {
    background: #e63946;
}

.stat.green {
    background: #2a9d8f;
}

.stat.blue {
    background: #1d3557;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 4rem 0;
    text-align: center;
}

.services h2,
.services h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service {
    /* background: #fff; */
    padding: 1rem;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    text-align: center;
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.service h3 {
    margin: 1rem 0;
}

/* Trusted Section */
.trusted {
    padding: 4rem 0;
    background: #f3ff93;
}

.trusted-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trusted-grid .content {
    flex: 1;
}

.trusted-grid ul {
    list-style: none;
    margin-top: 1rem;
}

.trusted-grid li {
    margin: 0.5rem 0;
}

.trusted-grid .image img {
    max-width: 550px;
    height: auto;
    width: 100%;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plan {
    background: #fffbd0;
    padding: 2rem;
    /* border: 1px solid #ddd; */
    border-radius: 15px;
    text-align: center;
}
.plan h3{
    font-size: 30px;
    
    color: #c3ab00;
}
.plan .price {
    font-size: 2rem;
    color: #e63946;
    margin: 1rem 0;
}

.plan ul {
    list-style: none;
    margin: 1rem 0;
}

.plan li {
    margin: 0.5rem 0;
}
.plan .btn {
    margin: 0 auto;
}

/* Quote Section */
.quote {
    padding: 4rem 0;
    background: #ecefd0;
    text-align: center;
}

.quote h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.quote-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info {
    flex: 1;
    text-align: left;
}
.contact-info p{
    margin-bottom: 20px;
}
.quote-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form input,
.quote-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

/* Team Section */
.team {
    padding: 4rem 0;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.member img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.member h3 {
    margin: 0.5rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
}

.testimonial h3 {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: #97935d;
    color: #fff;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    flex: 1;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
  
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #ddd;
    }
    .features {
        display: flex
    ;
        gap: 1rem;
        flex-direction: column;
        margin: 2rem 0;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        position: relative;
    }
    .nav-links.active {
        display: flex;
        gap: 0;
    }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
    }

    .solutions-grid,
    .trusted-grid,
    .quote-grid {
        flex-direction: column;
    }

    .services-grid,
    .pricing-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

html,body{
    display: flex;
    height: 100%;
    flex-direction: column;
  
}

a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}