
/*-----------Font Family------------*/
* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.merriweather-regular{
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.merriweather-italic {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 100;
}
.merriweather-medium{
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.merriweather-semi-bold {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.merriweather-bold {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.open-sans-medium{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.open-sans-semi-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/*-----------------------Font sizes----------------------------*/
.font-sm {
    font-size: 16px;
}
.font-lg {
    font-size: 18px;
}
.font-xl {
    font-size: 20px;
}
.font-2xl {
    font-size: 24px;
}
.font-3xl {
    font-size:28px;

}
.font-4xl {
    font-size: 32px;
}
.font-5xl {
    font-size: 36px;
}

/*--------------------------Theme colors------------------------------------*/
.PrimaryColor {
    color: #2E7D32;
}
    .PrimaryColorBG {
    background-color: #2E7D32;
}
/*--------------------------custom css-----------------------------------*/
.rounded-4{
    border-radius:20px;
}
/*---------------- Logo Styles ----------------*/
.navbar .navbar-brand img {
    height: 90px;
}
.navbar-main.scrolled .logo-name p,
.navbar-main.scrolled .logo-name span {
    color: black !important;
}
.navbar-main.scrolled navba
.logo-name p,
.logo-name span {
    transition: color 0.3s ease;
    color: white ;
    line-height: 1.2;
}
/* Company name (larger & bold) */
.company-name {
    font-size: 1.8rem; /* adjust as needed */
    font-weight: 600;
}

/* Tagline (smaller) */
.company-tagline {
    font-size: 1rem;
    font-weight: 400;
}

/*---------------- Navbar Core ----------------*/
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Custom white 3-bar hamburger */
.navbar-toggler-icon {
    width: 28px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        width: 28px;
        height: 2px;
        background-color: #fff;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }
.navbar-main {
    background-color: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

    .navbar-main.scrolled {
        background-color: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.navbar-nav {
    display: flex;
    gap: 20px;
}

    .navbar-nav .nav-item {
        padding-left: 10px;
    }
.navbar-main .nav-link:hover {
    background-color:#2E7D32;
}
.navbar-main .nav-link,
.navbar-main .navbar-brand {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-main.scrolled .nav-link,
.navbar-main.scrolled .navbar-brand {
    color: #000 !important;
}
   
/*---------------- Nav Contact Button ----------------*/
.nav-contact-btn{
    border: 1px solid #fff;
    color: #fff !important;
    background-color: transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
}

    .nav-contact-btn:hover {
        background-color: #fff;
        color: #000 !important;
    }

.navbar-main.scrolled .nav-contact-btn {
    border: 1px solid #000;
    color: #000 !important;
}

    .navbar-main.scrolled .nav-contact-btn:hover {
        background-color: #2E7D32;
        color: #fff !important;
        border: 1px solid #2E7D32;
    }

/*---------------- Dropdown Menu ----------------*/
.dropdown {
    z-index: 2;
}

.dropdown-menu {
    position: absolute;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    border-radius: 0 0 12px 12px;
}

.hover-dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #2E7D32;
    color: #fff;
}

/*---------------- Toggler Button ----------------*/
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}

/*---------------- Active Link & Hover ----------------*/
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    border-radius: 5px;
}


/*------------------------ Transparent video banner styles -----------------*/
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

  .hero-section video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
       z-index: 0;
  }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    padding-top: 30%;
    padding-bottom: 10%;
}

.hero-text {
    max-width: 700px;
}
    .hero-text p {
        font-size: 1.2rem;
        color: white;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        margin-top: 10px;
        color: white;
    }

    .hero-text .btn {
        margin-top: 25px;
        padding: 12px 30px;
        font-size: 1rem;
    }
    .hero-text .btn:hover {
       color:#000 !important;
    }
/* Container to hold flipping text */
    .hero-text h2 {
        font-size: 2.5rem;
        color:#fff;
        font-weight: 500;
        margin-top: 20px;
        min-height: 3.2rem;
        overflow: hidden;
        position: relative;
    }

    .rotating-text span {
        position: absolute;
        width: 100%;
        opacity: 0;
        transform: translateY(100%);
        animation: slideUp 0.6s ease forwards;
    }

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/*------------------------ Experience Section-----------------*/

.experience-section {
    max-width:1000px;
}

.experience-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

    .experience-title .years {
        font-size: 2.8rem;
        font-weight: 900;
        color: #000;
    }

    .experience-title .highlight {
        color: #2E7D32; /* Lime-green tone like your screenshot */
        font-weight: 800;
    }

.experience-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    
}

.divider {
    width: 1px;
    height: 120px;
    background-color: #ddd;
}

/*------------------------ What we Do Section-----------------*/

.section-title {
    font-size: 2rem;
    font-weight: 600;
   width:50%;
}

.service-box {
    background: #fff;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

  /*  .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }*/

    .service-box .icon {
        font-size: 40px;
        color: #2E7D32; /* Your accent color */
        margin-bottom: 15px;
    }

    .service-box h5 {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
    }
.service-footer {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;

}
.read-more-btn span {
    color:#2E7D32 !important;
}
.read-more-btn {
    color: #2E7D32;
    border: 1px solid #2E7D32;
    border-radius: 30px;
    padding: 8px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    background-color: transparent;
}
    .read-more-btn .btn-text {
        max-width: 0;
        opacity: 0;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .read-more-btn i {
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
        
    }
    .read-more-btn:focus,
    .read-more-btn:active {
        outline: none;
        background-color: transparent;
        box-shadow: none;
    }
    /* On hover: show text and rotate arrow */
    .read-more-btn:hover .btn-text {
        max-width: 100px;
        opacity: 1;
        margin-right: 5px;
        color: #2E7D32 !important;
    }

    .read-more-btn:hover i {
        transform: rotate(0deg);
        color: #2E7D32 !important;
    }

/*------------------------ About us-----------------*/

.about-img {
    position: relative;
    overflow: hidden;
}

    .about-img img {
        display: block;
        width: 100%;
        height: auto;
    }

.overlay-about-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Slight overlay */
    z-index: 1;
}

.about-text {
    position: absolute;
    top: 15%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

    .about-text .big-text {
        position: absolute;
        top: 20%;
        left: 30%;
        transform: translate(-50%, -50%);
        font-size: 6rem;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.6);  Faint background 
        z-index: -1;
    }
.about-section {
    position: relative;
    background-color: rgba(46, 125, 50, 0.7);
    z-index: 1;
    overflow: hidden;
}

    .about-section::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300px; /* Adjust logo size */
        height: 300px;
        background: url('/images/logo/gheware-logo.png') center/contain no-repeat;
        opacity: 0.3; /* Faint watermark effect */
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    /* Keep text and button above */
    .about-info,
    .about-section a {
        position: relative;
        z-index: 2;
    }

/*------------------------ status section-----------------*/
.status-wrapper {
    position: relative;
    padding-bottom: 200px; /* Space for the absolute finance-status */
}

.status-img {
    position: absolute;
    z-index: -3;
    right: -60px;
    top: -60%;
    overflow: hidden;
}

    .status-img img {
        opacity: 0.3;
    }

.staus-info {
    max-width: 700px;
    border: 1px solid #2E7D32;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 40px;
    background: #fff;
}

.finance-status {
    background-color: #2E7D32;
    border-radius: 20px;
    position: absolute;
    bottom: 50px; /* Overlap effect */
    right: 10px;
    width: 60%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.status-card {
    padding: 10px;
}

    .status-card h2 {
        font-size: 2rem;
        font-weight: bold;
        margin: 0;
    }

    .status-card p {
        margin: 0;
        font-size: 1rem;
        opacity: 0.9;
    }

.star-rating i {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 2px;
}

.finance-status hr {
    width: 50%;
    margin-left: 25%;
}
/*------------------------ Project section-----------------*/
.project-img {
    position: relative;
    overflow: hidden;
    height: 250px; 
}

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        transition: transform 0.5s ease;
    }

    .project-img:hover img {
        transform: scale(1.05);
    }

    .project-img .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        top:80%;
        width: 100%;
        
        background: rgba(0,0,0,0.6);
        color: #fff;
        padding: 10px 15px;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        transition: transform 0.3s ease;
        transform: translateY(100%);
    }

    .project-img .overlay {
        transform: translateY(0);
    }
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }
/*------------------------ Testimonial section-----------------*/


.testimonials-section {
    border-top: 1px solid rgba(46, 125, 50, 0.3);
    
    border-bottom: 1px solid rgba(46, 125, 50, 0.3);
    
}

.vertical-line {
    border-left: 1px solid rgba(46, 125, 50, 0.5);
    height: 100%;
    height:200px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.swiper-button-next,
.swiper-button-prev {
   visibility:hidden;
}
/*--------------------------------Footer--------------------------*/
.footer {
    font-size: 0.95rem;
}

    .footer h4,
    .footer h5 {
        font-weight: 600;
    }

    .footer .social-icons a {
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

        .footer .social-icons a:hover {
            color: #00b894; /* Accent color */
        }

    .footer a:hover {
        color: #00b894;
    }
/*============================About Page CSS===================================*/
.breadcrumb-layout {
    border:1px solid #ccc;
    padding:10px 20px;
    border-radius:22px;
}
    .breadcrumb-layout a:hover {
      color:#2E7D32 !important;

    }
    #header-banner {
        position: relative;
        width: 100%;
    }

.banner-about {
    position: relative;
    height: 400px; /* Change height as needed */
    background-image: url('/images/header-banner/about-banner.jpg'); /* Your banner image */
    background-size: cover;
    background-position: center;
}
.banner-director {
    position: relative;
    height: 400px; /* Change height as needed */
    background-image: url('/images/header-banner/director-banner.jpg'); /* Your banner image */
    background-size: cover;
    background-position: center;
}
.banner-services {
    position: relative;
    height: 400px; /* Change height as needed */
    background-image: url('/images/header-banner/director-banner.jpg'); /* Your banner image */
    background-size: cover;
    background-position: center;
}

.overlay-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.banner-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
}

    .banner-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .banner-text p {
        font-size: 1.2rem;
    }

.about-info-img img{
    border-top-left-radius:20px;
    border-bottom-left-radius:20px;
}

/*========================services Page CSS================================*/
.border-radius-left {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.border-radius-right {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
/*========================Contact Page=====================================*/
@media(max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-image {
        height: 40vh;
    }

    .contact-form {
        height: auto;
        padding: 30px;
    }
}