﻿/* Hero Section */

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    gap: 2rem;
 
    height:557px;
}

.hero-text {
    flex: 1 1 388px;
    max-width: 600px;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

    .hero-text h1 .highlight {
        color: #fff;
    }

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted, #666);
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #1ab9d6;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

    .cta-btn:hover {
        background-color: #00e67e;
    }

.hero-image {
    flex: 1 1 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img
{
    height: 529px;
    width: 625px;
    }

/* Responsive: Mobile & Tablet */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        margin-top: 115px;
        height: 400px;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        animation: none; /* Optional: skip animation on small screens */
        opacity: 1;
    }

        .hero-text h1 {
            font-size: 2.4rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    .cta-btn {
        justify-content: center;
    }

    .hero-image {
        margin-top: -195px;
        margin-bottom: 50px;
    }

        .hero-image img {
            max-width: 90%;
        }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}
/*--------mission or vision-----------*/

.vision-mission {
    position: relative;
    padding: 34px 50px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    height: 450px;
}

    .vision-mission h2 {
        font-size: 36px;
        margin-bottom: 50px;
        color: #333;
    }

.bg-icon {
    position: absolute;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.bg1 {
    top: 10%;
    left: 5%;
    font-size: 120px;
    animation-delay: 0s;
}

.bg2 {
    bottom: 12%;
    right: 7%;
    font-size: 100px;
    animation-delay: 2s;
}
.bg3 {
    top: 17%;
    right: 21%;
    font-size: 129px;
    animation-delay: 4s;
}
.bg-leaf {
    top: 73%;
    left: 19%;

}
.bg-icon {
    opacity: 0.07;
    font-size: 100px;
    animation: float 10s ease-in-out infinite;
}
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.card {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 30px;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .card h3 {
        margin-bottom: 15px;
        color: #2d2d2d;
        font-size: 24px;
    }

    .card p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}/*---------experience section----------*/
.experience-section {
    background: #3d3d3db5;
    padding: 4rem 2rem;
    font-family: 'Inter', sans-serif;
    color: white;
}

.columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.visual-column {
    flex: 1;
    position: relative;
}

.main-image-container {
    position: relative;
}

.bw-image {
    width: 100%;
    filter: grayscale(100%);
    display: block;
}

.inset-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    top: 5%;
    left: -4%;
  
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}
.mainnav {
    background-color: black !important;
}
.content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


    .content-column h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .content-column p {
        font-size: 1rem;
        color: white;
        line-height: 1.6;
    }

.benefits-list ul {
    border-left: 3px solid #1ab9d6;
    padding-left: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.benefits-list i {
    color: #1a88c8;
    margin-right: 0.5rem;
}

.cta-button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #1ab9d6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.ceo-profile {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.ceo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.ceo-info {
    font-size: 0.9rem;
}

.icon-arrow-up {
    color: #1ab9d6;
    margin-left: auto;
    font-size: 1.2rem;
}
/*company*/
/* Section and Heading */
.companies-section {
    padding: 60px 20px;
    background-color: #efefef;
    text-align: center;
    overflow: hidden;
}

.companies-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #3b5323;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Carousel Container */
.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 78%;
    margin-left: 187px;
}


/* Logo Track for animation */
.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused; /* pause on hover */
}

/* Individual Logo Styling */
.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100px;
    padding: 10px;
}

    .logo-item img {
        height: 100px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

        .logo-item img:hover {
            transform: scale(1.1);
        }

/* Animation Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        padding: 5px;
    }

        .logo-item img {
            height: 40px;
        }
}



/*______video section__________*/
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: anchor-center;
    justify-content: space-between;
    padding: 41px 10px;
    max-width: 1250px;
    margin: auto;
    gap: 9px;
}

.video-box {
    flex: 1 1 50%;
    max-width: 600px;
    position: relative;
}

    .video-box video {
        width: 100%;
        border-radius: 12px;
    }

.text-box {
    flex: 1 1 50%;
    padding: 20px;
}

.vdotexth2{
    color: #d4b909;
    margin-bottom: 22px;
    font-size: 40px;
    font-family: none;
}

.vdotextp {
    font-size: 19px;
    color: white;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
}
.text-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .text-box.visible {
        opacity: 1;
        transform: translateY(0);
    }
/*testimonial*/

.testimonial{
    color:white;
}
.sw {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 400px;
    display: block;
    width: 33%;
    padding-top: 60px;
    text-align: center;
}

.head-test {
    margin-top: 40px;
    font-size: xx-large;
    font-family: cursive;
    text-align: center;
}

    .head-test:hover {
        color: rgb(181, 181, 125);
    }


.test-text {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    position: absolute;
    top: 0;
    background-color: #09090905;
    color: white;
}

.par-tes {
    font-size: 20px;
}



.test-head {
    text-align: center;
    font-size: xx-large;
    padding-top: 40px;
    font-family: Georgia, "Times New Roman", Times, serif;
}

    .test-head:hover {
        font-style: italic;
        color: rgb(202, 186, 186);
    }
/* ========== RESPONSIVE ENHANCEMENTS ========== */

/* Hero Section Fixes */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
        height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-btn {
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }
}

/* Vision & Mission */
@media (max-width: 768px) {
    .vision-mission {
        padding: 30px 20px;
        height: auto;
    }

    .card {
        width: 100%;
        max-width: 90%;
    }
}

/* Experience Section (Image + Text Columns) */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 2rem;
    }

    .visual-column,
    .content-column {
        width: 100%;
    }

    .ceo-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ceo-img {
        margin-bottom: 0.5rem;
    }
}

/* Logo Carousel */
@media (max-width: 768px) {
    .logo-carousel {
        width: 95%;
        margin: 0 auto;
    }

    .logo-item img {
        height: 50px;
    }
}

/* Video + Text Split Section */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .video-box,
    .text-box {
        width: 100%;
        max-width: 100%;
    }

    .vdotexth2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .vdotextp {
        font-size: 1rem;
        text-align: center;
    }
}

/* Testimonial Slides */
@media (max-width: 768px) {
    .sw {
        width: 80% !important;
    }
}

@media (max-width: 480px) {
    .sw {
        width: 95% !important;
    }

    .par-tes {
        font-size: 1rem;
    }

    .test-head, .head-test {
        font-size: 1.4rem;
    }
}


